From 3f7263999f342a1f8e9f027a1c58872cf3e12869 Mon Sep 17 00:00:00 2001 From: Hans Adema Date: Mon, 18 Jun 2018 15:46:23 +0200 Subject: [PATCH] Major refactor for AMI v2 and new bridging. - Upgrade event handling to work with AMI v2 (Asterisk 12+). - Upgrade internal structure to work with new bridging system (no more masquerades!). - Refactor outside API to pass all channel data to reporters, not just CallerID data. - Refactor internal structure to better distinguish between Asterisk internals and usage opinions. --- .gitignore | 1 + AUTHORS.md | 1 + CHANGELOG.md | 30 +- LICENSE | 2 +- README.md | 75 +- cacofonisk/__init__.py | 8 +- cacofonisk/bridge.py | 60 + cacofonisk/callerid.py | 50 +- cacofonisk/channel.py | 1445 +-------- cacofonisk/handlers.py | 844 +++++ cacofonisk/reporters.py | 333 ++ cacofonisk/reporters/__init__.py | 0 cacofonisk/reporters/base_reporter.py | 143 - cacofonisk/reporters/debug_reporter.py | 16 - cacofonisk/reporters/json_reporter.py | 45 - cacofonisk/runners/ami_runner.py | 91 +- cacofonisk/runners/file_runner.py | 23 +- example.py | 31 - examples/amirunner.py | 22 + examples/filerunner.py | 21 + examples/output_json.py | 59 + requirements.txt | 5 +- setup.cfg | 2 - setup.py | 18 +- .../fixtures/acceptance/accept_accepted.json | 59 - tests/fixtures/acceptance/accept_deny.json | 39 - .../acceptance/accept_multiple_accepted.json | 79 - .../accept_multiple_complexaccepted.json | 89 - .../acceptance/accept_notaccepted.json | 42 - tests/fixtures/acceptance/accept_timeout.json | 31 - tests/fixtures/connectab/cmn-self-world.json | 145 - .../cmn-world-account-unaccepted.json | 65 - .../fixtures/connectab/cmn-world-account.json | 115 - tests/fixtures/connectab/cmn-world-world.json | 148 - .../connectab/ctd-account-account.json | 115 - .../connectab/ctd-account-world-deny_a.json | 38 - .../connectab/ctd-account-world-deny_b.json | 90 - .../connectab/ctd-account-world-fail2.json | 87 - .../fixtures/connectab/ctd-account-world.json | 140 - tests/fixtures/connectab/ctd-attn-xfer.json | 160 - tests/fixtures/fixed/fixed_both_success.json | 47 - .../fixed/fixed_incomming_success.json | 38 - .../fixed/fixed_outbound_success.json | 40 - .../mobile/acceptance_group_pickup.json | 129 + .../mobile/acceptance_group_reject.json | 129 + tests/fixtures/mobile/acceptance_reject.json | 57 + tests/fixtures/mobile/acceptance_simple.json | 80 + tests/fixtures/mobile/acceptance_timeout.json | 57 + tests/fixtures/mobile/simple_mobile.json | 80 + .../originate/cmn-world-world-unaccepted.json | 84 + tests/fixtures/originate/cmn-world-world.json | 152 + .../ctd-account-account-xfer-attn-abbcac.json | 196 ++ .../originate/ctd-account-account.json | 144 + .../originate/ctd-account-world-deny-a.json | 51 + .../originate/ctd-account-world-deny-b.json | 117 + .../ctd-account-world-xfer-attn-abacbc.json | 200 ++ .../fixtures/originate/ctd-account-world.json | 148 + tests/fixtures/queue/queue_a_cancel.json | 57 + .../fixtures/queue/queue_a_cancel_hangup.json | 286 -- tests/fixtures/queue/queue_attn_xfer.json | 177 +- tests/fixtures/queue/queue_blind_xfer.json | 157 +- tests/fixtures/queue/queue_group.json | 122 +- tests/fixtures/queue/queue_simple.json | 105 +- tests/fixtures/simple/ab_a_cancel.json | 31 + tests/fixtures/simple/ab_a_cancel_hangup.json | 24 - .../fixtures/simple/ab_a_success_hangup.json | 39 - tests/fixtures/simple/ab_busy.json | 281 -- tests/fixtures/simple/ab_callgroup.json | 516 +-- .../simple/ab_callgroup_no_answer.json | 452 +-- tests/fixtures/simple/ab_dnd.json | 29 + tests/fixtures/simple/ab_reject.json | 31 + tests/fixtures/simple/ab_success.json | 344 -- .../fixtures/simple/ab_success_a_hangup.json | 1048 ++++++ .../fixtures/simple/ab_success_b_hangup.json | 49 + .../simple/ab_success_twoclients.json | 130 +- tests/fixtures/var_set/user_events.json | 550 +--- tests/fixtures/xfer_attended/xfer_abacbc.json | 2859 +++++++++++++---- tests/fixtures/xfer_attended/xfer_abbcac.json | 721 +---- .../xfer_attended/xfer_abbcac_anon.json | 103 + .../xfer_attended/xfer_abbcac_anonymous.json | 82 - tests/fixtures/xfer_attended/xfer_abcbac.json | 102 + tests/fixtures/xfer_blind/xfer_blind.json | 86 - .../xfer_blind/xfer_blind_a_no_answer.json | 662 +--- .../xfer_blind/xfer_blind_abacbc.json | 734 +---- .../xfer_blind/xfer_blind_abbcac.json | 733 +---- .../xfer_blind/xfer_blind_b_no_answer.json | 665 +--- .../fixtures/xfer_blind/xfer_blind_group.json | 877 +---- .../xfer_blind_group_no_answer.json | 779 +---- .../xfer_blind/xfer_blind_reject.json | 669 +--- .../xfer_blonde/xfer_blonde_abacbc.json | 190 +- .../xfer_blonde/xfer_blonde_abbcac.json | 776 +---- .../xfer_blonde/xfer_blonde_group_a.json | 926 +----- .../xfer_blonde/xfer_blonde_group_b.json | 925 +----- .../xfer_blonde/xfer_blonde_reject.json | 724 +---- .../fixtures/xfer_blonde/xfer_blondeanon.json | 97 - .../xfer_blonde/xfer_blondeblindanon.json | 132 - tests/fixtures/xfer_misc/call_forwarding.json | 189 +- .../xfer_misc/call_forwarding_multiple.json | 1040 ------ .../call_forwarding_to_from_group.json | 124 - .../xfer_misc/call_forwarding_to_group.json | 885 +---- tests/fixtures/xfer_misc/call_pickup.json | 110 +- tests/replaytest.py | 135 +- tests/test_acceptance.py | 185 -- tests/test_connectab.py | 325 -- tests/test_fixed.py | 93 - tests/test_mobile.py | 179 ++ tests/test_originate.py | 258 ++ tests/test_partial.py | 23 +- tests/test_queue.py | 197 +- tests/test_reporters.py | 99 + tests/test_simple.py | 275 +- tests/test_var_set.py | 62 +- tests/test_xfer_attended.py | 260 +- tests/test_xfer_blind.py | 395 +-- tests/test_xfer_blonde.py | 410 +-- tests/test_xfer_misc.py | 144 +- 116 files changed, 10402 insertions(+), 18772 deletions(-) create mode 100644 cacofonisk/bridge.py create mode 100644 cacofonisk/handlers.py create mode 100644 cacofonisk/reporters.py delete mode 100644 cacofonisk/reporters/__init__.py delete mode 100644 cacofonisk/reporters/base_reporter.py delete mode 100644 cacofonisk/reporters/debug_reporter.py delete mode 100644 cacofonisk/reporters/json_reporter.py delete mode 100644 example.py create mode 100644 examples/amirunner.py create mode 100644 examples/filerunner.py create mode 100644 examples/output_json.py delete mode 100644 setup.cfg delete mode 100644 tests/fixtures/acceptance/accept_accepted.json delete mode 100644 tests/fixtures/acceptance/accept_deny.json delete mode 100644 tests/fixtures/acceptance/accept_multiple_accepted.json delete mode 100644 tests/fixtures/acceptance/accept_multiple_complexaccepted.json delete mode 100644 tests/fixtures/acceptance/accept_notaccepted.json delete mode 100644 tests/fixtures/acceptance/accept_timeout.json delete mode 100644 tests/fixtures/connectab/cmn-self-world.json delete mode 100644 tests/fixtures/connectab/cmn-world-account-unaccepted.json delete mode 100644 tests/fixtures/connectab/cmn-world-account.json delete mode 100644 tests/fixtures/connectab/cmn-world-world.json delete mode 100644 tests/fixtures/connectab/ctd-account-account.json delete mode 100644 tests/fixtures/connectab/ctd-account-world-deny_a.json delete mode 100644 tests/fixtures/connectab/ctd-account-world-deny_b.json delete mode 100644 tests/fixtures/connectab/ctd-account-world-fail2.json delete mode 100644 tests/fixtures/connectab/ctd-account-world.json delete mode 100644 tests/fixtures/connectab/ctd-attn-xfer.json delete mode 100644 tests/fixtures/fixed/fixed_both_success.json delete mode 100644 tests/fixtures/fixed/fixed_incomming_success.json delete mode 100644 tests/fixtures/fixed/fixed_outbound_success.json create mode 100644 tests/fixtures/mobile/acceptance_group_pickup.json create mode 100644 tests/fixtures/mobile/acceptance_group_reject.json create mode 100644 tests/fixtures/mobile/acceptance_reject.json create mode 100644 tests/fixtures/mobile/acceptance_simple.json create mode 100644 tests/fixtures/mobile/acceptance_timeout.json create mode 100644 tests/fixtures/mobile/simple_mobile.json create mode 100644 tests/fixtures/originate/cmn-world-world-unaccepted.json create mode 100644 tests/fixtures/originate/cmn-world-world.json create mode 100644 tests/fixtures/originate/ctd-account-account-xfer-attn-abbcac.json create mode 100644 tests/fixtures/originate/ctd-account-account.json create mode 100644 tests/fixtures/originate/ctd-account-world-deny-a.json create mode 100644 tests/fixtures/originate/ctd-account-world-deny-b.json create mode 100644 tests/fixtures/originate/ctd-account-world-xfer-attn-abacbc.json create mode 100644 tests/fixtures/originate/ctd-account-world.json create mode 100644 tests/fixtures/queue/queue_a_cancel.json delete mode 100644 tests/fixtures/queue/queue_a_cancel_hangup.json create mode 100644 tests/fixtures/simple/ab_a_cancel.json delete mode 100644 tests/fixtures/simple/ab_a_cancel_hangup.json delete mode 100644 tests/fixtures/simple/ab_a_success_hangup.json delete mode 100644 tests/fixtures/simple/ab_busy.json create mode 100644 tests/fixtures/simple/ab_dnd.json create mode 100644 tests/fixtures/simple/ab_reject.json delete mode 100644 tests/fixtures/simple/ab_success.json create mode 100644 tests/fixtures/simple/ab_success_a_hangup.json create mode 100644 tests/fixtures/simple/ab_success_b_hangup.json create mode 100644 tests/fixtures/xfer_attended/xfer_abbcac_anon.json delete mode 100644 tests/fixtures/xfer_attended/xfer_abbcac_anonymous.json create mode 100644 tests/fixtures/xfer_attended/xfer_abcbac.json delete mode 100644 tests/fixtures/xfer_blind/xfer_blind.json delete mode 100644 tests/fixtures/xfer_blonde/xfer_blondeanon.json delete mode 100644 tests/fixtures/xfer_blonde/xfer_blondeblindanon.json delete mode 100644 tests/fixtures/xfer_misc/call_forwarding_multiple.json delete mode 100644 tests/fixtures/xfer_misc/call_forwarding_to_from_group.json delete mode 100644 tests/test_acceptance.py delete mode 100644 tests/test_connectab.py delete mode 100644 tests/test_fixed.py create mode 100644 tests/test_mobile.py create mode 100644 tests/test_originate.py create mode 100644 tests/test_reporters.py diff --git a/.gitignore b/.gitignore index 8df1460..46c02a7 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,7 @@ tests/.coverage build/ tests/report/ cover/ +htmlcov/ .coverage coverage.xml diff --git a/AUTHORS.md b/AUTHORS.md index 1b84c9e..e28df00 100644 --- a/AUTHORS.md +++ b/AUTHORS.md @@ -5,3 +5,4 @@ - Luit - JorisE - HansAdema +- hafkensite diff --git a/CHANGELOG.md b/CHANGELOG.md index a8b3def..a2eda6f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,25 +1,37 @@ # Changelog +## 0.5.0 - AMI v2 + +- Upgrade Cacofonisk to work with AMI v2 (Asterisk 12+). **WARNING**: This +change is not backwards compatible. If you use Asterisk <11, you can keep using +version 0.4.0. +- Rename ChannelManager to EventHandler and decouple Asterisk channel tracking +from (opinionated) call tracking. +- Reporters now get immutable copies of Channels rather than CallerId objects, +so it's possible to analyze more channel attributes in the reporter. +- `trace_msg` and `trace_ami` have been removed in favor of proper logging +facilities. + ## 0.4.0 - ConnectAB - Add support for calls where Asterisk calls and connects both parties. ## 0.3.0 - Fixed Destinations -- Calls to external phone numbers (rather than just phone accounts) are now +- Calls to external phone numbers (rather than just phone accounts) are now tracked correctly. -- The `on_transfer` hook was split to `on_warm_transfer` (for attended -transfers) and `on_cold_transfer` (for blind and blonde transfers), with +- The `on_transfer` hook was split to `on_warm_transfer` (for attended +transfers) and `on_cold_transfer` (for blind and blonde transfers), with different method signatures. -- The `on_b_dial` events for a single call have been merged. If multiple -destinations start to ring for a single call, one `on_b_dial` event will be +- The `on_b_dial` events for a single call have been merged. If multiple +destinations start to ring for a single call, one `on_b_dial` event will be triggered with a list of CallerId objects. -- The `on_pickup` event was removed. You can compare the data from the +- The `on_pickup` event was removed. You can compare the data from the `on_b_dial` call with the `on_up` call to see whether the callee's phone rang. ## 0.2.2 - Cancelled Calls -- Fix issue where calls which were hung up by the caller before being answered +- Fix issue where calls which were hung up by the caller before being answered were not tracked correctly. ## 0.2.1 - Call Confirmation @@ -30,12 +42,12 @@ before the call was patched through (like pressing a button). ## 0.2.0 - Queues -- Calls passed through the Queue app are now tracked correctly (requires the +- Calls passed through the Queue app are now tracked correctly (requires the `eventwhencalled` flag to be enabled). ## 0.1.0 - Ups and Downs - Major refactor of the existing code. - Add `on_up` and `on_hangup` events. -- Add `call_id` to uniquely identify a call (based on the source channel's +- Add `call_id` to uniquely identify a call (based on the source channel's UniqueId, just like Asterisk's LinkedId). diff --git a/LICENSE b/LICENSE index d8d446a..12c96a9 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2017 Devhouse Spindle +Copyright (c) 2018 Devhouse Spindle Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 5bf95d4..609c7d1 100644 --- a/README.md +++ b/README.md @@ -1,18 +1,18 @@ # Cacofonisk -Cacofonisk is a framework that connects to the Asterisk PBX, listens to events -on the Asterisk Management Interface (AMI) and tracks the status of calls +Cacofonisk is a framework that connects to the Asterisk PBX, listens to events +on the Asterisk Management Interface (AMI) and tracks the status of calls currently in progress in Asterisk. -Cacofonisk takes a stream of AMI events as input and uses these to keep track -of the channels currently active in Asterisk and how they are related. When +Cacofonisk takes a stream of AMI events as input and uses these to keep track +of the channels currently active in Asterisk and how they are related. When something interesting happens to one of the channels, it will call a method on -a call state Reporter with interesting information about the call, like who is +a call state Reporter with interesting information about the call, like who is in the call, and a unique identifier. -This data can then be used to send webhooks regarding a call, to notify a +This data can then be used to send webhooks regarding a call, to notify a person who is being called, or to log calls being performed. - + ## Status This product is actively being developed and used at VoIPGRID. @@ -23,6 +23,7 @@ This product is actively being developed and used at VoIPGRID. - Python >= 3.4 - Panoramisk 1.x +- Asterisk >= 12 ### Installation @@ -42,11 +43,17 @@ $ python3 setup.py install To run Cacofonisk, you will need two things: a Runner and a Reporter. -A Runner is a class which is responsible for passing AMI events to the Cacofonisk. Two runners are included: an AmiRunner (which connects to the Asterisk Management Interface) and a FileRunner (which imports AMI events from a JSON file). +A Runner is a class which is responsible for passing AMI events to the +Cacofonisk. Two runners are included: an AmiRunner (which connects to the +Asterisk Management Interface) and a FileRunner (which imports AMI events from +a JSON file). -A Reporter is a class which takes the interesting data from Cacofonisk and does awesome things with it. Two reports have been included: a DebugReporter (which just dumps the data to stdout) and a JsonReporter (which creates JSON files for the FileRunner). +A Reporter is a class which takes the interesting data from Cacofonisk and does +awesome things with it. You can find various Reporters in the `examples` +folder. -To create your own reporter, you can extend the BaseReport class and implement your own event handlers, like so: +To create your own reporter, you can extend the BaseReporter class and +implement your own event handlers, like so: ```python from cacofonisk import AmiRunner, BaseReporter @@ -54,42 +61,38 @@ from cacofonisk import AmiRunner, BaseReporter class ReportAllTheThings(BaseReporter): - def on_b_dial(self, call_id, caller, to_number, targets): - callee_codes = [target.code for target in targets] - caller_number = caller.number - print("{} is now ringing {} on number {}".format( - caller_number, ', '.join(callee_codes), to_number, + def on_b_dial(self, caller, targets): + target_channels = [target.name for target in targets] + caller_number = caller.caller_id.num + print("{} is now calling {}".format( + caller_number, ', '.join(target_channels), )) - def on_up(self, call_id, caller, to_number, callee): - callee_account_code = callee.code - caller_number = caller.number - print("{} is now in conversation with {}".format(caller_number, callee_account_code)) - - def on_warm_transfer(self, call_id, merged_id, redirector, caller, destination): - print('{} is now calling with {} (was calling {})'.format(caller, destination, redirector)) - - def on_cold_transfer(self, call_id, merged_id, redirector, caller, to_number, targets): - print('{} tried to transfer the call from {} to number {} (ringing {})'.format( - redirector, caller, to_number, ', '.join(targets), - )) + def on_up(self, caller, target): + target_number = target.caller_id.num + caller_number = caller.caller_id.num + print("{} is now in conversation with {}".format(caller_number, target_number)) + + def on_hangup(self, caller, reason): + caller_number = caller.caller_id.num + print("{} is no longer calling (reason: {})".format(caller_number, reason)) - def on_hangup(self, call_id, caller, to_number, reason): - print("{} is no longer calling number {} (reason: {})".format(caller, to_number, reason)) - reporter = ReportAllTheThings() -runner = AmiRunner([ - {'host': '127.0.0.1', 'username': 'cacofonisk', 'password': 'bard', 'port': 5038}, -], reporter) +runner = AmiRunner(['tcp://username:password@127.0.0.1:5038'], reporter) runner.run() ``` -This reporter can then be passed to a Runner of your choice to process AMI events. +This reporter can then be passed to a Runner of your choice to process AMI +events. -For more information about the parameters of the reporter, please see the docs in BaseReporter. +For more information about the parameters of the reporter, please see the docs +in BaseReporter. -You can also listen for [UserEvents](https://wiki.asterisk.org/wiki/display/AST/Asterisk+11+Application_UserEvent) using the `on_user_event` function. This can be used to pass additional data from Asterisk to your Cacofonisk application. +You can also listen for +[UserEvents](https://wiki.asterisk.org/wiki/display/AST/Asterisk+13+Application_UserEvent) +using the `on_user_event` function. This can be used to pass additional data +from Asterisk to your Cacofonisk application. #### Running the tests diff --git a/cacofonisk/__init__.py b/cacofonisk/__init__.py index 8cc8c0e..69b121b 100644 --- a/cacofonisk/__init__.py +++ b/cacofonisk/__init__.py @@ -1,8 +1,4 @@ +from .handlers import EventHandler +from .reporters import BaseReporter, LoggingReporter from .runners.ami_runner import AmiRunner from .runners.file_runner import FileRunner - -from .reporters.base_reporter import BaseReporter -from .reporters.debug_reporter import DebugReporter -from .reporters.json_reporter import JsonReporter - -from .channel import ChannelManager diff --git a/cacofonisk/bridge.py b/cacofonisk/bridge.py new file mode 100644 index 0000000..b12def9 --- /dev/null +++ b/cacofonisk/bridge.py @@ -0,0 +1,60 @@ +class MissingBridgeUniqueid(KeyError): + pass + + +class Bridge(object): + """ + The Bridge object represents a Bridge in Asterisk. + + With Asterisk 12+, Asterisk creates bridges and puts channels into them to + make audio flow between the channels. This class is a Python representation + of such bridges. + """ + + def __init__(self, event): + """ + Create a new bridge object. + + Args: + event (Event): A BridgeCreate event. + """ + self.uniqueid = event['BridgeUniqueid'] + self.type = event['BridgeType'] + self.technology = event['BridgeTechnology'] + self.creator = event['BridgeCreator'] + self.video_source_mode = event['BridgeVideoSourceMode'] + + self.peers = set() + + def __len__(self): + """ + Get the number of channels in this bridge. + + Returns: + int: The number of channels in this bridge. + """ + return len(self.peers) + + def __repr__(self): + """ + Get a textual representation of this bridge. + + Returns: + str: A representation of this bridge. + """ + return ''.format( + self=self, + peers=','.join([chan.name for chan in self.peers]), + ) + + +class BridgeDict(dict): + """ + A dict which raises a MissingBridgeUniqueid exception if a key is missing. + """ + + def __getitem__(self, item): + try: + return super(BridgeDict, self).__getitem__(item) + except KeyError: + raise MissingBridgeUniqueid(item) diff --git a/cacofonisk/callerid.py b/cacofonisk/callerid.py index d02e41b..a47d528 100644 --- a/cacofonisk/callerid.py +++ b/cacofonisk/callerid.py @@ -1,29 +1,32 @@ -""" -CallerId holds information about one end of a call. - -The users of this application are interested in tuples of caller ID -number, caller ID name and sometimes an account ID (accountcode), and -it's privacy settings, both for call initiators and for call recipients. -""" from collections import namedtuple -class CallerId(namedtuple('CallerIdBase', 'code name number is_public')): +class CallerId(namedtuple('CallerIdBase', 'name num')): """ - An immutable CallerId class. + CallerId holds immutable information about one end of a call. + + The users of this application are interested in tuples of caller ID number, + caller ID name and sometimes an account ID (accountcode), and it's privacy + settings, both for call initiators and for call recipients. Usage:: caller = CallerId(name='My name', number='+311234567', is_public=True) caller = caller.replace(code=123456789) """ - def __new__(cls, code=0, name='', number=None, is_public=None): - return super().__new__(cls, code, name, number, is_public) + + def __new__(cls, name='', num=''): + if name == '': + name = '' + + if num == '': + num = '' + + return super().__new__(cls, name, str(num)) def replace(self, **kwargs): """ - Return a new CallerId instance replacing specified fields with - new values. + Create a copy of this CallerId with specified changes. Args: **kwargs: One or more of code, name, number, is_public. @@ -31,19 +34,10 @@ def replace(self, **kwargs): Returns: CallerId: A new instance with replaced values. """ - # The method already exists on the namedtuple. We simply make it - # public. - return self._replace(**kwargs) + if 'name' in kwargs and kwargs['name'] == '': + kwargs['name'] = '' - def _is_public_tag(self): - if self.is_public is None: - return '' - elif self.is_public: - return ';pub' - else: - return ';priv' - - def __str__(self): - return '"{}" <{}{};code={}>'.format( - self.name.replace('\\', '\\\\').replace('"', '\\"'), - self.number, self._is_public_tag(), self.code) + if 'number' in kwargs and kwargs['number'] == '': + kwargs['number'] = '' + + return self._replace(**kwargs) diff --git a/cacofonisk/channel.py b/cacofonisk/channel.py index 12c34c7..382a3c9 100644 --- a/cacofonisk/channel.py +++ b/cacofonisk/channel.py @@ -1,521 +1,102 @@ -""" -Translate AMI events to call events. +from collections import namedtuple -The ChannelManager takes AMI or AMI-like events and translates them to -more higher level events. - -During operation, the ChannelManager instance is fed AMI events through:: - - on_event(self, event) - -If it determines that something interesting has happened, it fires one -of these four events:: - - on_b_dial(self, call_id, caller, callee) - on_up(self, call_id, caller, callee) - on_transfer(self, call_id, merged_id, transferor, party1, party1) - on_hangup(self, call_id, caller, callee, reason) - -You should override these ChannelManager methods in your -subclass and add the desired behaviour for those events. -""" -from cacofonisk.constants import (AST_CAUSE_ANSWERED_ELSEWHERE, AST_CAUSE_CALL_REJECTED, AST_CAUSE_NORMAL_CLEARING, - AST_CAUSE_NO_ANSWER, AST_CAUSE_NO_USER_RESPONSE, AST_CAUSE_UNKNOWN, - AST_CAUSE_USER_BUSY, AST_STATE_DIALING, AST_STATE_DOWN, AST_STATE_RING, - AST_STATE_RINGING, AST_STATE_UP) -from .callerid import CallerId - - -class MissingChannel(KeyError): - pass +from cacofonisk.callerid import CallerId class MissingUniqueid(KeyError): pass -class BridgedError(Exception): - pass - - class Channel(object): """ A Channel holds Asterisk channel state. - It can be renamed, linked, tied to other channels, bridged, - masqueraded and so on. All of the above is typical low level - Asterisk channel behaviour. - - Together with the ChannelManager, the Channel keeps track of the - state of all open channels through the events generated by a running - Asterisk instance. + It can be dialed, bridge, and updated with new data. All of the above is + typical low level Asterisk channel behaviour. """ - def __init__(self, event, channel_manager): + def __init__(self, event): """ - Create a new channel instance. Takes a channel manager managing - it as argument for callbacks. + Create a new channel instance. Args: - event (Dict): A dictionary with Asterisk AMI data. Only the - Newchannel event should be passed. The ChannelManager - does the other translations. - channel_manager (ChannelManager): The channel manager that takes - the AMI events and passes state changes to individual channels - or groups of channels at once. - - Example:: - - channel = Channel( - event={ - 'AccountCode': '', - 'CallerIDName': 'Foo bar', - 'CallerIDNum': '+31501234567', - 'Channel='SIP/voipgrid-siproute-dev-0000000c', - 'ChannelState': '0', - 'ChannelStateDesc': 'Down', - 'Context': 'voipgrid_in', - 'Event': 'Newchannel', - 'Exten': '+31501234567', - 'Privilege: 'call,all', - 'Uniqueid': 'vgua0-dev-1442239323.24', - 'content: '', - }, - channel_manager=channel_manager) + event (dict): The attributes of a Newchannel event. """ - self._channel_manager = channel_manager - - # Uses of this instance may put data in the custom dict. We take - # care to link this on masquerade. - self.custom = {} + self.name = event['Channel'] + self.uniqueid = event['Uniqueid'] + self.linkedid = event['Linkedid'] + self.state = int(event['ChannelState']) + self.exten = event['Exten'] + self.account_code = event['AccountCode'] + self.cid_calling_pres = None + self.caller_id = CallerId( + name=event['CallerIDName'], + num=event['CallerIDNum'], + ) + self.connected_line = CallerId( + name=event['ConnectedLineName'], + num=event['ConnectedLineNum'], + ) - self._name = event['Channel'] - self._id = event['Uniqueid'] - self._fwd_local_bridge = None - self._back_local_bridge = None + # Create vars which are used to store generated data based on other + # events from Asterisk. + self.fwd_local_bridge = None + self.back_local_bridge = None self.back_dial = None self.fwd_dials = [] + self.bridge = None + self.is_originated = False + self.is_calling = False - self._state = int(event['ChannelState']) # 0, Down - self._bridged = set() - self._exten = event['Exten'] - - self._side = None - - self._callerid = CallerId( - code=int(event['AccountCode'] or 0), - name=event['CallerIDName'], - number=event['CallerIDNum'], - is_public=True - ) - - self._trace('new {!r}'.format(self)) + # The Custom dict can be used to store custom data. + self.custom = {} def __repr__(self): return ( '').format( + 'state={self.state!r} ' + 'cli="{self.caller_id.name!r}" <{self.caller_id.num!r}> ' + 'exten={self.exten})>').format( self=self, - next=(self._fwd_local_bridge and self._fwd_local_bridge.name), - prev=(self._back_local_bridge and self._back_local_bridge.name)) - - def _trace(self, msg): - """ - _trace can be used to follow interesting events. - """ - pass - - @property - def is_relevant(self): - """ - is_relevant returns true if the channel is not a Zombie channel. - - Returns: - bool: True if self is a SIP channel and not a zombie channel. - """ - return self.is_sip and not self.is_zombie - - @property - def is_zombie(self): - """ - Whether the current channel is ZOMBIE channel. - - Returns: - bool: True if the channel is a zombie, false otherwise. - """ - return self.name.endswith('') - - @property - def is_connectab(self): - """ - Check if this channel is part of a ConnectAB call. - - Returns: - bool: True if this is the origin channel of ConnectAB. - """ - # ConnectAB is a channel setup specific to VoIPGRID, which - # is used for click-to-dial and call-me-now functionality. - # Basically, an ORIGINATE call is sent to Asterisk, which - # will then dial participant 1, wait for the participant to - # pick up, then call participant 2 and link the two together. - # - # Since both A and B are being called and Asterisk itself is - # calling, we need some special logic to make it work. - # local_a is the origin channel of the dial to our caller. - local_a = self.get_dialing_channel() - - # With a regular call, the dialing channel is a SIP channel, but with - # a ConnectAB call, the dialing channel is created by Asterisk so it's - # a local channel. - # This dialing channel is locally bridged with another channel and both - # local channels have outbound dials to both legs of a conversation. - return local_a._fwd_local_bridge and local_a.fwd_dials and local_a._fwd_local_bridge.fwd_dials + next=(self.fwd_local_bridge and self.fwd_local_bridge.name), + prev=(self.back_local_bridge and self.back_local_bridge.name)) @property def is_local(self): """ Whether the current channel is a local channel. - Returns: - bool: True if the channel is local, false otherwise. - """ - return self.name.startswith('Local/') - - @property - def is_sip(self): - """ - Whether the current channel is a SIP channel. - A connection to Asterisk consist of two parts, an internal connection and an external connection. The internal connection is prefixed with 'Local/', whereas a external connection is prefixed with 'SIP/'. Returns: - bool: True if this channel is a SIP channel, false otherwise. - """ - return self.name.startswith('SIP/') - - @property - def uniqueid(self): - return self._id - - @property - def name(self): - return self._name - - @property - def callerid(self): - return self._callerid - - @property - def is_bridged(self): - return bool(self._bridged) - - @property - def bridged_channel(self): - tmp = list(self._bridged) - if len(tmp) != 1: - raise BridgedError( - 'Expected one bridged channel. ' - 'Did Asterisk bridge multiple? ' - 'Or did you forget to call is_bridged? ' - 'Bridge set: {!r}'.format(self._bridged)) - return tmp[0] - - @property - def is_up(self): - return self._state == AST_STATE_UP - - @property - def state(self): - return self._state - - @property - def exten(self): - """ - Get the extension of the channel. - - For calling channels, the extension is the phone number which was - dialed by the user. - - Returns: - str: The channel extension. + bool: True if the channel is local, false otherwise. """ - return self._exten + return self.name.startswith('Local/') @property - def is_calling_chan(self): - """ - Check whether this channel is a calling other channels. - - Returns: - bool: True if this channel is calling other channels, else False. + def has_extension(self): """ - return self._side == 'A' + Check if the channel has a valid extension (not empty or star signal). - @property - def is_called_chan(self): - """ - Check whether this channel is being called by other channels. + Calling channels in Asterisk typically have an extension which + tells Asterisk where it should direct the call. Checking whether the + channel has an extension is usually a good indicator to determine + whether the channel is calling or not. Returns: - bool: True if this channel is being called, False otherwise. - """ - return self._side == 'B' - - def set_name(self, name): - """ - set_name changes _name of ``self`` to ``name``. - - Args: - name (str): The name that this channel should have. - """ - old_name = self._name - self._name = name - self._trace('set_name {} -> {}'.format(old_name, name)) - - def set_state(self, event): - """ - set_state changes _state of ``self`` to the ChannelState in ``event``. - If the channel state changes, it calls meth:`_raw_a_dial` - and/or meth:`_raw_b_dial` if needed. - - Args: - event (dict): A dictionary containing an AMI event. - - Example event: - - - - Asterisk ChannelStates: - - AST_STATE_DOWN = 0, - AST_STATE_RESERVED = 1, - AST_STATE_OFFHOOK = 2, - AST_STATE_DIALING = 3, - AST_STATE_RING = 4, - AST_STATE_RINGING 5, - AST_STATE_UP = 6, - AST_STATE_BUSY = 7, - AST_STATE_DIALING_OFFHOOK = 8, - AST_STATE_PRERING = 9 - """ - old_state = self._state - self._state = int(event['ChannelState']) # 4=Ring, 6=Up - assert old_state != self._state - self._trace('set_state {} -> {}'.format(old_state, self._state)) - - if old_state == AST_STATE_DOWN and self._state in (AST_STATE_DIALING, AST_STATE_RING, AST_STATE_UP): - self._channel_manager._raw_a_dial(self) - elif old_state == AST_STATE_DOWN and self._state == AST_STATE_RINGING: - self._channel_manager._raw_b_dial(self) - elif old_state == AST_STATE_RING and self._state == AST_STATE_UP: - self._channel_manager._raw_a_up(self) - elif old_state == AST_STATE_RINGING and self._state == AST_STATE_UP: - self._channel_manager._raw_b_up(self) - else: - self._trace('Unimplemented state update: {} -> {}'.format(old_state, self._state)) - - def set_callerid(self, event): - """ - set_callerid sets a class:`CallerId` object as attr:`_callerid` - according to the relevant variables in `event`. - - Args: - event (dict): A dictionary containing an AMI event. - - Example event: - - - """ - old_cli = str(self._callerid) - if event['CallerIDNum'] == str(self._callerid.code): - # If someone uses call pickups, the CallerIDNum will be the - # same as the AccountCode. However, broadcasting that is a bit - # of a security leak. - # Instead, we ignore this new number and use whatever we already - # have. - caller_id_number = self._callerid.number - else: - caller_id_number = event['CallerIDNum'] - - self._callerid = self._callerid.replace( - name=event['CallerIDName'], - number=caller_id_number, - is_public=('Allowed' in event['CID-CallingPres'])) - - self._trace('set_callerid {} -> {}'.format(old_cli, self._callerid)) - - def set_accountcode(self, event): - """ - set_accountcode sets the code of the _callerid to the 'Accountcode' defined - in `event`. - - Args: - event (dict): A dictionary containing an AMI event. - - Example event: - - - """ - if not self._callerid.code: - old_accountcode = self._callerid.code - self._callerid = self._callerid.replace(code=int(event['AccountCode'])) - self._trace('set_accountcode {} -> {}'.format(old_accountcode, self._callerid.code)) - else: - self._trace('set_accountcode ignored {} -> {}'.format(self._callerid.code, event['AccountCode'])) - - def connectab_participants(self): + bool: Whether the channel has a valid extension. """ - Extract the real caller and callee channels of a ConnectAB call. - """ - # First, we need to find the local channels which Asterisk uses to - # dial out of the participants. - local_a = self.get_dialing_channel() - local_b = local_a._fwd_local_bridge - - # Then, we can get the channels being dialed by Asterisk. - callee = local_a.fwd_dials[0] - caller = local_b.fwd_dials[0] - return caller, callee - - def do_hangup(self, event): - """ - do_hangup clears clears all related channel and raises an error if any - channels were bridged. - - Args: - event (dict): A dictionary containing an AMI event. - """ - # Remove the bridges. - if self._fwd_local_bridge: - self._fwd_local_bridge._back_local_bridge = None - - if self._back_local_bridge: - self._back_local_bridge._fwd_local_bridge = None - - # Remove the dials. - if self.back_dial: - self.back_dial.fwd_dials.remove(self) - self.back_dial = None - - # Assert that there are no bridged channels. - assert not self._bridged, self._bridged - - def do_localbridge(self, other): - """ - do_localbridge sets `self` as attr:`_back_local_bridge` on `other` - and other as attr:`_fwd_local_bridge` on `self`. - - Args: - other (Channel): An instance of class:`Channel`. - - Example event: - - - """ - assert self._fwd_local_bridge is None, self._fwd_local_bridge - assert self._back_local_bridge is None, self._back_local_bridge - assert other._fwd_local_bridge is None, other._fwd_local_bridge - assert other._back_local_bridge is None, other._back_local_bridge - - self._fwd_local_bridge = other - other._back_local_bridge = self - - self._trace('do_localbridge -> {!r}'.format(other)) - - def do_masquerade(self, other): - """ - do_masquerade removes all links from `self` and moves the links from - `other` to `self`. The `custom` dict is also moved from `other` to - `self`. - - Args: - other (Channel): An instance of class:`Channel`. - """ - # If self is linked, we must undo all of that first. - if self._fwd_local_bridge: - self._trace('discarding old next link {}'.format(self._fwd_local_bridge.name)) - self._fwd_local_bridge._back_local_bridge = None - self._fwd_local_bridge = None - - if self._back_local_bridge: - self._trace('discarding old prev link {}'.format(self._back_local_bridge.name)) - self._back_local_bridge._fwd_local_bridge = None - self._back_local_bridge = None - - # If other is linked, move that to us. - if other._fwd_local_bridge: - other._fwd_local_bridge._back_local_bridge = self - self._fwd_local_bridge = other._fwd_local_bridge - other._fwd_local_bridge = None - self._trace('updated next link {}'.format(self._fwd_local_bridge.name)) - - if other._back_local_bridge: - other._back_local_bridge._fwd_local_bridge = self - self._back_local_bridge = other._back_local_bridge - other._back_local_bridge = None - self._trace('updated prev link {}'.format(self._back_local_bridge.name)) - - # What should we do with bridges? In the Asterisk source, it looks like - # we keep the bridges intact, i.e.: the original (self) channel gets - # properties copied from the clone (other), while we leave the bridging - # intact. That would mean that any bridges on the clone would be - # destroyed later on. - - # There is one interesting feature going on here, later on, in - # certain cases, we a get a soon to be destroyed channel that we - # need to write info to. We link the info dict to the new class - # so we can write to the old one. - self.custom = other.custom - self._callerid = other.callerid - - self._trace('do_masquerade -> {!r} {!r}'.format(self, other)) - - def do_link(self, other): - """ - do_link adds `other` to the set of bridged channels in `self` and vice - versa. - - Args: - other (Channel): An instance of class:`Channel`. - """ - self._bridged.add(other) - other._bridged.add(self) - - def do_unlink(self, other): - """ - do_link removes `other` from the set of bridged channels in `self` and - vice versa. - - Args: - other (Channel): An instance of class:`Channel`. - """ - self._bridged.remove(other) - other._bridged.remove(self) + return ( + self.exten and self.exten != 's' and + not self.exten.startswith('*') + ) def get_dialing_channel(self): """ @@ -523,6 +104,9 @@ def get_dialing_channel(self): When a channel is not bridged yet, you can use this on the B-channel to figure out which A-channel initiated the call. + + Returns: + Channel: The master channel dialing this channel. """ if self.back_dial: # Check if we are being dialed. @@ -533,8 +117,8 @@ def get_dialing_channel(self): # If our a_chan has a local bridge, use the back part of that bridge # to check for further dials. - if a_chan and a_chan._back_local_bridge: - a_chan = a_chan._back_local_bridge + if a_chan and a_chan.back_local_bridge: + a_chan = a_chan.back_local_bridge # If we have an incoming channel, recurse through the channels to find # the true origin channel. If we don't have one, it means we're the @@ -558,24 +142,26 @@ def get_dialed_channels(self): * Those channels may be SIP channels, or they can be local channels, in which case we have to look further (by calling this function on those channels). + + Returns: + set: A set of all channels being dialed by this channel. """ b_channels = set() - if self._fwd_local_bridge: - b_chans = self._fwd_local_bridge.fwd_dials - else: - b_chans = self.fwd_dials + b_chans = self.fwd_dials for b_chan in b_chans: - # Likely, b_chan._fwd_local_bridge is None, in which case we're + # Likely, b_chan.fwd_local_bridge is None, in which case we're # looking at a real tech channel (non-Local). - # Or, the b_chan has one _fwd_local_bridge, after which we have + # Or, the b_chan has one.fwd_local_bridge, after which we have # to call this function again. - if b_chan._fwd_local_bridge: - b_chan = b_chan._fwd_local_bridge + if b_chan.fwd_local_bridge: + b_chan = b_chan.fwd_local_bridge - assert not b_chan._fwd_local_bridge, \ - ('Since when does asterisk do double links? b_chan={!r}'.format(b_chan)) + assert not b_chan.fwd_local_bridge, ( + 'Since when does asterisk do double links? b_chan={!r}' + .format(b_chan) + ) b_channels.update(b_chan.get_dialed_channels()) else: @@ -584,865 +170,106 @@ def get_dialed_channels(self): return b_channels - -class ChannelRegistry(object): - """ - ChannelRegistry stores the channels tracked by ChannelManager. - - ChannelRegistry exposes methods to add and remove channels and to - retrieve them by attributes like their name and uniqueid. - """ - - def __init__(self): - self._channels_by_name = {} - self._channels_by_uniqueid = {} - - def add(self, channel): + def get_bridge_peers_recursive(self): """ - Add the channel to the registry. + Traverse (local) bridges recursively and get all non-Local channels. - Args: - channel (Channel): The channel to register. - """ - self._channels_by_name[channel.name] = channel - self._channels_by_uniqueid[channel.uniqueid] = channel + Uses _get_peers_recursive to traverse the local and non-local + bridges recursively, but also checks the local bridges of self for + more channels. - def get_by_uniqueid(self, uniqueid): - """ - Get the channel with the given UniqueID. - - Args: - uniqueid (string): The UniqueID to look up. + This cannot be done in one step, as doing so would cause a recursion + loop while traversing the same local bridge back and forth. Returns: - Channel: The channel with the given ID. + set: A set of non-local Channels. """ - if uniqueid in self._channels_by_uniqueid: - return self._channels_by_uniqueid[uniqueid] - else: - raise MissingUniqueid(uniqueid) + peers = self._bridge_peers_recurse() - def get_by_name(self, name): - """ - Get the channel with the given channel name. + if self.fwd_local_bridge: + fwd_peers = self.fwd_local_bridge._bridge_peers_recurse() + for peer in fwd_peers: + peers.add(peer) - Args: - name (string): The name of the channel. - - Returns: - Channel: The channel with the given name. - """ - if name in self._channels_by_name: - return self._channels_by_name[name] - else: - raise MissingChannel(name) + if self.back_local_bridge: + back_peers = self.back_local_bridge._bridge_peers_recurse() + for peer in back_peers: + peers.add(peer) - def remove(self, channel): - """ - Remove a channel from the registry. + return peers - Args: - channel (Channel): The channel to remove. + def _bridge_peers_recurse(self): """ - if channel.name in self._channels_by_name: - del (self._channels_by_name[channel.name]) - - if channel.uniqueid in self._channels_by_uniqueid: - del (self._channels_by_uniqueid[channel.uniqueid]) - - if not self._channels_by_name: - assert not self._channels_by_uniqueid + The recursive step of get_bridge_peers_recursive. - def __len__(self): - """ - Get the number of channels currently in the registry. + This function finds the non-Local channels of the current bridge, + as well as the non-Local channels of the channels linked through + local bridges. Returns: - int: The number of channels. + set: A set of non-local Channels. """ - return len(self._channels_by_name) - - -class ChannelManager(object): - """ - The ChannelManager translates AMI events to high level call events. - - Usage:: - - class MyChannelManager(ChannelManager): - def on_b_dial(self, call_id, caller, callee): - # Your code here. - # call_id is a unique identifying string of a conversation. - # Caller and callee are of type CallerId. - pass - - def on_up(self, call_id, caller, callee): - # Your code here. - # call_id is a unique identifying string of a conversation. - # Caller and callee are of type CallerId. - pass - - def on_hangup(self, call_id, caller, callee, reason): - # Your code here. - # call_id is a unique identifying string of a conversation. - # Caller and callee are of type CallerId. - # reason is a keyword to identify why a conversation ended. - pass - - def on_warm_transfer(self, call_id, merged_id, transferor, party1, party1): - # Your code here. call_id and merged_id are unique strings to - # identify two conversations being merged into one. - # transferor, party1 and party2 are of type CallerId. - pass - - def on_cold_transfer(self, call_id, merged_id, transferor, party1, targets): - # Your code here. call_id and merged_id are unique strings to - # identify two conversations being merged into one. - # transferor and caller are of type CallerId. targets is a - # list of CallerID objects. - pass - - def on_user_event(self, event): - # Your code here. Process custom events. event is a dict-like - # object. - pass - - class MyReporter(object): - def trace_ami(self, ami): - print(ami) - - def trace_msg(self, msg): - print(msg) - - manager = MyChannelManager(MyReporter()) + if not self.bridge: + return set() - # events is a list of AMI-event-like dictionaries. - for event in events: - if ('*' in manager.INTERESTING_EVENTS or - event['Event'] in manager.INTERESTING_EVENTS): - # After some of the events, one of the event hook methods - # is called. - manager.on_event(event) - """ - # We require all of these events to function properly. (Except - # perhaps the FullyBooted one.) - INTERESTING_EVENTS = ( - # This tells us that we're connected. We should probably - # flush our channels at this point, because they aren't up - # to date. - 'FullyBooted', - # These events all relate to low level channel setup and - # maintenance. - 'Newchannel', 'Newstate', 'NewCallerid', - 'NewAccountCode', 'LocalBridge', 'Rename', - 'Bridge', 'Masquerade', - # Higher level channel info. - 'Dial', 'Hangup', 'Transfer', - # Events related to tracking calls through queues. - 'AgentCalled', - # UserEvents - 'UserEvent' - ) - - def __init__(self, reporter): - """ - Create a ChannelManager instance. + peers = set() - Args: - reporter (Reporter): A reporter with trace_msg and trace_ami - methods. - """ - self._reporter = reporter - self._registry = ChannelRegistry() + if not self.is_local: + peers.add(self) - def on_event(self, event): - """ - on_event calls `_on_event` with `event`. If `_on_event` raisen an - exception this is logged. + for peer in [peer for peer in self.bridge.peers if peer != self]: + if not peer.is_local: + peers.add(peer) + elif peer.is_local and peer.fwd_local_bridge: + rec_peers = peer.fwd_local_bridge._bridge_peers_recurse() - Args: - event (dict): A dictionary containing an AMI event. - """ - try: - self._on_event(event) - except MissingChannel as e: - # If this is after a recent FullyBooted and/or start of - # self, it is reasonable to expect that certain events will - # fail. - self._reporter.trace_msg( - 'Channel with name {} not in mem when processing event: ' - '{!r}'.format(e.args[0], event)) - except MissingUniqueid as e: - # This too is reasonably expected. - self._reporter.trace_msg( - 'Channel with Uniqueid {} not in mem when processing event: ' - '{!r}'.format(e.args[0], event)) - except BridgedError as e: - self._reporter.trace_msg(e) + for recursive_peer in rec_peers: + peers.add(recursive_peer) + elif peer.is_local and peer.back_local_bridge: + rec_peers = peer.back_local_bridge._bridge_peers_recurse() - self._reporter.on_event(event) + for recursive_peer in rec_peers: + peers.add(recursive_peer) - def _on_event(self, event): - """ - on_event takes an event, extract and store the appropriate state - updates and if possible fire an event ourself. + return peers - Args: - event (Dict): A dictionary with Asterisk AMI data. + def as_namedtuple(self): """ - # Write message to reporter, for debug/test purposes. - self._reporter.trace_ami(event) - - event_name = event['Event'] - - if event_name == 'FullyBooted': - # Time to clear our channels because they are stale? - self._reporter.trace_msg('Connected to Asterisk') - elif event_name == 'Newchannel': - channel = Channel(event, channel_manager=self) - self._registry.add(channel) - elif event_name == 'Newstate': - channel = self._registry.get_by_name(event['Channel']) - channel.set_state(event) - elif event_name == 'NewCallerid': - channel = self._registry.get_by_name(event['Channel']) - channel.set_callerid(event) - elif event_name == 'NewAccountCode': - channel = self._registry.get_by_name(event['Channel']) - channel.set_accountcode(event) - elif event_name == 'LocalBridge': - channel = self._registry.get_by_name(event['Channel1']) - other = self._registry.get_by_name(event['Channel2']) - channel.do_localbridge(other) - elif event_name == 'Rename': - channel = self._registry.get_by_name(event['Channel']) - self._registry.remove(channel) - channel.set_name(event['Newname']) - self._registry.add(channel) - elif event_name in 'Bridge': - channel1 = self._registry.get_by_name(event['Channel1']) - channel2 = self._registry.get_by_name(event['Channel2']) - - if event['Bridgestate'] == 'Link': - channel1.do_link(channel2) - elif event['Bridgestate'] == 'Unlink': - channel1.do_unlink(channel2) - else: - raise ValueError('Unrecognized Bridgestate: %s' % event) - elif event_name == 'Masquerade': - # A Masquerade destroys the Original and puts the guts of - # Clone into it. Afterwards, the Clone channel will be - # removed. - clone = self._registry.get_by_name(event['Clone']) - original = self._registry.get_by_name(event['Original']) - - if event['CloneState'] != event['OriginalState']: - # For blonde transfers, the original state is Ring. - assert event['OriginalState'] in ('Ring', 'Ringing') - assert event['CloneState'] == 'Up', event - - # This is a call pickup? - if event['OriginalState'] == 'Ringing': - self._raw_call_pickup(clone, original) - original._state = AST_STATE_UP - self._raw_b_up(original) - elif event['OriginalState'] == 'Ring': - # The channel state is changed from Ring to Up, change channel state and call _raw_a_up. - original._state = AST_STATE_UP - self._raw_a_up(original) - - original.do_masquerade(clone) - elif event_name == 'Hangup': - channel = self._registry.get_by_name(event['Channel']) - self._raw_hangup(channel, event) - - elif event_name == 'Dial': - if event['SubEvent'] == 'Begin': - source = self._registry.get_by_uniqueid(event['UniqueID']) - target = self._registry.get_by_uniqueid(event['DestUniqueID']) - - # Verify target is not being dialed already. - assert not target.back_dial - - # _fwd_dials is a list of channels being dialed by A. - source.fwd_dials.append(target) - - # _back_dial is the channel dialing B. - target.back_dial = source - elif event['SubEvent'] == 'End': - # This is cleaned up after Hangup. - pass - else: - raise ValueError('Unrecognized Dial SubEvent: %s' % event) + Convert Channel to a SimpleChannel, so it's safe to pass to a reporter. - elif event_name == 'Transfer': - # Both TargetChannel and TargetUniqueid can be used to match - # the target channel; they can be used interchangeably. - channel = self._registry.get_by_name(event['Channel']) - target = self._registry.get_by_name(event['TargetChannel']) - assert target == self._registry.get_by_uniqueid(event['TargetUniqueid']) - - if event['TransferType'] == 'Attended': - self._raw_attended_transfer(channel, target) - elif event['TransferType'] == 'Blind': - self._raw_blind_transfer(channel, target, event['TransferExten']) - else: - raise NotImplementedError(event) - - elif event_name == 'AgentCalled': - # The Queue app does not create regular dials for calls passing - # through it. So essentially, you've got an incoming channel, - # a local bridge and a destination channel, but no way to tie the - # incoming channel and local bridge together (until the incoming - # and destination channels are bridged). This in turn makes - # get_dialing_channel() return the back part of the local bridge - # (before the masquarade) or just the destination channel. This - # makes Cacofonisk call hooks with bogus data. - # - # The way to remedy this is by tracking the AgentCalled events, - # which, similar to the dials, tie the incoming channel and local - # bridge together. - # - # IMPORTANT: This requires the `eventwhencalled` parameter to be - # enabled on the Queue, or these events will not be raised (and - # you'll get bogus data). - source = self._registry.get_by_name(event['ChannelCalling']) - target = self._registry.get_by_name(event['DestinationChannel']) - - assert not target.back_dial - - source.fwd_dials.append(target) - target.back_dial = source - - elif event_name == 'UserEvent': - self.on_user_event(event) - else: - pass - - # =================================================================== - # Event handler translators - # =================================================================== - - def _raw_a_dial(self, channel): - """ - Handle the event where the caller phone hears the ring tone. - - We don't want this. It's work to get all the values right, and - when we do, this would look just like on_b_dial. - Further, the work we do to get on_transfer right makes getting - consistent on_a_dials right even harder. - - Args: - channel (Channel): - """ - channel._side = 'A' - pass - - def _raw_b_dial(self, channel): - """ - Handle the event where the callee phone starts to ring. - - Args: - channel (Channel): The channel of the B side. - """ - channel._side = 'B' - - if channel.is_sip: - if 'ignore_b_dial' in channel.custom: - # Notifications were already sent for this channel. - # Unset the flag and move on. - del (channel.custom['ignore_b_dial']) - return - - a_chan = channel.get_dialing_channel() - a_chan._side = 'A' - - if 'raw_blind_transfer' in a_chan.custom: - # This is an interesting exception: we got a Blind - # Transfer message earlier and recorded it in this - # attribute. We'll translate this b_dial to first a - # on_b_dial and then the on_transfer event. - redirector_chan = a_chan.custom.pop('raw_blind_transfer') - - redirector = redirector_chan.callerid - target_chans = a_chan.get_dialed_channels() - targets = [party.callerid for party in target_chans] - - for target in target_chans: - # To prevent notifications from being sent multiple times, - # we set a flag on all other channels except for the one - # starting to ring right now. - if target != channel: - target.custom['ignore_b_dial'] = True - - # The dial from the transferree was setup by the transfer app, - # so it contains garbage codes like ID12345 as the extension - # rather than a dialed number. - a_chan._exten = channel.callerid.number - - # We're going to want to simulate a pre-flight dial event for - # consistency with attended transfers. In this dial, the - # redirector supposedly calls the person to who the call is - # going to be redirected to. - # - # It's important that a b_dial has been sent for the call - # we're going to be left with afterwards, but also that the - # call ID is different from the call before the transfer. - if redirector_chan.is_calling_chan: - # This transfer was initiated on the A side, which means - # we're going to be left with B -> C afterwards. No dial - # event was triggered with B as caller, so we should do - # that now. - self.on_b_dial(a_chan.uniqueid, redirector, a_chan.exten, targets) - else: - # This transfer was initiated on the B side, which means - # we're going to be left with A -> C afterwards. A dial - # event with A was already generated, so we could (ab)use - # any old channel here to simulate a merged call. - # So why specifically use redirector_chan? Just read on... - self.on_b_dial(redirector_chan.uniqueid, redirector, redirector_chan.exten, targets) - - # Now it's time to send a transfer event. dialing_channel is - # always the channel we're going to be left with (regardless - # of whether it was originally A or B), so that's our new - # call_id. - # - # See, redirector_chan is always the call we'll want to merge. - # if the call was initiated on the A side, redirector_chan is - # the original call which we will end. If the transfer was - # initiated on the B side, then it's our dummy channel. - self.on_cold_transfer(a_chan.uniqueid, redirector_chan.uniqueid, - redirector, a_chan.callerid, redirector_chan.exten, targets) - elif a_chan.is_connectab: - # Since both A and B are being called and Asterisk itself is - # calling, we need some special logic to make it work. - caller, callee = a_chan.connectab_participants() - real_a_chan = a_chan._fwd_local_bridge - real_a_chan._callerid = a_chan.callerid.replace(code=caller.callerid.code) - - self.on_b_dial( - a_chan._fwd_local_bridge.uniqueid, - # Use the data from the local a_chan, but pull the account - # code from the "caller" dialed by Asterisk. - real_a_chan.callerid, - channel.callerid.number, - [channel.callerid] - ) - elif a_chan.is_relevant: - # We'll want to send one ringing event for all targets. So - # let's figure out to whom a_chan has open dials. To ensure - # only one event is raised, we'll check all the uniqueids and - # only send an event for the channel with the lowest uniqueid. - # if not a_chan.is_up: - open_dials = a_chan.get_dialed_channels() - targets = [dial.callerid for dial in open_dials] - - for b_chan in open_dials: - if b_chan == channel: - # Ensure a notification is only sent once. - self.on_b_dial(a_chan.uniqueid, a_chan.callerid, a_chan.exten, targets) - else: - # To prevent notifications from being sent multiple times, - # we set a flag on all other channels except for the one - # starting to ring right now. - b_chan.custom['ignore_b_dial'] = True - - def _raw_attended_transfer(self, channel, target): - """ - Handle the attended transfer event. - - Args: - channel (Channel): The original channel is the channel which the - redirector used to talk with the person who's being - transferred. - target (Channel): The target channel is the channel which the - redirector used to set up the call to the person to whom the - call is being transferred. - """ - if target.is_bridged: - # The redirector already has an audio bridge open with the new - # callee. This means that we're handling an attended transfer. - - transferred_channel = channel.bridged_channel - c_chan = target.bridged_channel - - if channel.is_called_chan: - # Channel has a back dial, meaning it was B who started the - # transfer. That means channel is bridged with A. - old_a_chan = channel.bridged_channel - else: - # Channel doesn't have a back dialing, meaning it was A who - # started the transfer. That means channel is bridged with B. - old_a_chan = channel - - # Mark the channel as being transferred so we don't send - # hangup notifications for it. - channel.custom['ignore_a_hangup'] = True - - self.on_warm_transfer(target.uniqueid, old_a_chan.uniqueid, - target.callerid, transferred_channel.callerid, c_chan.callerid) - else: - # The redirector doesn't have an audio bridge with the new callee. - # This means the redirector started the transfer before talking to - # the redirection target, which is a blonde transfer. - - if channel.is_called_chan: - # The transferrer was the B side. - old_a_chan = channel.get_dialing_channel() - new_caller = old_a_chan - elif channel.is_calling_chan: - # The transferrer was the A side. - old_a_chan = channel - - # Because the channel is not bridged, figuring out who the - # redirector first talked to is a bit more complicated. - # Fortunately, there should only be one open dial left. - dialed_channels = channel.get_dialed_channels() - assert len(dialed_channels) == 1 - new_caller = list(dialed_channels)[0] - - # Mark the channel as ignored so we don't send another - # hangup notification after the transfer. - channel.custom['ignore_a_hangup'] = True - else: - # This channel doesn't have sides. Probably garbage data. - return - - targets = [c_chan.callerid for c_chan in target.get_dialed_channels()] - self.on_cold_transfer(target.uniqueid, old_a_chan.uniqueid, - target.callerid, new_caller.callerid, target.exten, targets) - - def _raw_blind_transfer(self, channel, target, transfer_exten): - """ - Handle a blind (cold) transfer event. - - This Transfer event is earlier than the dial. We mark it and - wait for the b_dial event. In on_b_dial we send out both the - on_b_dial and the on_transfer. - - Args: - channel (Channel): The channel to be transferred. - target (Channel): The target channel. - transfer_exten (str): The phone number being transferred to. - """ - if channel.is_called_chan: - target.custom['raw_blind_transfer'] = channel - else: - target.custom['raw_blind_transfer'] = channel - - # Mark the original channel as ignored, so we don't report a hangup - # just after the transfer. - channel.custom['ignore_a_hangup'] = True - channel._exten = transfer_exten - - def _raw_call_pickup(self, winner, loser): - """ - Handle a call pickup event. - - Args: - winner (Channel): The channel of the phone picking up. - loser (Channel): The channel of the phone which rang. - """ - # The CLI of winner cannot be set properly. It has dialed in, so - # we have no CLI. Whatever is in there is wrong. Instead, we - # provide the destination details of loser, since that is what's - # used to dial in. - winner._callerid = winner.callerid.replace( - name=loser.callerid.name, - number=loser.callerid.number, - is_public=loser.callerid.is_public - ) - - def _raw_a_up(self, channel): - """ - Handle a ChannelState event where A side comes up. - - Args: - channel (Channel): The relevant A side channel. - """ - channel._side = 'A' - - if channel.is_sip: - a_chan = channel - b_chans = channel.get_dialed_channels() - for b_chan in b_chans: - if b_chan.is_up: - self.on_up(a_chan.uniqueid, a_chan.callerid, a_chan.exten, b_chan.callerid) - - def _raw_b_up(self, channel): - """ - Handle a ChannelState event where B side comes up. - - Args: - channel (Channel): The relevant B side channel. - """ - channel._side = 'B' - - if channel.is_sip: - a_chan = channel.get_dialing_channel() - b_chan = channel - if a_chan.is_up: - if a_chan.is_connectab: - caller, callee = a_chan.connectab_participants() - real_a_chan = a_chan._fwd_local_bridge - real_a_chan._callerid = a_chan.callerid.replace(code=caller.callerid.code) - - self.on_up( - a_chan._fwd_local_bridge.uniqueid, - real_a_chan.callerid, - b_chan.callerid.number, - b_chan.callerid - ) - else: - self.on_up(a_chan.uniqueid, a_chan.callerid, a_chan.exten, b_chan.callerid) - - def _raw_hangup(self, channel, event): - """ - Handle a Hangup event from Asterisk. - - Args: - channel (Channel): The channel which is hung up. - event (Event): The data of the event. - """ - if channel.is_relevant: - a_chan = channel.get_dialing_channel() - - if 'raw_blind_transfer' in channel.custom: - # Panic! This channel had a blind transfer coming up but it's - # being hung up! That probably means the blind transfer target - # could not be reached. - # Ideally, we would simulate a full blind transfer having been - # completed but hanged up with an error. However, no channel - # to the third party has been created. - redirector = channel.custom.pop('raw_blind_transfer') - - if redirector.is_calling_chan: - a_chan = redirector - b_chan = channel - else: - a_chan = channel - b_chan = redirector - - # TODO: Maybe give another status code than 'completed' here? - self.on_a_hangup(a_chan.uniqueid, a_chan.callerid, b_chan.callerid.number, 'completed') - - elif 'ignore_a_hangup' in channel.custom: - # This is a calling channel which performed an attended - # transfer. Because the call has already been "hanged up" - # with the transfer, we shouldn't send a hangup notification. - pass - - elif a_chan.is_connectab: - # A called channel, in connectab both sip channels are 'called'. - caller, callee = channel.connectab_participants() - - if callee.state != AST_STATE_DOWN: - # Depending on who hangs up, we get a different order of events, - # Setting these markers ensures only the first hangup is sent. - callee.custom['ignore_a_hangup'] = True - caller.custom['ignore_a_hangup'] = True - - self.on_a_hangup( - a_chan._fwd_local_bridge.uniqueid, - caller.callerid.replace(number=a_chan.callerid.number), - callee.exten, - self._hangup_reason(callee, event) - ) - - elif channel.is_calling_chan: - # The caller is being disconnected, so we should notify the - # user. - - reason = self._hangup_reason(channel, event) - self.on_a_hangup(channel.uniqueid, channel.callerid, channel.exten, reason) - - # We've sent all relevant notifications regarding the channel - # being gone, so we can forget it ourselves now as well. - - # Disconnect all channels linked to this channel. - channel.do_hangup(event) - - # Remove the channel from our own list. - self._registry.remove(channel) - - # If we don't have any channels, check whether we're completely clean. - if not len(self._registry): - self._reporter.trace_msg('(no channels left)') - - def _hangup_reason(self, channel, event): - """ - Map the Asterisk hangup causes to easy to understand strings. - - Args: - channel (Channel): The channel which is hung up. - event (Event): The data of the event. - """ - hangup_cause = int(event['Cause']) - - # See https://wiki.asterisk.org/wiki/display/AST/Hangup+Cause+Mappings - if hangup_cause == AST_CAUSE_NORMAL_CLEARING: - # If channel is not up, the call never really connected. - # This happens when call confirmation is unsuccessful. - if channel.is_up: - return 'completed' - else: - return 'no-answer' - elif hangup_cause == AST_CAUSE_USER_BUSY: - return 'busy' - elif hangup_cause in (AST_CAUSE_NO_USER_RESPONSE, AST_CAUSE_NO_ANSWER): - return 'no-answer' - elif hangup_cause == AST_CAUSE_ANSWERED_ELSEWHERE: - return 'answered-elsewhere' - elif hangup_cause == AST_CAUSE_CALL_REJECTED: - return 'rejected' - elif hangup_cause == AST_CAUSE_UNKNOWN: - # Sometimes Asterisk doesn't set a proper hangup cause. - # If our a_chan is already up, this probably means the - # call was successful. If not, that means A hanged up, - # which we assign the "cancelled" status. - if channel.is_up: - return 'completed' - else: - return 'cancelled' - else: - return 'failed' - - # =================================================================== - # Actual event handlers you should override - # =================================================================== - - def on_b_dial(self, call_id, caller, to_number, targets): - """ - Gets invoked when the B side of a call is initiated. - - In the common case, calls in Asterisk consist of two sides: A - calls Asterisk and Asterisk calls B. This event is fired when - Asterisk performs the second step. - - Args: - call_id (str): Unique call ID string. - caller (CallerId): The initiator of the call. - to_number (str): The number which was dialed by the user. - targets (list): A list of recipients of the call. - """ - self._reporter.trace_msg('{} ringing: {} --> {} ({})'.format(call_id, caller, to_number, targets)) - self._reporter.on_b_dial(call_id, caller, to_number, targets) - - def on_warm_transfer(self, call_id, merged_id, redirector, caller, destination): - """ - Gets invoked when an attended transfer is completed. - - In an attended transfer, one of the participants of a conversation - calls a third participant, waits for the third party to answer, talks - to the third party and then transfers their original conversation - partner to the third party. - - Args: - call_id (str): The unique ID of the resulting call. - merged_id (str): The unique ID of the call which will end. - redirector (CallerId): The caller ID of the party performing the - transfer. - caller (CallerId): The caller ID of the party which has been - transferred. - destination (CallerId): The caller ID of the party which received the - transfer. - """ - self._reporter.trace_msg( - '{} <== {} attn xfer: {} <--> {} (through {})'.format(call_id, merged_id, caller, destination, redirector), - ) - self._reporter.on_warm_transfer(call_id, merged_id, redirector, caller, destination) - - def on_cold_transfer(self, call_id, merged_id, redirector, caller, to_number, targets): + Returns: + SimpleChannel: A SimpleChannel with the data of this channel. """ - Gets invoked when a blind or blonde transfer is completed. + fields = SimpleChannel._fields - In a blind transfer, one of the call participant transfers their - conversation partner to a third party. However, unlike with an - attended transfer, the redirector doesn't wait for the other end to - pick up, but just punches in the number and sends their conversation - party away. Because of this, multiple phones may actually be addressed - by this transfer, hence the multiple targets. The real participant can - be recovered later on when someone answers the transferred call. + return SimpleChannel( + **{field: getattr(self, field) for field in fields}) - A blonde is a middle road between blind transfers and attended - transfers. With a blond transfer, the redirector requests an attended - transfer but doesn't wait for the receiving end to pick up. Since the - data of blind and blonde transfers looks identical, they don't have - special hooks. - Args: - call_id (str): The unique ID of the resulting call. - merged_id (str): The unique ID of the call which will end. - redirector (CallerId): The caller ID of the party performing the - transfer. - caller (CallerId): The caller ID of the party which has been - transferred. - to_number (str): The number which was dialed by the user. - targets (list): A list of CallerId objects whose phones are - ringing for this transfer. - """ - self._reporter.trace_msg( - '{} <== {} bld xfer: {} <--> {} (through {})'.format(call_id, merged_id, caller, targets, redirector), - ) - self._reporter.on_cold_transfer(call_id, merged_id, redirector, caller, to_number, targets) +class ChannelDict(dict): + """ + ChannelDict is a dict which raises a MissingUniqueid if the key is missing. + """ - def on_user_event(self, event): - """Handle custom UserEvent messages from Asterisk. + def __getitem__(self, item): + try: + return super(ChannelDict, self).__getitem__(item) + except KeyError: + raise MissingUniqueid(item) - Adding user events to a dial plan is a useful way to send additional - information to Cacofonisk. You could add additional user info, - parameters used for processing the events and more. - Args: - event (Message): Dict-like object with all attributes in the event. +class SimpleChannel(namedtuple( + 'SimpleChannelBase', 'name uniqueid linkedid account_code caller_id ' + 'cid_calling_pres connected_line exten state' +)): + def replace(self, **kwargs): """ - self._reporter.trace_msg('user_event: {}'.format(event)) - self._reporter.on_user_event(event) - - def on_up(self, call_id, caller, to_number, callee): - """Gets invoked when a call is connected. - - When two sides have connected and engaged in a conversation, an "up" - event is sent. Usually, this event is sent after a b_dial event - (i.e. a phone is picked up after ringing) but after a blind or blonde - transfer an "up" is sent for the two *remaining* parties. + Make the _replace method public. Args: - call_id (str): Unique call ID string. - caller (CallerId): The initiator of the call. - to_number (str): The number which was dialed by the user. - callee (CallerId): The recipient of the call. - """ - self._reporter.trace_msg('{} up: {} --> {} ({})'.format(call_id, caller, to_number, callee)) - self._reporter.on_up(call_id, caller, to_number, callee) - - def on_a_hangup(self, call_id, caller, to_number, reason): - """Gets invoked when a call is completed. + **kwargs: The fields to replace. - There are two types of events which should be monitored to determine - whether a call has ended: transfer and hangup. A hangup event is - raised when the call is fully disconnected (no parties are connected). - However, after a transfer has completed, the redirector of the - transfer is also disconnected (as they quit the transfer). - - Args: - call_id (str): Unique call ID string. - caller (CallerId): The initiator of the call. - to_number (str): The number which was dialed by the user. - reason (str): Why the call ended (completed, no-answer, busy, - failed, answered-elsewhere). + Returns: + A new instance of SimpleChannel. """ - self._reporter.trace_msg( - '{} hangup: {} --> {} (reason: {})'.format(call_id, caller, to_number, reason) - ) - self._reporter.on_hangup(call_id, caller, to_number, reason) - - -class DebugChannelManager(ChannelManager): - """ - DebugChannel functions exactly like the default class:`ChannelManager`. The - only difference is that this ChannelManager acts on all events, instead of - dropping all events that are deemed 'not interesting'. This is usefull for - creating debug logs. - """ - INTERESTING_EVENTS = ('*',) + return self._replace(**kwargs) diff --git a/cacofonisk/handlers.py b/cacofonisk/handlers.py new file mode 100644 index 0000000..c3674d8 --- /dev/null +++ b/cacofonisk/handlers.py @@ -0,0 +1,844 @@ +import logging + +from .bridge import Bridge, BridgeDict, MissingBridgeUniqueid +from .channel import Channel, ChannelDict, MissingUniqueid +from .constants import (AST_CAUSE_ANSWERED_ELSEWHERE, AST_CAUSE_CALL_REJECTED, + AST_CAUSE_NORMAL_CLEARING, AST_CAUSE_NO_ANSWER, + AST_CAUSE_NO_USER_RESPONSE, AST_CAUSE_UNKNOWN, + AST_CAUSE_USER_BUSY, AST_STATE_DIALING, AST_STATE_DOWN, + AST_STATE_RING, AST_STATE_RINGING, AST_STATE_UP) + + +class EventHandler(object): + """ + The EventHandler translates AMI events to high level call events. + + There are two ways to use EventHandler. + + The simple way to use this method is to pass your own Reporter to it. + The Reporter receives simple, high level hooks about a call. See + BaseReporter for more information about these hooks. + + Alternatively, you can implement your own, more low-level events by + extending EventHandler and overriding one or more of the following methods: + - on_state_change + - on_a_dial + - on_b_dial + - on_bridge_enter + - on_attended_transfer + - on_blind_transfer + - on_blonde_transfer + - on_user_event + - on_hangup + + See the docs about the particular methods for more information about + what they receive and how they work. + """ + FILTER_EVENTS = True + + def __init__(self, reporter, hostname='localhost', logger=None): + """ + Create a EventHandler instance. + + Args: + reporter (Reporter): A reporter to send events to. + """ + self._reporter = reporter + self._channels = ChannelDict() + self._bridges = BridgeDict() + self._logger = logger or logging.getLogger(__name__) + self._hostname = hostname + + @classmethod + def event_handlers(cls): + """ + Get the events we would like to receive, and functions to handle them. + + Returns: + dict: A dict with event names as keys and functions as values. + """ + return { + 'FullyBooted': cls._on_fully_booted, + # Events related to call setup. + 'Newchannel': cls._on_new_channel, + 'Newstate': cls._on_new_state, + 'LocalBridge': cls._on_local_bridge, + 'Hangup': cls._on_hangup, + 'DialBegin': cls._on_dial_begin, + 'DialEnd': cls._on_dial_end, + # Events which change channel vars. + 'NewCallerid': cls._on_new_callerid, + 'NewAccountCode': cls._on_new_accountcode, + 'NewConnectedLine': cls._on_new_connected_line, + # Transfer events. + 'AttendedTransfer': cls._on_attended_transfer, + 'BlindTransfer': cls._on_blind_transfer, + # Bridges and their contents. + 'BridgeCreate': cls._on_bridge_create, + 'BridgeEnter': cls._on_bridge_enter, + 'BridgeLeave': cls._on_bridge_leave, + 'BridgeDestroy': cls._on_bridge_destroy, + # User Events + 'UserEvent': cls.on_user_event, + } + + def on_event(self, event): + """ + Interpret an event, update local state and send notifications. + + This function wraps _on_event to catch exceptions related to missing + channels and bridges, which can happen if the Cacofonisk connects to a + running Asterisk. + + Args: + event (dict): A dictionary containing an AMI event. + """ + try: + handlers = self.event_handlers() + if event['Event'] in handlers and handlers[event['Event']]: + handlers[event['Event']](self, event) + + except MissingUniqueid as e: + # If this is after a recent FullyBooted and/or start of + # self, it is reasonable to expect that certain events will + # fail. + self._logger.warning( + 'Channel with Uniqueid {} not in mem when processing event: ' + '{!r}'.format(e.args[0], event)) + except MissingBridgeUniqueid as e: + # This too is reasonably expected. + self._logger.warning( + 'Bridge with Uniqueid {} not in mem when processing event: ' + '{!r}'.format(e.args[0], event)) + + self._reporter.on_event(event) + + def _on_fully_booted(self, event): + """ + FullyBooted event is sent on successful connection to Asterisk. + + Args: + event (dict): A FullyBooted event. + """ + self._logger.info('Connection established to Asterisk on {}'.format( + self._hostname)) + + if len(self._bridges) > 0: + self._logger.warning('Bridge buffers not empty! Flushing {} ' + 'bridges.'.format(len(self._bridges))) + self._bridges = BridgeDict() + + if len(self._channels) > 0: + self._logger.warning('Channel buffers not empty! Flushing {} ' + 'channels.'.format(len(self._channels))) + self._channels = ChannelDict() + + def _on_new_channel(self, event): + """ + NewChannel event is sent when Asterisk creates a new channel. + + If this event is received, a new Channel will be created and + populated using the data in this event. + + Args: + event (dict): A NewChannel event. + """ + channel = Channel(event) + self._channels[channel.uniqueid] = channel + + def _on_new_state(self, event): + """ + NewState event is sent when the state of a channel changes. + + In the phase where a phone dials, rings and is picked up, + the channel state changes several times. + + Args: + event (dict): A NewState event. + """ + channel = self._channels[event['Uniqueid']] + + old_state = channel.state + channel.state = int(event['ChannelState']) + assert old_state != channel.state + + self.on_state_change(channel, old_state) + + def _on_local_bridge(self, event): + """ + A LocalBridge is sent when two local channels are bridge. + + Asterisk Local Channels always have two semi-channels, identified + with the ;1 and ;2 suffixes. When a call is set up, a LocalBridge is + created to link both semi-channels together. + + Args: + event (dict): A LocalBridge event. + """ + local_one = self._channels[event['LocalOneUniqueid']] + local_two = self._channels[event['LocalTwoUniqueid']] + + assert local_one.fwd_local_bridge is None + assert local_one.back_local_bridge is None + assert local_two.fwd_local_bridge is None + assert local_two.back_local_bridge is None + + local_one.fwd_local_bridge = local_two + local_two.back_local_bridge = local_one + + def _on_hangup(self, event): + """ + A Hangup event is sent when a channel is hung up. + + Args: + event (dict): A Hangup event. + """ + channel = self._channels[event['Uniqueid']] + + self.on_hangup(channel, event) + + # Disconnect all channels linked to this channel. + if channel.fwd_local_bridge: + channel.fwd_local_bridge.back_local_bridge = None + + if channel.back_local_bridge: + channel.back_local_bridge.fwd_local_bridge = None + + # Remove the channel from our own list. + del self._channels[channel.uniqueid] + + # If we don't have any channels, check if we're completely clean. + if not len(self._channels): + self._logger.info('(no channels left)') + + def _on_dial_begin(self, event): + """ + A DialBegin event is sent when a dial is created between two channels. + + Dials are created to connect channels during the call setup phase. + In a simple call scenario, you'd see two dials being created: a dial + from the calling SIP channel to Local channel semi one, and from + Local channel semi two to the target SIP channel. The Local semi + channels are connected using a LocalBridge. By tracing the dials and + local bridges, it's possible to follow the relation between a + calling channel and it's targets. + + Args: + event (dict): A DialBegin event. + """ + # Check if we have a source and destination channel to glue + # together. Originate creates Dials without source. + if 'Uniqueid' in event and 'DestUniqueid' in event: + channel = self._channels[event['Uniqueid']] + destination = self._channels[event['DestUniqueid']] + channel.is_calling = True + + # Verify target is not being dialed already. + assert not destination.back_dial + + # _fwd_dials is a list of channels being dialed by A. + channel.fwd_dials.append(destination) + + # _back_dial is the channel dialing B. + destination.back_dial = channel + else: + destination = self._channels[event['DestUniqueid']] + destination.is_originated = True + + def _on_dial_end(self, event): + """ + DialEnd event is sent when a dial is disconnected between two channels. + + When a call is answered (picked up) or hung up (without being picked + up), the dial between two channels is ended. After a DialEnd, you will + either see multiple Hangup events, or see bridges being set up to + connect the Channels. + + Args: + event (dict): A DialEnd event. + """ + # Check if we have a source and destination channel to pull + # apart. Originate creates Dials without source. + if 'Uniqueid' in event and 'DestUniqueid' in event: + channel = self._channels[event['Uniqueid']] + destination = self._channels[event['DestUniqueid']] + + destination.back_dial = None + + if destination in channel.fwd_dials: + channel.fwd_dials.remove(destination) + + def _on_attended_transfer(self, event): + """ + An AttendedTransfer event is sent after attended and blonde transfers. + + Args: + event (dict): An AttendedTransfer event. + """ + orig_transferer = self._channels[event['OrigTransfererUniqueid']] + second_transferer = self._channels[ + event['SecondTransfererUniqueid']] + + if event['DestType'] == 'Bridge': + self.on_attended_transfer( + orig_transferer, second_transferer, event) + elif event['DestType'] == 'App' and event['DestApp'] == 'Dial': + self.on_blonde_transfer( + orig_transferer, second_transferer, event) + else: + raise NotImplementedError(event) + + def _on_blind_transfer(self, event): + """ + A BlindTransfer event is sent after blind transfers. + + Args: + event (dict): A BlindTransfer event. + """ + transferer = self._channels[event['TransfererUniqueid']] + transferee = self._channels[event['TransfereeUniqueid']] + + self.on_blind_transfer(transferer, transferee, event) + + def _on_bridge_create(self, event): + """ + A BridgeCreate event is sent when Asterisk creates a new bridge. + + Args: + event (dict): A BridgeCreate event. + """ + assert event['BridgeUniqueid'] not in self._bridges + bridge = Bridge(event) + self._bridges[bridge.uniqueid] = bridge + + def _on_bridge_enter(self, event): + """ + A BridgeEnter event is sent when a channel joins a bridge. + + Args: + event (dict): A BridgeEnter event. + """ + channel = self._channels[event['Uniqueid']] + bridge = self._bridges[event['BridgeUniqueid']] + + bridge.peers.add(channel) + channel.bridge = bridge + + self.on_bridge_enter(channel, bridge) + + def _on_bridge_leave(self, event): + """ + A BridgeLeave event is sent when a channel is removed from a bridge. + + Args: + event (dict): A BridgeLeave event. + """ + channel = self._channels[event['Uniqueid']] + bridge = self._bridges[event['BridgeUniqueid']] + + bridge.peers.remove(channel) + channel.bridge = None + + def _on_bridge_destroy(self, event): + """ + A BridgeDestroy event is sent when a bridge is removed by Asterisk. + + Args: + event (dict): A BridgeDestroy event. + """ + assert len(self._bridges[event['BridgeUniqueid']]) is 0 + del self._bridges[event['BridgeUniqueid']] + + def _on_new_callerid(self, event): + """ + A NewCallerid event is sent when the CallerID of a channel changes. + + Args: + event (dict): A NewCallerid event. + """ + channel = self._channels[event['Uniqueid']] + + channel.caller_id = channel.caller_id.replace( + name=event['CallerIDName'], + num=event['CallerIDNum'], + ) + channel.cid_calling_pres = event['CID-CallingPres'] + + def _on_new_connected_line(self, event): + """ + A NewConnectedLine event is sent when the ConnectedLine changes. + + Args: + event (dict): A NewConnectedLine event. + """ + channel = self._channels[event['Uniqueid']] + + channel.connected_line = channel.connected_line.replace( + name=event['ConnectedLineName'], + num=event['ConnectedLineNum'], + ) + + def _on_new_accountcode(self, event): + """ + A NewAccountCode is sent when the AccountCode of a channel changes. + + Args: + event (dict): A NewAccountCode event. + """ + channel = self._channels[event['Uniqueid']] + + channel.account_code = event['AccountCode'] + + # =================================================================== + # Actual event handlers you can override + # =================================================================== + + def on_state_change(self, channel, old_state): + """ + Handle the change of a ChannelState. + + If the status goes from DOWN to RING or UP, then it means the calling + party hears a dialing tone. If the status goes from DOWN to RINGING + or UP, then it means the phone of a called party is starting to ring. + + Args: + channel (Channel): The channel being changed. + old_state (int): The state before the state change. + """ + if channel.is_local: + return + + new_state = channel.state + + if old_state == AST_STATE_DOWN: + if new_state in (AST_STATE_DIALING, AST_STATE_RING, AST_STATE_UP): + self.on_a_dial(channel) + elif new_state == AST_STATE_RINGING: + self.on_b_dial(channel) + + def on_a_dial(self, channel): + """ + Handle the event where the caller phone hears the ring tone. + + We don't want this. It's work to get all the values right, and + when we do, this would look just like on_b_dial. + + Args: + channel (Channel): + """ + pass + + def on_b_dial(self, channel): + """ + Handle the event where a callee phone starts to ring. + + Args: + channel (Channel): The channel of the B side. + """ + if 'ignore_b_dial' in channel.custom: + # Notifications were already sent for this channel. + # Unset the flag and move on. + del (channel.custom['ignore_b_dial']) + return + + a_chan = channel.get_dialing_channel() + + if 'raw_blind_transfer' in a_chan.custom: + # This is an interesting exception: we got a Blind Transfer + # message earlier and recorded it in this attribute. We'll + # translate this b_dial to first a on_b_dial and then the + # on_transfer event. + transferer = a_chan.custom.pop('raw_blind_transfer') + + target_chans = a_chan.get_dialed_channels() + + for target in target_chans: + # To prevent notifications from being sent multiple times, + # we set a flag on all other channels except for the one + # starting to ring right now. + if target != channel: + target.custom['ignore_b_dial'] = True + + self._reporter.on_blind_transfer( + caller=a_chan.as_namedtuple(), + transferer=transferer.as_namedtuple(), + targets=[chan.as_namedtuple() for chan in target_chans], + ) + elif ( + a_chan.is_originated and + a_chan.fwd_dials and a_chan.fwd_local_bridge + ): + # Calls setup through Originate are harder to track. + # The Channel passed to the Originate has two semis. The Context + # channel is called first, and when it's up, put in a bridge + # with semi 2. Next, semi 1 will dial out to the other party. + + # To make it look like a normal call, we will show the call from + # the Context as the calling party and the call from Channel as + # the called party. + originating_chan = a_chan + a_bridge = originating_chan.fwd_local_bridge.bridge + a_chan = [peer for peer in a_bridge.peers + if not peer.is_local][0] + + if not a_chan.is_local: + called_exten = originating_chan.fwd_dials[0].exten + a_chan.exten = called_exten + a_chan.is_calling = True + + self._reporter.on_b_dial( + caller=a_chan.as_namedtuple(), + targets=[channel.as_namedtuple()], + ) + elif not a_chan.is_local: + # We'll want to send one ringing event for all targets, so send + # one notification and mark the rest as already notified. + open_dials = a_chan.get_dialed_channels() + targets = [dial.as_namedtuple() for dial in open_dials] + + self._reporter.on_b_dial( + caller=a_chan.as_namedtuple(), + targets=targets, + ) + + for b_chan in open_dials: + if b_chan != channel: + # To prevent notifications from being sent multiple + # times, we set a flag on all other channels except + # for the one starting to ring right now. + b_chan.custom['ignore_b_dial'] = True + + def on_bridge_enter(self, channel, bridge): + """ + Post-process a BridgeEnter event to notify of a call in progress. + + This function will check if the bridge already contains other SIP + channels. If so, it's interpreted as a call between two channels + being connected. + + WARNING: This function does not behave as desired for + bridges with 3+ parties, e.g. conference calls. + + Args: + channel (Channel): The channel entering the bridge. + bridge (Bridge): The bridge the channel enters. + """ + sip_peers = channel.get_bridge_peers_recursive() + + if len(sip_peers) < 2: + # There are not enough interesting channels to form a call. + return + + callers = set([peer for peer in sip_peers if peer.is_calling]) + targets = sip_peers - callers + + if len(callers) > 1: + # Hmm, we have multiple callers. This can happen on an + # AB-CB-AC transfer. Let's do something ugly. + + # Our oldest caller is going to be the new caller. + sorted_callers = sorted( + callers, key=lambda chan: chan.name.rsplit('-', 1)[1]) + caller = sorted_callers.pop(0) + + # The rest are will be marked as targets. + for non_caller in sorted_callers: + targets.add(non_caller) + elif len(callers) < 1: + # A call should always have a caller. + self._logger.error('Call {} has too few callers: {}'.format( + channel.linkedid, len(callers))) + return + else: + caller = next(iter(callers)) + + if len(targets) != 1: + # This can happen with a conference call, but is not supported. + self._logger.warning('Call {} has {} targets.'.format( + channel.linkedid, len(targets))) + return + else: + target = next(iter(targets)) + + # Check and set a flag to prevent the event from being fired again. + if 'is_picked_up' not in caller.custom: + caller.custom['is_picked_up'] = True + + self._reporter.on_up( + caller=caller.as_namedtuple(), + target=target.as_namedtuple(), + ) + + def on_attended_transfer(self, orig_transferer, second_transferer, event): + """ + Gets invoked when an attended transfer is completed. + + In an attended transfer, one of the participants of a conversation + calls a third participant, waits for the third party to answer, talks + to the third party and then transfers their original conversation + partner to the third party. + + Args: + orig_transferer (Channel): The original channel is the channel + which the redirector used to talk with the person who's being + transferred. + second_transferer (Channel): The target channel is the channel + which the redirector used to set up the call to the person to + whom the call is being transferred. + event (dict): The data of the AttendedTransfer event. + """ + if 'TransfereeUniqueid' in event and 'TransferTargetUniqueid' in event: + # Nice, Asterisk just told us who the transferee and transfer + # target are. Let's just do what Asterisk says. + transferee = self._channels[event['TransfereeUniqueid']] + target = self._channels[event['TransferTargetUniqueid']] + else: + # Ouch, Asterisk didn't tell us who is the transferee and who is + # the target, which means we need to figure it out ourselves. + + # We can find both channels in the Destination Bridge. + target_bridge = self._bridges[event['DestBridgeUniqueid']] + + if len(target_bridge) < 2: + self._logger.error( + 'Attn Xfer DestBridge does not have enough peers for ' + 'event: {!r}'.format(event)) + return + + peer_one, peer_two = target_bridge.peers + + # The next challenge now is to figure out which channel is the + # transferee and which one is the target.. + if peer_one.linkedid == event['OrigTransfererLinkedid']: + # Peer one has the same linkedid as the call before the + # transfer, so it must be the transferee. + transferee = peer_one + target = peer_two + elif peer_two.linkedid == event['OrigTransfererLinkedid']: + transferee = peer_two + target = peer_one + else: + raise NotImplementedError( + 'Could not determine caller and target after attended ' + 'transfer - OrigTransfererLinkedid not found. ' + 'OrigTransferer: {}. SecondTransferer: {}. Peers: {}. ' + 'Event: {}.'.format( + orig_transferer, second_transferer, + target_bridge.peers, event, + ) + ) + + # After a transfer without optimized channels, the transferee may be a + # local channel. If so, we need to find out the real SIP channel the + # transferee represents. + sip_transferee = transferee + if sip_transferee.is_local: + sip_peers = transferee.get_bridge_peers_recursive() + + for peer in sip_peers: + if peer not in (target, second_transferer, orig_transferer): + sip_transferee = peer + + sip_transferee.is_calling = True + if not sip_transferee.has_extension: + # transferee becomes the new caller, so it should have a valid + # extension. We can use set it to one of the transfer extensions. + if event['OrigTransfererExten']: + sip_transferee.exten = event['OrigTransfererExten'] + else: + sip_transferee.exten = event['SecondTransfererExten'] + + # In some transfer scenarios, a caller can become a target. Because + # of that, we need to make sure the target is not marked as calling. + target.is_calling = False + + self._reporter.on_attended_transfer( + caller=sip_transferee.as_namedtuple(), + transferer=second_transferer.as_namedtuple(), + target=target.as_namedtuple(), + ) + + # Prevent a hangup event from being fired for the transfer channels. + orig_transferer.custom['ignore_a_hangup'] = True + second_transferer.custom['ignore_a_hangup'] = True + + def on_blind_transfer(self, transferer, transferee, event): + """ + Handle a blind (cold) transfer event. + + In a blind transfer, one of the call participant transfers their + conversation partner to a third party. However, unlike with an + attended transfer, the redirector doesn't wait for the other end to + pick up, but just punches in the number and sends their conversation + party away. Because of this, multiple phones may actually be addressed + by this transfer, hence the multiple targets. The real participant can + be recovered later on when someone answers the transferred call. + + This Transfer event is earlier than the dial. We mark it and + wait for the b_dial event. In on_b_dial we send out both the + on_b_dial and the on_transfer. + + Args: + transferer (Channel): The channel referring to another extension. + transferee (Channel): The channel being referred. + event (dict): The data of the BlindTransfer event. + """ + transferee.custom['raw_blind_transfer'] = transferer + + # Remove the is_picked_up flag so we can figure a new in-progress + # event when the transfer target picks up. + try: + del transferee.custom['is_picked_up'] + except KeyError: + pass + + # Prevent a hangup event from being fired for the transfer channels. + transferer.custom['ignore_a_hangup'] = True + + # Make it look like the transferee is calling the transfer extension. + transferee.is_calling = True + + if not transferee.has_extension: + transferee.exten = event['Extension'] + + if not transferer.has_extension: + transferer.exten = event['Extension'] + + def on_blonde_transfer(self, orig_transferer, second_transferer, event): + """ + Handle the AttendedTransfer event for a blonde transfer. + + A blonde is a middle road between blind transfers and attended + transfers. With a blond transfer, the redirector requests an attended + transfer but doesn't wait for the receiving end to pick up. Since the + data of blind and blonde transfers looks identical, they don't have + special hooks. + + Args: + orig_transferer (Channel): The original channel is the channel + which the redirector used to talk with the person who's being + transferred. + second_transferer (Channel): The target channel is the channel + which the redirector used to set up the call to the person to + whom the call is being transferred. + event (dict): The AttendedTransfer event. + """ + transferee = self._channels[event['TransfereeUniqueid']] + + # Remove the is_picked_up flag so we can figure a new in-progress + # event when the transfer target picks up. + try: + del transferee.custom['is_picked_up'] + except KeyError: + pass + + # Make it look like the transferee is calling the transfer extension. + transferee.is_calling = True + if not transferee.has_extension: + transferee.exten = second_transferer.exten + + targets = [c_chan.as_namedtuple() for c_chan + in second_transferer.get_dialed_channels()] + + self._reporter.on_blonde_transfer( + caller=transferee.as_namedtuple(), + transferer=second_transferer.as_namedtuple(), + targets=targets, + ) + + # Prevent a hangup event from being fired for the transfer channels. + orig_transferer.custom['ignore_a_hangup'] = True + second_transferer.custom['ignore_a_hangup'] = True + + def on_user_event(self, event): + """ + Handle custom UserEvent messages from Asterisk. + + Adding user events to a dial plan is a useful way to send additional + information to Cacofonisk. You could add additional user info, + parameters used for processing the events and more. + + Args: + event (dict): Dict-like object with all attributes of the event. + """ + self._reporter.on_user_event(event) + + def on_hangup(self, channel, event): + """ + Process the channel just before it is hung up. + + Args: + channel (Channel): The channel being disconnected. + event (dict): The Hangup event data. + """ + if channel.is_local: + return + + if 'raw_blind_transfer' in channel.custom: + # Panic! This channel had a blind transfer coming up but it's + # being hung up! That probably means the blind transfer target + # could not be reached. + # Ideally, we would simulate a full blind transfer having been + # completed but hung up with an error. However, no channel + # to the third party has been created. + redirector = channel.custom.pop('raw_blind_transfer') + + a_chan = redirector if redirector.is_calling else channel + + # TODO: Maybe give another status code than 'completed' here? + self._reporter.on_hangup( + caller=a_chan.as_namedtuple(), + reason='completed', + ) + + elif 'ignore_a_hangup' in channel.custom: + # This is a calling channel which performed an attended + # transfer. Because the call has already been "hung up" + # with the transfer, we shouldn't send a hangup notification. + pass + + elif channel.is_calling: + # The caller is being disconnected, so we should notify the + # user. + self._reporter.on_hangup( + caller=channel.as_namedtuple(), + reason=self._hangup_reason(channel, event), + ) + + def _hangup_reason(self, channel, event): + """ + Map the Asterisk hangup causes to easy to understand strings. + + Args: + channel (Channel): The channel which is hung up. + event (Event): The data of the event. + """ + hangup_cause = int(event['Cause']) + + # See https://wiki.asterisk.org/wiki/display/AST/Hangup+Cause+Mappings + if hangup_cause == AST_CAUSE_NORMAL_CLEARING: + # If channel is not up, the call never really connected. + # This happens when call confirmation is unsuccessful. + if channel.state == AST_STATE_UP: + return 'completed' + else: + return 'no-answer' + elif hangup_cause == AST_CAUSE_USER_BUSY: + return 'busy' + elif hangup_cause in (AST_CAUSE_NO_USER_RESPONSE, AST_CAUSE_NO_ANSWER): + return 'no-answer' + elif hangup_cause == AST_CAUSE_ANSWERED_ELSEWHERE: + return 'answered-elsewhere' + elif hangup_cause == AST_CAUSE_CALL_REJECTED: + return 'rejected' + elif hangup_cause == AST_CAUSE_UNKNOWN: + # Sometimes Asterisk doesn't set a proper hangup cause. + # If our a_chan is already up, this probably means the + # call was successful. If not, that means the caller hung up, + # which we assign the "cancelled" status. + if channel.state == AST_STATE_UP: + return 'completed' + else: + return 'cancelled' + else: + return 'failed' diff --git a/cacofonisk/reporters.py b/cacofonisk/reporters.py new file mode 100644 index 0000000..85b1d25 --- /dev/null +++ b/cacofonisk/reporters.py @@ -0,0 +1,333 @@ +import logging + + +class BaseReporter(object): + def close(self): + """ + Called on end, so any buffered output can be flushed. + """ + pass + + def on_event(self, event): + """ + Called after the regular even processing has been done. + + Useful when custom event processing is required in addition to + regular event processing. + + Args: + event (Message): Dict-like object with all attributes in the event. + """ + pass + + def on_b_dial(self, caller, targets): + """ + Gets invoked when the B side of a call is initiated. + + In the common case, calls in Asterisk consist of two sides: A calls + Asterisk and Asterisk calls B. This event is fired when Asterisk + performs the second step. + + Args: + caller (SimpleChannel): The initiator of the call. + targets (list): The recipients of the call. + """ + pass + + def on_up(self, caller, target): + """ + Track when a call has been set up between two parties. + + In simple calls, a "up" event is raised when a call has been ringing + and it has been answered. Additionally, around the transfer of a call + a new "up" event is raised as well not notify who are still calling. + + Args: + caller (SimpleChannel): The initiator of the call. + target (SimpleChannel): The recipient of the call. + """ + pass + + def on_attended_transfer(self, caller, transferer, target): + """ + Gets invoked when an attended transfer is completed. + + In an attended transfer, one of the participants of a conversation + calls a third participant, waits for the third party to answer, talks + to the third party and then transfers their original conversation + partner to the third party. + + Args: + caller (SimpleChannel): The party which has been transferred. + transferer (SimpleChannel): The party who initiated the transfer. + target (SimpleChannel): The party which received the transfer. + """ + pass + + def on_blonde_transfer(self, caller, transferer, targets): + """ + Gets invoked when a blonde transfer is completed. + + A blonde transfer is a transfer which is started like an attended + transfer, but the transferer steps out of the call before it is + picked up. + + Args: + caller (SimpleChannel): The party being transferred. + transferer (SimpleChannel): The party initiating the transfer. + targets (list): The channels being dialed. + """ + pass + + def on_blind_transfer(self, caller, transferer, targets): + """ + Gets invoked when a blind transfer is completed. + + A blind transfer is transfer where the transferer tells Asterisk to + refer the call to another number and immediately ends the call. No + b_dial is triggered before the transfer is completed. + + Args: + caller (SimpleChannel): The party being transferred. + transferer (SimpleChannel): The party initiating the transfer. + targets (list): The channels being dialed. + """ + pass + + def on_user_event(self, event): + """ + Handle custom UserEvent messages from Asterisk. + + Adding user events to a dial plan is a useful way to send additional + information to Cacofonisk. You could add additional user info, + parameters used for processing the events and more. + + Args: + event (Message): Dict-like object with all attributes in the event. + """ + pass + + def on_hangup(self, caller, reason): + """ + Track when a call ends for a caller. + + Args: + caller (SimpleChannel): The initiator of the call. + reason (str): A textual reason as to why the call was ended. + """ + pass + + +class LoggingReporter(BaseReporter): + """ + LoggingReporter is a simple base reporter which logs all calls to the + provided Logger instance. + """ + def __init__(self, logger=None): + """ + Create a logger for this reporter. + + Args: + logger (Logger): An optional logger instance. + """ + self._logger = logger or logging.getLogger(__name__) + + def close(self): + """ + Called on end, so any buffered output can be flushed. + """ + pass + + def on_event(self, event): + """ + Called after the regular even processing has been done. + + Useful when custom event processing is required in addition to + regular event processing. + + Args: + event (Message): Dict-like object with all attributes in the event. + """ + pass + + def on_b_dial(self, caller, targets): + """ + Gets invoked when the B side of a call is initiated. + + In the common case, calls in Asterisk consist of two sides: A calls + Asterisk and Asterisk calls B. This event is fired when Asterisk + performs the second step. + + Args: + caller (SimpleChannel): The initiator of the call. + targets (list): The recipients of the call. + """ + self._logger.info('{} ringing: {} --> {} ({})'.format( + caller.linkedid, caller, caller.exten, targets)) + + def on_up(self, caller, target): + """ + Track when a call has been set up between two parties. + + In simple calls, a "up" event is raised when a call has been ringing + and it has been answered. Additionally, around the transfer of a call + a new "up" event is raised as well not notify who are still calling. + + Args: + caller (SimpleChannel): The initiator of the call. + target (SimpleChannel): The recipient of the call. + """ + self._logger.info('{} up: {} --> {} ({})'.format( + caller.linkedid, caller, caller.exten, target)) + + def on_attended_transfer(self, caller, transferer, target): + """ + Gets invoked when an attended transfer is completed. + + In an attended transfer, one of the participants of a conversation + calls a third participant, waits for the third party to answer, talks + to the third party and then transfers their original conversation + partner to the third party. + + Args: + caller (SimpleChannel): The party which has been transferred. + transferer (SimpleChannel): The party who initiated the transfer. + target (SimpleChannel): The party which received the transfer. + """ + self._logger.info( + '{} <== {} attn xfer: {} <--> {} (through {})'.format( + caller.linkedid, transferer.linkedid, + caller, target, transferer)) + + def on_blonde_transfer(self, caller, transferer, targets): + """ + Gets invoked when a blonde transfer is completed. + + A blonde transfer is a transfer which is started like an attended + transfer, but the transferer steps out of the call before it is + picked up. + + Args: + caller (SimpleChannel): The party being transferred. + transferer (SimpleChannel): The party initiating the transfer. + targets (list): The channels being dialed. + """ + self._logger.info( + '{} <== {} blonde xfer: {} <--> {} (through {})'.format( + caller.linkedid, transferer.linkedid, caller, targets, + transferer)) + + def on_blind_transfer(self, caller, transferer, targets): + """ + Gets invoked when a blind transfer is completed. + + A blind transfer is transfer where the transferer tells Asterisk to + refer the call to another number and immediately ends the call. No + b_dial is triggered before the transfer is completed. + + Args: + caller (SimpleChannel): The party being transferred. + transferer (SimpleChannel): The party initiating the transfer. + targets (list): The channels being dialed. + """ + self._logger.info('{} bld xfer: {} <--> {} (through {})'.format( + caller.linkedid, caller, targets, transferer)) + + def on_user_event(self, event): + """ + Handle custom UserEvent messages from Asterisk. + + Adding user events to a dial plan is a useful way to send additional + information to Cacofonisk. You could add additional user info, + parameters used for processing the events and more. + + Args: + event (Message): Dict-like object with all attributes in the event. + """ + self._logger.info('{} user_event: {}'.format(event['Linkedid'], event)) + + def on_hangup(self, caller, reason): + """ + Track when a call ends for a caller. + + Args: + caller (SimpleChannel): The initiator of the call. + reason (str): A textual reason as to why the call was ended. + """ + self._logger.info('{} hangup: {} --> {} (reason: {})'.format( + caller.linkedid, caller, caller.exten, reason)) + + +class MultiReporter(LoggingReporter): + """ + MultiReporter is a reporter which combines multiple reporters and + forwards received events to all of them. + """ + def __init__(self, reporters, logger=None): + """ + Create a multi reporter with the given reporters. + + Args: + reporters (list): An iterable with reporters. + logger (Logger): Not used. + """ + super(MultiReporter, self).__init__(logger=logger) + + self.reporters = reporters + + def close(self): + super(MultiReporter, self).close() + + for reporter in self.reporters: + reporter.close() + + def on_event(self, event): + super(MultiReporter, self).on_event(event) + + for reporter in self.reporters: + reporter.on_event(event) + + def on_user_event(self, event): + super(MultiReporter, self).on_user_event(event) + + for reporter in self.reporters: + reporter.on_user_event(event) + + def on_b_dial(self, caller, targets): + super(MultiReporter, self).on_b_dial(caller, targets) + + for reporter in self.reporters: + reporter.on_b_dial(caller, targets) + + def on_up(self, caller, target): + super(MultiReporter, self).on_up(caller, target) + + for reporter in self.reporters: + reporter.on_up(caller, target) + + def on_attended_transfer(self, caller, transferer, target): + super(MultiReporter, self).on_attended_transfer( + caller, transferer, target) + + for reporter in self.reporters: + reporter.on_attended_transfer(caller, transferer, target) + + def on_blonde_transfer(self, caller, transferer, targets): + super(MultiReporter, self).on_blonde_transfer( + caller, transferer, targets) + + for reporter in self.reporters: + reporter.on_blonde_transfer(caller, transferer, targets) + + def on_blind_transfer(self, caller, transferer, targets): + super(MultiReporter, self).on_blind_transfer( + caller, transferer, targets) + + for reporter in self.reporters: + reporter.on_blind_transfer(caller, transferer, targets) + + def on_hangup(self, caller, reason): + super(MultiReporter, self).on_hangup(caller, reason) + + for reporter in self.reporters: + reporter.on_hangup(caller, reason) diff --git a/cacofonisk/reporters/__init__.py b/cacofonisk/reporters/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/cacofonisk/reporters/base_reporter.py b/cacofonisk/reporters/base_reporter.py deleted file mode 100644 index 5b6f8de..0000000 --- a/cacofonisk/reporters/base_reporter.py +++ /dev/null @@ -1,143 +0,0 @@ -class BaseReporter(object): - """ - BaseReporter is a skeleton baseclass for any Reporter classes. The methods - can be overwritten. See class:`ChannelManager` to see where these methods - are called. - """ - def trace_ami(self, event): - """Log the full AMI event before it's being processed. - - Args: - event (Message): Dict-like object with all attributes in the event. - """ - pass - - def trace_msg(self, msg): - """Log a diagnostic message before calling one of the events below. - - Args: - msg (str): A log string. - """ - pass - - def close(self): - """Called on end, so any buffered output can be flushed.""" - pass - - def on_event(self, event): - """Called after the regular even processing has been done. - - Useful when custom event processing is required in addition to - regular event processing. - - Args: - event (Message): Dict-like object with all attributes in the event. - """ - pass - - def on_warm_transfer(self, call_id, merged_id, redirector, caller, destination): - """ - Gets invoked when an attended transfer is completed. - - In an attended transfer, one of the participants of a conversation - calls a third participant, waits for the third party to answer, talks - to the third party and then transfers their original conversation - partner to the third party. - - Args: - call_id (str): The unique ID of the resulting call. - merged_id (str): The unique ID of the call which will end. - redirector (CallerId): The caller ID of the party performing the - transfer. - caller (CallerId): The caller ID of the party which has been - transferred. - destination (CallerId): The caller ID of the party which received the - transfer. - """ - pass - - def on_cold_transfer(self, call_id, merged_id, redirector, caller, to_number, targets): - """ - Gets invoked when a blind or blonde transfer is completed. - - In a blind transfer, one of the call participant transfers their - conversation partner to a third party. However, unlike with an - attended transfer, the redirector doesn't wait for the other end to - pick up, but just punches in the number and sends their conversation - party away. Because of this, multiple phones may actually be addressed - by this transfer, hence the multiple targets. The real participant can - be recovered later on when someone answers the transferred call. - - A blonde is a middle road between blind transfers and attended - transfers. With a blond transfer, the redirector requests an attended - transfer but doesn't wait for the receiving end to pick up. Since the - data of blind and blonde transfers looks identical, they don't have - special hooks. - - Args: - call_id (str): The unique ID of the resulting call. - merged_id (str): The unique ID of the call which will end. - redirector (CallerId): The caller ID of the party performing the - transfer. - caller (CallerId): The caller ID of the party which has been - transferred. - to_number (str): The number being dialed by the caller. - targets (list): A list of CallerId objects whose phones are - ringing for this transfer. - """ - pass - - def on_b_dial(self, call_id, caller, to_number, targets): - """ - Gets invoked when the B side of a call is initiated. - - In the common case, calls in Asterisk consist of two sides: A - calls Asterisk and Asterisk calls B. This event is fired when - Asterisk performs the second step. - - Args: - call_id (str): A unique identifier of the call. - caller (CallerId): The initiator of the call. - to_number (str): The number being dialed by the caller. - targets (list): The recipients of the call. - """ - pass - - def on_user_event(self, event): - """Handle custom UserEvent messages from Asterisk. - - Adding user events to a dial plan is a useful way to send additional - information to Cacofonisk. You could add additional user info, - parameters used for processing the events and more. - - Args: - event (Message): Dict-like object with all attributes in the event. - """ - pass - - def on_up(self, call_id, caller, to_number, callee): - """Track when a call has been set up between two parties. - - In simple calls, a "up" event is raised when a call has been ringing - and it has been answered. Additionally, around the transfer of a call - a new "up" event is raised as well not notify who are still calling. - - Args: - call_id (str): A unique identifier of the call. - caller (CallerId): The initiator of the call. - to_number (str): The number being dialed by the caller. - callee (CallerId): The recipient of the call. - """ - pass - - def on_hangup(self, call_id, caller, to_number, reason): - """ - Track when a call ends for a caller. - - Args: - call_id (str): A unique identifier of the call. - caller (CallerId): The initiator of the call. - to_number (str): The number being dialed by the caller. - reason (str): A textual reason as to why the call was ended. - """ - pass diff --git a/cacofonisk/reporters/debug_reporter.py b/cacofonisk/reporters/debug_reporter.py deleted file mode 100644 index d86db51..0000000 --- a/cacofonisk/reporters/debug_reporter.py +++ /dev/null @@ -1,16 +0,0 @@ -import sys - -from datetime import datetime - -from .base_reporter import BaseReporter - - -class DebugReporter(BaseReporter): - """ - Reporter that logs all trace_msg messages to stdout. - """ - def trace_msg(self, msg): - sys.stdout.write('{}: {}\n'.format( - datetime.now().strftime('%Y-%m-%d %H:%M:%S.%f'), - msg)) - sys.stdout.flush() diff --git a/cacofonisk/reporters/json_reporter.py b/cacofonisk/reporters/json_reporter.py deleted file mode 100644 index e6fd951..0000000 --- a/cacofonisk/reporters/json_reporter.py +++ /dev/null @@ -1,45 +0,0 @@ -import json -import sys - -from .base_reporter import BaseReporter - - -class JsonReporter(BaseReporter): - """ - Reporter that writes (overwrites!) all received AMI events to the file - specified at path. - - Usage: - reporter = JsonReporter('path/to/file.json') - """ - def __init__(self, path='test.json', *args, **kwargs): - self.path = path - - def trace_ami(self, event): - """ - Write AMI events to a file in a json format. If the file does not - exist. Create it with one opening bracket, and start writing events in - the form of one dictionary per event. - """ - if not hasattr(self, '_trace_ami_fp'): - self._trace_ami_fp = open(self.path, 'w') - self._trace_ami_fp.write('[') - self._trace_ami_count = 0 - comma = ',' if self._trace_ami_count else '' - self._trace_ami_fp.write('{}\n {}'.format( - comma, json.dumps(dict(event)))) - self._trace_ami_count += 1 - sys.stderr.write('{} written\r'.format(self._trace_ami_count)) - - def close(self): - """ - Close the file at ``self.path`` by writing a closing bracket ']' tothe - end of the file. - """ - if hasattr(self, '_trace_ami_fp'): - self._trace_ami_fp.write('\n]\n') - self._trace_ami_fp.close() - print('Wrote {} AMI events to: {}'.format( - self._trace_ami_count, self._trace_ami_fp.name)) - del self._trace_ami_count - del self._trace_ami_fp diff --git a/cacofonisk/runners/ami_runner.py b/cacofonisk/runners/ami_runner.py index 2d874b9..90cb291 100644 --- a/cacofonisk/runners/ami_runner.py +++ b/cacofonisk/runners/ami_runner.py @@ -1,79 +1,91 @@ import asyncio import logging -import signal import sys +from urllib.parse import urlparse from panoramisk import Manager +import signal -from ..channel import ChannelManager +from ..handlers import EventHandler class AmiRunner(object): """ A Runner which reads Asterisk AMI events and passes them to a - ChannelManager instance. + EventHandler instance. """ - def __init__(self, amihosts, reporter, channel_manager=ChannelManager, logger=None): + def __init__(self, asterisk_uris, reporter, handler=EventHandler, + logger=None): """ + Create and initialize a new AmiRunner. + Args: - amihosts [dict]: A list of dictionaries. + asterisk_uris (list): A list of URIs with AMI host information. + reporter (Reporter): A reporter which should receive notifications. + handler (class): The EventHandler class for this runner. + logger (Logger): The log handler for the runner. """ - self.amihosts = amihosts + self.asterisks = asterisk_uris self.reporter = reporter - self.channel_manager = channel_manager + self.event_handler = handler self.loop = asyncio.get_event_loop() - self.logger = logger if logger is not None else logging.getLogger(__name__) + self.logger = logger or logging.getLogger(__name__) + + self.ami_managers = {} def attach_all(self): """ - attach_all attaches a channelmanager to all amihosts defined in - self.amihosts by calling meth:`attach` on all of them. + Connect to all Asterisks """ - assert not hasattr(self, 'amimgrs') - assert not hasattr(self, 'channel_managers') - self.amimgrs = {} + for asterisk in self.asterisks: + self.attach(asterisk) - for amihost in self.amihosts: - self.attach(amihost) - - def attach(self, amihost): + def attach(self, asterisk): """ - attach amihost to a ChannelManager. + Set up a connection to the specified Asterisk Args: - amihost (dict): A dictionary containing the connection settings for - an AMI host. + asterisk (str): A connection string """ + ami_host = urlparse(asterisk) + # Create Panoramisk asterisk AMI manager. - amimgr = Manager( - loop=self.loop, host=amihost['host'], port=amihost['port'], - username=amihost['username'], secret=amihost['password'], - ssl=False, encoding='utf8', log=self.logger) + manager = Manager( + loop=self.loop, host=ami_host.hostname, port=ami_host.port, + username=ami_host.username, secret=ami_host.password, + ssl=ami_host.scheme in ('ssl', 'tls'), encoding='utf8', + log=self.logger) # Create our own channel manager. - channel_manager = self.channel_manager( + event_handler = self.event_handler( reporter=self.reporter, + hostname=ami_host.hostname, + logger=self.logger, ) # Tell Panoramisk to which events we want to listen. - for event_name in channel_manager.INTERESTING_EVENTS: - amimgr.register_event(event_name, self.on_event) + if event_handler.FILTER_EVENTS: + for event_name in event_handler.event_handlers().keys(): + manager.register_event(event_name, self.on_event) + else: + manager.register_event('*', self.on_event) # Record them for later use. - self.amimgrs[amimgr] = channel_manager + self.ami_managers[manager] = event_handler # Tell asyncio what to work on. - asyncio.ensure_future(amimgr.connect()) + asyncio.ensure_future(manager.connect()) - def on_event(self, amimanager, amievent): - """When an event comes in, pass it to the relevant channel manager. + def on_event(self, manager, event): + """ + When an event comes in, pass it to the relevant channel manager. Args: - amimanager (Manager): The AMI manager from Panoramisk. - amievent (Event): AMI event (a dict-like object with event data). + manager (Manager): The AMI manager from Panoramisk. + event (Event): AMI event (a dict-like object with event data). """ - assert amimanager in self.amimgrs - self.amimgrs[amimanager].on_event(amievent) + assert manager in self.ami_managers + self.ami_managers[manager].on_event(event) def run(self): """ @@ -86,10 +98,11 @@ def run(self): self.loop.run_forever() def _close(self, signal, frame): - """Clean shutdown the runner. """ - print('Disconnecting from Asterisk...') - for amimgr in self.amimgrs: - amimgr.close() + Clean shutdown the runner. + """ + self.logger.info('Shutting down Cacofonisk...') + for manager in self.ami_managers: + manager.close() self.reporter.close() sys.exit(0) diff --git a/cacofonisk/runners/file_runner.py b/cacofonisk/runners/file_runner.py index 3551a1c..3ac2b73 100644 --- a/cacofonisk/runners/file_runner.py +++ b/cacofonisk/runners/file_runner.py @@ -1,6 +1,6 @@ """ -Implement a Runner which reads files, instatiates a ChannelManager and calls -the ChannelManager accordingly. +Implement a Runner which reads files, instatiates a EventHandler and calls +the EventHandler accordingly. If the main application desires to replay previously stored events (an event replay log), the FileRunner is the runner to use. @@ -10,19 +10,19 @@ """ from json import load -from ..channel import ChannelManager +from ..handlers import EventHandler class FileRunner(object): - def __init__(self, files, reporter, channel_manager_class=ChannelManager): + def __init__(self, files, reporter, channel_manager_class=EventHandler): """ FileRunner is a Runner that reads from one or more files. Args: - files [str]: A list of strings containing filenames or, a string - containing a filename. + files (list): A list of strings containing filenames or, + a string containing a filename. reporter (Reporter): The reporter to use for this Runner. - channel_manager_class: The ChannelManager to instantiate for this + channel_manager_class: The EventHandler to instantiate for this Runner. """ if type(files) == str: @@ -55,14 +55,15 @@ def run(self): """ for filename in self.files: events = self._load_events_from_disk(filename) - channel_manager = self.channel_manager_class(reporter=self.reporter) + channel_manager = self.channel_manager_class( + reporter=self.reporter) + interesting_events = channel_manager.event_handlers().keys() for event in events: if ( - '*' in channel_manager.INTERESTING_EVENTS or - event['Event'] in channel_manager.INTERESTING_EVENTS + not channel_manager.FILTER_EVENTS or + event['Event'] in interesting_events ): channel_manager.on_event(event) self.channel_managers.append(channel_manager) - self.reporter.close() diff --git a/example.py b/example.py deleted file mode 100644 index 308c9ee..0000000 --- a/example.py +++ /dev/null @@ -1,31 +0,0 @@ -""" -This example connects to the specified AMI hosts and prints a message when an -account is ringing and when a call is transferred. -""" -from cacofonisk import AmiRunner, BaseReporter - - -class TransferSpammer(BaseReporter): - - def on_event(self, event): - pass - - def on_b_dial(self, caller, callee): - callee_account_code = callee.code - caller_id = caller.number - print("{callee.code} is being called by {caller.number}".format(callee=callee, caller=caller)) - - def on_warm_transfer(self, redirector, party1, party2): - print("Account with account code {redirector.account_code} just " - "transferred a call with callerid {party1.cli} to an extension at " - "{party2.exten}".format( - redirector=redirector, party1=party1, - party2=party2)) - -if __name__ == '__main__': - ami_host1 = {'host': '127.0.0.1', 'username': 'cacofonisk', 'password': 'bard', 'port': 5038} - ami_hosts = (ami_host1,) - - reporter = TransferSpammer() - runner = AmiRunner(ami_hosts, reporter) - runner.run() diff --git a/examples/amirunner.py b/examples/amirunner.py new file mode 100644 index 0000000..59b490b --- /dev/null +++ b/examples/amirunner.py @@ -0,0 +1,22 @@ +import logging +import sys + +from cacofonisk import AmiRunner, LoggingReporter + +logger = logging.getLogger() +logger.setLevel(logging.INFO) + +log_handler = logging.StreamHandler(sys.stdout) +log_handler.setLevel(logging.INFO) +log_formatter = logging.Formatter( + '%(asctime)s %(name)s: %(levelname)s: %(message)s') +log_handler.setFormatter(log_formatter) +logger.addHandler(log_handler) + + +reporter = LoggingReporter() +# Attach the AmiRunner to the specified Asterisk. +runner = AmiRunner([ + 'tcp://cacofonisk:bard@127.0.0.1:5038', +], reporter, logger=logger) +runner.run() diff --git a/examples/filerunner.py b/examples/filerunner.py new file mode 100644 index 0000000..05f069e --- /dev/null +++ b/examples/filerunner.py @@ -0,0 +1,21 @@ +import logging +import sys + +from cacofonisk import FileRunner, LoggingReporter + +logger = logging.getLogger() +logger.setLevel(logging.INFO) + +log_handler = logging.StreamHandler(sys.stdout) +log_handler.setLevel(logging.INFO) +log_formatter = logging.Formatter( + '%(asctime)s %(name)s: %(levelname)s: %(message)s') +log_handler.setFormatter(log_formatter) +logger.addHandler(log_handler) + +reporter = LoggingReporter() +# Process the specified AMI fixture. +runner = FileRunner( + '../tests/fixtures/simple/ab_success_b_hangup.json', reporter) +runner.run() +reporter.close() diff --git a/examples/output_json.py b/examples/output_json.py new file mode 100644 index 0000000..b9cd3d8 --- /dev/null +++ b/examples/output_json.py @@ -0,0 +1,59 @@ +import json +import sys + +from cacofonisk import AmiRunner, BaseReporter, EventHandler + + +class NoOpEventHandler(EventHandler): + """ + NoOpEventHandler is a simple EventHandler which simply passes the events to + the reporter without further processing. This is useful for generating + logs, if regular event processing is not desired. + """ + + def on_event(self, event): + self._reporter.on_event(event) + + +class VerboseNoOpEventHandler(NoOpEventHandler): + """ + Like NoOpEventHandler, but dumps all the events, not just the + interesting ones. + """ + FILTER_EVENTS = False + + +class JsonReporter(BaseReporter): + """ + Dump all AMI events as JSON to stdout. + """ + + def __init__(self): + self._has_first_line = False + + def on_event(self, event): + """ + Write AMI events to a file in a json format. If the file does not + exist. Create it with one opening bracket, and start writing events in + the form of one dictionary per event. + """ + json_data = json.dumps(dict(event), sort_keys=True) + + if self._has_first_line: + sys.stdout.write(',') + else: + sys.stdout.write('[') + self._has_first_line = True + + sys.stdout.write('\n {}'.format(json_data)) + + def close(self): + sys.stdout.write('\n]') + + +reporter = JsonReporter() +# Attach the AmiRunner to the specified Asterisk. +runner = AmiRunner([ + 'tcp://cacofonisk:bard@127.0.0.1:5038', +], reporter, handler=NoOpEventHandler) +runner.run() diff --git a/requirements.txt b/requirements.txt index 6b3b4b3..2ed2ae1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,2 @@ -aiohttp==2.2.3 -panoramisk==1.1 -coverage==4.4.1 +panoramisk==1.2 +coverage==4.5.1 diff --git a/setup.cfg b/setup.cfg deleted file mode 100644 index 791f075..0000000 --- a/setup.cfg +++ /dev/null @@ -1,2 +0,0 @@ -[flake8] -max-line-length = 119 diff --git a/setup.py b/setup.py index d2f119e..2548957 100644 --- a/setup.py +++ b/setup.py @@ -14,10 +14,10 @@ here = path.abspath(path.dirname(__file__)) # Get the long description from the README file -with open(path.join(here, 'README.rst'), encoding='utf-8') as f: +with open(path.join(here, 'README.md'), encoding='utf-8') as f: long_description = f.read() -version = '0.4.0' +version = '0.5.0' setup( name='cacofonisk', @@ -27,7 +27,7 @@ # https://packaging.python.org/en/latest/single_source_version.html version=version, - description='Track callerid changes through Asterisk Management Interface (AMI)', + description='Track channels through Asterisk Management Interface (AMI)', long_description=long_description, # The project's main homepage. @@ -35,10 +35,10 @@ download_url='https://github.com/VoIPGRID/cacofonisk/archive/'+version+'.tar.gz', # Author details author='Devhouse Spindle', - author_email='info@wearespindle.com', + author_email='opensource+cacofonisk@wearespindle.com', # Choose your license - license='GPL', + license='MIT', # See https://pypi.python.org/pypi?%3Aaction=list_classifiers classifiers=[ @@ -46,14 +46,14 @@ # 3 - Alpha # 4 - Beta # 5 - Production/Stable - 'Development Status :: 3 - Alpha', + 'Development Status :: 3 - Beta', # Indicate who your project is intended for 'Intended Audience :: Developers', 'Topic :: Communications :: Telephony', # Pick your license as you wish (should match "license" above) - 'License :: OSI Approved :: GNU General Public License (GPL)', + 'License :: OSI Approved :: MIT License', # Specify the Python versions you support here. In particular, ensure # that you indicate whether you support Python 2, Python 3 or both. @@ -81,7 +81,7 @@ # $ pip install -e .[dev,test] extras_require={ 'dev': ['check-manifest'], - 'test': ['coverage', 'nose'], + 'test': ['coverage'], }, - test_suite='nose.collector' + test_suite='unittest' ) diff --git a/tests/fixtures/acceptance/accept_accepted.json b/tests/fixtures/acceptance/accept_accepted.json deleted file mode 100644 index 711ce3e..0000000 --- a/tests/fixtures/acceptance/accept_accepted.json +++ /dev/null @@ -1,59 +0,0 @@ -[ - {"content": "", "Status": "Fully Booted", "Event": "FullyBooted", "Privilege": "system,all"}, - {"content": "", "Exten": "+31853xxxxxx", "Uniqueid": "ua0-acc-1506952916.1769", "Channel": "SIP/voipgrid-siproute-dev-00000217", "Event": "Newchannel", "CallerIDName": "", "ChannelState": "0", "AccountCode": "", "CallerIDNum": "+315080xxxxx", "Privilege": "call,all", "Context": "voipgrid_in", "ChannelStateDesc": "Down"}, - {"content": "", "CallerIDNum": "+315080xxxxx", "ConnectedLineNum": "", "Privilege": "call,all", "CallerIDName": "", "Uniqueid": "ua0-acc-1506952916.1769", "ConnectedLineName": "", "ChannelStateDesc": "Ring", "Event": "Newstate", "Channel": "SIP/voipgrid-siproute-dev-00000217", "ChannelState": "4"}, - {"content": "", "AccountCode": "12668", "Privilege": "call,all", "Uniqueid": "ua0-acc-1506952916.1769", "Channel": "SIP/voipgrid-siproute-dev-00000217", "Event": "NewAccountCode"}, - {"content": "", "Exten": "ID610261", "Uniqueid": "ua0-acc-1506952916.1770", "Channel": "Local/ID610261@osvpi_route_fixeddestination-00000269;1", "Event": "Newchannel", "CallerIDName": "", "ChannelState": "0", "AccountCode": "", "CallerIDNum": "", "Privilege": "call,all", "Context": "osvpi_route_fixeddestination", "ChannelStateDesc": "Down"}, - {"content": "", "Exten": "ID610261", "Uniqueid": "ua0-acc-1506952916.1771", "Channel": "Local/ID610261@osvpi_route_fixeddestination-00000269;2", "Event": "Newchannel", "CallerIDName": "", "ChannelState": "4", "AccountCode": "", "CallerIDNum": "", "Privilege": "call,all", "Context": "osvpi_route_fixeddestination", "ChannelStateDesc": "Ring"}, - {"content": "", "CallerIDNum": "+31853xxxxxx", "Privilege": "call,all", "Uniqueid": "ua0-acc-1506952916.1770", "Channel": "Local/ID610261@osvpi_route_fixeddestination-00000269;1", "Event": "NewCallerid", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": ""}, - {"content": "", "Exten": "ID610261", "Channel2": "Local/ID610261@osvpi_route_fixeddestination-00000269;2", "Privilege": "call,all", "Context": "osvpi_route_fixeddestination", "Uniqueid2": "ua0-acc-1506952916.1771", "Channel1": "Local/ID610261@osvpi_route_fixeddestination-00000269;1", "Event": "LocalBridge", "Uniqueid1": "ua0-acc-1506952916.1770", "LocalOptimization": "Yes"}, - {"content": "", "SubEvent": "Begin", "ConnectedLineName": "", "Event": "Dial", "DestUniqueID": "ua0-acc-1506952916.1770", "ConnectedLineNum": "", "Dialstring": "ID610261@osvpi_route_fixeddestination", "CallerIDNum": "+315080xxxxx", "Channel": "SIP/voipgrid-siproute-dev-00000217", "Privilege": "call,all", "CallerIDName": "", "Destination": "Local/ID610261@osvpi_route_fixeddestination-00000269;1", "UniqueID": "ua0-acc-1506952916.1769"}, - {"content": "", "Exten": "+31612345678", "Uniqueid": "ua0-acc-1506952917.1772", "Channel": "Local/+31612345678@world_out-0000026a;1", "Event": "Newchannel", "CallerIDName": "", "ChannelState": "0", "AccountCode": "", "CallerIDNum": "", "Privilege": "call,all", "Context": "world_out", "ChannelStateDesc": "Down"}, - {"content": "", "Exten": "+31612345678", "Uniqueid": "ua0-acc-1506952917.1773", "Channel": "Local/+31612345678@world_out-0000026a;2", "Event": "Newchannel", "CallerIDName": "", "ChannelState": "4", "AccountCode": "", "CallerIDNum": "", "Privilege": "call,all", "Context": "world_out", "ChannelStateDesc": "Ring"}, - {"content": "", "CallerIDNum": "+31612345678", "Privilege": "call,all", "Uniqueid": "ua0-acc-1506952917.1772", "Channel": "Local/+31612345678@world_out-0000026a;1", "Event": "NewCallerid", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": ""}, - {"content": "", "Exten": "+31612345678", "Channel2": "Local/+31612345678@world_out-0000026a;2", "Privilege": "call,all", "Context": "world_out", "Uniqueid2": "ua0-acc-1506952917.1773", "Channel1": "Local/+31612345678@world_out-0000026a;1", "Event": "LocalBridge", "Uniqueid1": "ua0-acc-1506952917.1772", "LocalOptimization": "Yes"}, - {"content": "", "SubEvent": "Begin", "ConnectedLineName": "", "Event": "Dial", "DestUniqueID": "ua0-acc-1506952917.1772", "ConnectedLineNum": "+31853xxxxxx", "Dialstring": "+31612345678@world_out", "CallerIDNum": "+315080xxxxx", "Channel": "Local/ID610261@osvpi_route_fixeddestination-00000269;2", "Privilege": "call,all", "CallerIDName": "", "Destination": "Local/+31612345678@world_out-0000026a;1", "UniqueID": "ua0-acc-1506952916.1771"}, - {"content": "", "CallerIDNum": "+31853xxxxxx", "ConnectedLineNum": "+315080xxxxx", "Privilege": "call,all", "CallerIDName": "", "Uniqueid": "ua0-acc-1506952916.1770", "ConnectedLineName": "", "ChannelStateDesc": "Ringing", "Event": "Newstate", "Channel": "Local/ID610261@osvpi_route_fixeddestination-00000269;1", "ChannelState": "5"}, - {"content": "", "Exten": "", "Uniqueid": "ua0-acc-1506952917.1774", "Channel": "SIP/voipgrid-siproute-dev-00000218", "Event": "Newchannel", "CallerIDName": "", "ChannelState": "0", "AccountCode": "", "CallerIDNum": "", "Privilege": "call,all", "Context": "voipgrid_in", "ChannelStateDesc": "Down"}, - {"content": "", "CallerIDNum": "+31612345678", "Privilege": "call,all", "Uniqueid": "ua0-acc-1506952917.1774", "Channel": "SIP/voipgrid-siproute-dev-00000218", "Event": "NewCallerid", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": ""}, - {"content": "", "SubEvent": "Begin", "ConnectedLineName": "", "Event": "Dial", "DestUniqueID": "ua0-acc-1506952917.1774", "ConnectedLineNum": "+31612345678", "Dialstring": "+31612345678@voipgrid-siproute-dev", "CallerIDNum": "+315080xxxxx", "Channel": "Local/+31612345678@world_out-0000026a;2", "Privilege": "call,all", "CallerIDName": "", "Destination": "SIP/voipgrid-siproute-dev-00000218", "UniqueID": "ua0-acc-1506952917.1773"}, - {"content": "", "CallerIDNum": "+31612345678", "ConnectedLineNum": "+315080xxxxx", "Privilege": "call,all", "CallerIDName": "", "Uniqueid": "ua0-acc-1506952917.1774", "ConnectedLineName": "", "ChannelStateDesc": "Ringing", "Event": "Newstate", "Channel": "SIP/voipgrid-siproute-dev-00000218", "ChannelState": "5"}, - {"content": "", "CallerIDNum": "+31612345678", "ConnectedLineNum": "+315080xxxxx", "Privilege": "call,all", "CallerIDName": "", "Uniqueid": "ua0-acc-1506952917.1772", "ConnectedLineName": "", "ChannelStateDesc": "Ringing", "Event": "Newstate", "Channel": "Local/+31612345678@world_out-0000026a;1", "ChannelState": "5"}, - {"Status": "Fully Booted", "content": "", "Event": "FullyBooted", "Privilege": "system,all"}, - {"CallerIDName": "", "ConnectedLineNum": "+315080xxxxx", "Event": "Newstate", "CallerIDNum": "+31612345678", "Uniqueid": "ua0-acc-1506952917.1774", "ChannelStateDesc": "Up", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000218", "Privilege": "call,all", "ConnectedLineName": "", "ChannelState": "6"}, - {"CallerIDName": "", "ConnectedLineNum": "+31612345678", "Event": "Newstate", "CallerIDNum": "+315080xxxxx", "Uniqueid": "ua0-acc-1506952917.1773", "ChannelStateDesc": "Up", "content": "", "Channel": "Local/+31612345678@world_out-0000026a;2", "Privilege": "call,all", "ConnectedLineName": "", "ChannelState": "6"}, - {"Event": "NewAccountCode", "content": "", "Privilege": "call,all", "OldAccountCode": "12668", "Channel": "SIP/voipgrid-siproute-dev-00000218", "Uniqueid": "ua0-acc-1506952917.1774", "AccountCode": "12668"}, - {"Uniqueid1": "ua0-acc-1506952917.1773", "Channel1": "Local/+31612345678@world_out-0000026a;2", "CallerID1": "+315080xxxxx", "Event": "Bridge", "Channel2": "SIP/voipgrid-siproute-dev-00000218", "content": "", "CallerID2": "+31612345678", "Bridgestate": "Link", "Uniqueid2": "ua0-acc-1506952917.1774", "Privilege": "call,all", "Bridgetype": "core"}, - {"CallerIDName": "", "ConnectedLineNum": "+315080xxxxx", "Event": "Newstate", "CallerIDNum": "+31612345678", "Uniqueid": "ua0-acc-1506952917.1772", "ChannelStateDesc": "Up", "content": "", "Channel": "Local/+31612345678@world_out-0000026a;1", "Privilege": "call,all", "ConnectedLineName": "", "ChannelState": "6"}, - {"Original": "Local/+31612345678@world_out-0000026a;1", "Event": "Masquerade", "CloneState": "Up", "content": "", "Clone": "SIP/voipgrid-siproute-dev-00000218", "Privilege": "call,all", "OriginalState": "Up"}, - {"Event": "Rename", "Newname": "SIP/voipgrid-siproute-dev-00000218", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000218", "Uniqueid": "ua0-acc-1506952917.1774", "Privilege": "call,all"}, - {"Event": "Rename", "Newname": "SIP/voipgrid-siproute-dev-00000218", "content": "", "Channel": "Local/+31612345678@world_out-0000026a;1", "Uniqueid": "ua0-acc-1506952917.1772", "Privilege": "call,all"}, - {"Event": "Rename", "Newname": "Local/+31612345678@world_out-0000026a;1", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000218", "Uniqueid": "ua0-acc-1506952917.1774", "Privilege": "call,all"}, - {"CallerIDName": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDNum": "+31612345678", "Event": "NewCallerid", "content": "", "Privilege": "call,all", "Uniqueid": "ua0-acc-1506952917.1772", "Channel": "SIP/voipgrid-siproute-dev-00000218"}, - {"Uniqueid1": "ua0-acc-1506952917.1773", "Channel1": "Local/+31612345678@world_out-0000026a;2", "CallerID1": "+315080xxxxx", "Event": "Bridge", "Channel2": "Local/+31612345678@world_out-0000026a;1", "content": "", "CallerID2": "+31612345678", "Bridgestate": "Unlink", "Uniqueid2": "ua0-acc-1506952917.1774", "Privilege": "call,all", "Bridgetype": "core"}, - {"CallerIDName": "", "Event": "Hangup", "content": "", "ConnectedLineName": "", "AccountCode": "12668", "ConnectedLineNum": "+315080xxxxx", "Cause": "16", "CallerIDNum": "+31612345678", "Uniqueid": "ua0-acc-1506952917.1774", "Channel": "Local/+31612345678@world_out-0000026a;1", "Cause-txt": "Normal Clearing", "Privilege": "call,all"}, - {"Event": "Dial", "SubEvent": "End", "content": "", "UniqueID": "ua0-acc-1506952917.1773", "DialStatus": "ANSWER", "Channel": "Local/+31612345678@world_out-0000026a;2", "Privilege": "call,all"}, - {"CallerIDName": "", "Event": "Hangup", "content": "", "ConnectedLineName": "", "AccountCode": "12668", "ConnectedLineNum": "+31612345678", "Cause": "16", "CallerIDNum": "+315080xxxxx", "Uniqueid": "ua0-acc-1506952917.1773", "Channel": "Local/+31612345678@world_out-0000026a;2", "Cause-txt": "Normal Clearing", "Privilege": "call,all"}, - {"Status": "Fully Booted", "Event": "FullyBooted", "Privilege": "system,all", "content": ""}, - {"ConnectedLineNum": "+31853xxxxxx", "ChannelStateDesc": "Up", "CallerIDNum": "+315080xxxxx", "Channel": "Local/ID610261@osvpi_route_fixeddestination-00000269;2", "ChannelState": "6", "Event": "Newstate", "Uniqueid": "ua0-acc-1506952916.1771", "Privilege": "call,all", "CallerIDName": "", "content": "", "ConnectedLineName": ""}, - {"Event": "NewAccountCode", "OldAccountCode": "12668", "Uniqueid": "ua0-acc-1506952917.1772", "Channel": "SIP/voipgrid-siproute-dev-00000218", "Privilege": "call,all", "content": "", "AccountCode": "12668"}, - {"Event": "Bridge", "Bridgetype": "core", "Uniqueid1": "ua0-acc-1506952916.1771", "content": "", "Bridgestate": "Link", "CallerID1": "+315080xxxxx", "Privilege": "call,all", "Channel2": "SIP/voipgrid-siproute-dev-00000218", "CallerID2": "+31612345678", "Uniqueid2": "ua0-acc-1506952917.1772", "Channel1": "Local/ID610261@osvpi_route_fixeddestination-00000269;2"}, - {"ConnectedLineNum": "+315080xxxxx", "ChannelStateDesc": "Up", "CallerIDNum": "+31853xxxxxx", "Channel": "Local/ID610261@osvpi_route_fixeddestination-00000269;1", "ChannelState": "6", "Event": "Newstate", "Uniqueid": "ua0-acc-1506952916.1770", "Privilege": "call,all", "CallerIDName": "", "content": "", "ConnectedLineName": ""}, - {"ConnectedLineNum": "", "ChannelStateDesc": "Up", "CallerIDNum": "+315080xxxxx", "Channel": "SIP/voipgrid-siproute-dev-00000217", "ChannelState": "6", "Event": "Newstate", "Uniqueid": "ua0-acc-1506952916.1769", "Privilege": "call,all", "CallerIDName": "", "content": "", "ConnectedLineName": ""}, - {"Event": "NewAccountCode", "OldAccountCode": "12668", "Uniqueid": "ua0-acc-1506952916.1770", "Channel": "Local/ID610261@osvpi_route_fixeddestination-00000269;1", "Privilege": "call,all", "content": "", "AccountCode": "12668"}, - {"Event": "Bridge", "Bridgetype": "core", "Uniqueid1": "ua0-acc-1506952916.1769", "content": "", "Bridgestate": "Link", "CallerID1": "+315080xxxxx", "Privilege": "call,all", "Channel2": "Local/ID610261@osvpi_route_fixeddestination-00000269;1", "CallerID2": "+31853xxxxxx", "Uniqueid2": "ua0-acc-1506952916.1770", "Channel1": "SIP/voipgrid-siproute-dev-00000217"}, - {"CloneState": "Up", "OriginalState": "Up", "Original": "Local/ID610261@osvpi_route_fixeddestination-00000269;1", "Event": "Masquerade", "Privilege": "call,all", "Clone": "SIP/voipgrid-siproute-dev-00000218", "content": ""}, - {"Event": "Rename", "Uniqueid": "ua0-acc-1506952917.1772", "Newname": "SIP/voipgrid-siproute-dev-00000218", "Channel": "SIP/voipgrid-siproute-dev-00000218", "Privilege": "call,all", "content": ""}, - {"Event": "Rename", "Uniqueid": "ua0-acc-1506952916.1770", "Newname": "SIP/voipgrid-siproute-dev-00000218", "Channel": "Local/ID610261@osvpi_route_fixeddestination-00000269;1", "Privilege": "call,all", "content": ""}, - {"Event": "Rename", "Uniqueid": "ua0-acc-1506952917.1772", "Newname": "Local/ID610261@osvpi_route_fixeddestination-00000269;1", "Channel": "SIP/voipgrid-siproute-dev-00000218", "Privilege": "call,all", "content": ""}, - {"content": "", "Event": "NewCallerid", "CallerIDNum": "+31853xxxxxx", "Channel": "SIP/voipgrid-siproute-dev-00000218", "Privilege": "call,all", "Uniqueid": "ua0-acc-1506952916.1770", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": ""}, - {"Event": "Bridge", "Bridgetype": "core", "Uniqueid1": "ua0-acc-1506952916.1771", "content": "", "Bridgestate": "Unlink", "CallerID1": "+315080xxxxx", "Privilege": "call,all", "Channel2": "Local/ID610261@osvpi_route_fixeddestination-00000269;1", "CallerID2": "+31612345678", "Uniqueid2": "ua0-acc-1506952917.1772", "Channel1": "Local/ID610261@osvpi_route_fixeddestination-00000269;2"}, - {"ConnectedLineNum": "+315080xxxxx", "Event": "Hangup", "Uniqueid": "ua0-acc-1506952917.1772", "Channel": "Local/ID610261@osvpi_route_fixeddestination-00000269;1", "Privilege": "call,all", "AccountCode": "12668", "CallerIDNum": "+31612345678", "ConnectedLineName": "", "Cause-txt": "Normal Clearing", "content": "", "Cause": "16", "CallerIDName": ""}, - {"Event": "Dial", "DialStatus": "ANSWER", "Channel": "Local/ID610261@osvpi_route_fixeddestination-00000269;2", "Privilege": "call,all", "UniqueID": "ua0-acc-1506952916.1771", "content": "", "SubEvent": "End"}, - {"ConnectedLineNum": "+31853xxxxxx", "Event": "Hangup", "Uniqueid": "ua0-acc-1506952916.1771", "Channel": "Local/ID610261@osvpi_route_fixeddestination-00000269;2", "Privilege": "call,all", "AccountCode": "12668", "CallerIDNum": "+315080xxxxx", "ConnectedLineName": "", "Cause-txt": "Normal Clearing", "content": "", "Cause": "16", "CallerIDName": ""}, - {"Event": "FullyBooted", "content": "", "Status": "Fully Booted", "Privilege": "system,all"}, - {"CallerID2": "+31853xxxxxx", "Event": "Bridge", "Uniqueid1": "ua0-acc-1506952916.1769", "Uniqueid2": "ua0-acc-1506952916.1770", "Channel2": "SIP/voipgrid-siproute-dev-00000218", "Privilege": "call,all", "Bridgestate": "Unlink", "CallerID1": "+315080xxxxx", "Channel1": "SIP/voipgrid-siproute-dev-00000217", "Bridgetype": "core", "content": ""}, - {"Event": "Hangup", "AccountCode": "12668", "CallerIDNum": "+31853xxxxxx", "Privilege": "call,all", "Cause": "16", "content": "", "ConnectedLineNum": "+315080xxxxx", "CallerIDName": "", "Uniqueid": "ua0-acc-1506952916.1770", "Channel": "SIP/voipgrid-siproute-dev-00000218", "ConnectedLineName": "", "Cause-txt": "Normal Clearing"}, - {"Event": "Dial", "Channel": "SIP/voipgrid-siproute-dev-00000217", "Privilege": "call,all", "SubEvent": "End", "DialStatus": "ANSWER", "content": "", "UniqueID": "ua0-acc-1506952916.1769"}, - {"Event": "Hangup", "AccountCode": "12668", "CallerIDNum": "+315080xxxxx", "Privilege": "call,all", "Cause": "16", "content": "", "ConnectedLineNum": "", "CallerIDName": "", "Uniqueid": "ua0-acc-1506952916.1769", "Channel": "SIP/voipgrid-siproute-dev-00000217", "ConnectedLineName": "", "Cause-txt": "Normal Clearing"} -] diff --git a/tests/fixtures/acceptance/accept_deny.json b/tests/fixtures/acceptance/accept_deny.json deleted file mode 100644 index 729b128..0000000 --- a/tests/fixtures/acceptance/accept_deny.json +++ /dev/null @@ -1,39 +0,0 @@ -[ - {"Event":"FullyBooted","Privilege":"system,all","Status":"Fully Booted","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"+315080xxxxx","Channel":"SIP/voipgrid-siproute-dev-00000277","ChannelState":"0","ChannelStateDesc":"Down","Context":"voipgrid_in","Event":"Newchannel","Exten":"+31853xxxxxx","Privilege":"call,all","Uniqueid":"ua0-acc-1507624765.2057","content":""}, - {"CallerIDName":"","CallerIDNum":"+315080xxxxx","Channel":"SIP/voipgrid-siproute-dev-00000277","ChannelState":"4","ChannelStateDesc":"Ring","ConnectedLineName":"","ConnectedLineNum":"","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507624765.2057","content":""}, - {"AccountCode":"12668","Channel":"SIP/voipgrid-siproute-dev-00000277","Event":"NewAccountCode","Privilege":"call,all","Uniqueid":"ua0-acc-1507624765.2057","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"","Channel":"Local/ID580261@osvpi_route_fixeddestination-000002c9;1","ChannelState":"0","ChannelStateDesc":"Down","Context":"osvpi_route_fixeddestination","Event":"Newchannel","Exten":"ID580261","Privilege":"call,all","Uniqueid":"ua0-acc-1507624765.2058","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"","Channel":"Local/ID580261@osvpi_route_fixeddestination-000002c9;2","ChannelState":"4","ChannelStateDesc":"Ring","Context":"osvpi_route_fixeddestination","Event":"Newchannel","Exten":"ID580261","Privilege":"call,all","Uniqueid":"ua0-acc-1507624765.2059","content":""}, - {"CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDName":"","CallerIDNum":"+31853xxxxxx","Channel":"Local/ID580261@osvpi_route_fixeddestination-000002c9;1","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"ua0-acc-1507624765.2058","content":""}, - {"Channel1":"Local/ID580261@osvpi_route_fixeddestination-000002c9;1","Channel2":"Local/ID580261@osvpi_route_fixeddestination-000002c9;2","Context":"osvpi_route_fixeddestination","Event":"LocalBridge","Exten":"ID580261","LocalOptimization":"Yes","Privilege":"call,all","Uniqueid1":"ua0-acc-1507624765.2058","Uniqueid2":"ua0-acc-1507624765.2059","content":""}, - {"CallerIDName":"","CallerIDNum":"+315080xxxxx","Channel":"SIP/voipgrid-siproute-dev-00000277","ConnectedLineName":"","ConnectedLineNum":"","DestUniqueID":"ua0-acc-1507624765.2058","Destination":"Local/ID580261@osvpi_route_fixeddestination-000002c9;1","Dialstring":"ID580261@osvpi_route_fixeddestination","Event":"Dial","Privilege":"call,all","SubEvent":"Begin","UniqueID":"ua0-acc-1507624765.2057","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"","Channel":"Local/+31613925xxx@world_out-000002ca;1","ChannelState":"0","ChannelStateDesc":"Down","Context":"world_out","Event":"Newchannel","Exten":"+31613925xxx","Privilege":"call,all","Uniqueid":"ua0-acc-1507624765.2060","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"","Channel":"Local/+31613925xxx@world_out-000002ca;2","ChannelState":"4","ChannelStateDesc":"Ring","Context":"world_out","Event":"Newchannel","Exten":"+31613925xxx","Privilege":"call,all","Uniqueid":"ua0-acc-1507624765.2061","content":""}, - {"CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDName":"","CallerIDNum":"+31613925xxx","Channel":"Local/+31613925xxx@world_out-000002ca;1","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"ua0-acc-1507624765.2060","content":""}, - {"Channel1":"Local/+31613925xxx@world_out-000002ca;1","Channel2":"Local/+31613925xxx@world_out-000002ca;2","Context":"world_out","Event":"LocalBridge","Exten":"+31613925xxx","LocalOptimization":"Yes","Privilege":"call,all","Uniqueid1":"ua0-acc-1507624765.2060","Uniqueid2":"ua0-acc-1507624765.2061","content":""}, - {"CallerIDName":"","CallerIDNum":"+315080xxxxx","Channel":"Local/ID580261@osvpi_route_fixeddestination-000002c9;2","ConnectedLineName":"","ConnectedLineNum":"+31853xxxxxx","DestUniqueID":"ua0-acc-1507624765.2060","Destination":"Local/+31613925xxx@world_out-000002ca;1","Dialstring":"+31613925xxx@world_out","Event":"Dial","Privilege":"call,all","SubEvent":"Begin","UniqueID":"ua0-acc-1507624765.2059","content":""}, - {"CallerIDName":"","CallerIDNum":"+31853xxxxxx","Channel":"Local/ID580261@osvpi_route_fixeddestination-000002c9;1","ChannelState":"5","ChannelStateDesc":"Ringing","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507624765.2058","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"","Channel":"SIP/voipgrid-siproute-dev-00000278","ChannelState":"0","ChannelStateDesc":"Down","Context":"voipgrid_in","Event":"Newchannel","Exten":"","Privilege":"call,all","Uniqueid":"ua0-acc-1507624765.2062","content":""}, - {"CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDName":"","CallerIDNum":"+31613925xxx","Channel":"SIP/voipgrid-siproute-dev-00000278","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"ua0-acc-1507624765.2062","content":""}, - {"CallerIDName":"","CallerIDNum":"+315080xxxxx","Channel":"Local/+31613925xxx@world_out-000002ca;2","ConnectedLineName":"","ConnectedLineNum":"+31613925xxx","DestUniqueID":"ua0-acc-1507624765.2062","Destination":"SIP/voipgrid-siproute-dev-00000278","Dialstring":"+31613925xxx@voipgrid-siproute-dev","Event":"Dial","Privilege":"call,all","SubEvent":"Begin","UniqueID":"ua0-acc-1507624765.2061","content":""}, - {"CallerIDName":"","CallerIDNum":"+31613925xxx","Channel":"SIP/voipgrid-siproute-dev-00000278","ChannelState":"5","ChannelStateDesc":"Ringing","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507624765.2062","content":""}, - {"CallerIDName":"","CallerIDNum":"+31613925xxx","Channel":"Local/+31613925xxx@world_out-000002ca;1","ChannelState":"5","ChannelStateDesc":"Ringing","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507624765.2060","content":""}, - {"CallerIDName":"","CallerIDNum":"+31613925xxx","Channel":"SIP/voipgrid-siproute-dev-00000278","ChannelState":"6","ChannelStateDesc":"Up","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507624765.2062","content":""}, - {"CallerIDName":"","CallerIDNum":"+315080xxxxx","Channel":"Local/+31613925xxx@world_out-000002ca;2","ChannelState":"6","ChannelStateDesc":"Up","ConnectedLineName":"","ConnectedLineNum":"+31613925xxx","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507624765.2061","content":""}, - {"AccountCode":"12668","Channel":"SIP/voipgrid-siproute-dev-00000278","Event":"NewAccountCode","OldAccountCode":"12668","Privilege":"call,all","Uniqueid":"ua0-acc-1507624765.2062","content":""}, - {"Bridgestate":"Link","Bridgetype":"core","CallerID1":"+315080xxxxx","CallerID2":"+31613925xxx","Channel1":"Local/+31613925xxx@world_out-000002ca;2","Channel2":"SIP/voipgrid-siproute-dev-00000278","Event":"Bridge","Privilege":"call,all","Uniqueid1":"ua0-acc-1507624765.2061","Uniqueid2":"ua0-acc-1507624765.2062","content":""}, - {"CallerIDName":"","CallerIDNum":"+31613925xxx","Channel":"Local/+31613925xxx@world_out-000002ca;1","ChannelState":"6","ChannelStateDesc":"Up","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507624765.2060","content":""}, - {"Clone":"SIP/voipgrid-siproute-dev-00000278","CloneState":"Up","Event":"Masquerade","Original":"Local/+31613925xxx@world_out-000002ca;1","OriginalState":"Up","Privilege":"call,all","content":""}, - {"Channel":"SIP/voipgrid-siproute-dev-00000278","Event":"Rename","Newname":"SIP/voipgrid-siproute-dev-00000278","Privilege":"call,all","Uniqueid":"ua0-acc-1507624765.2062","content":""}, - {"Channel":"Local/+31613925xxx@world_out-000002ca;1","Event":"Rename","Newname":"SIP/voipgrid-siproute-dev-00000278","Privilege":"call,all","Uniqueid":"ua0-acc-1507624765.2060","content":""}, - {"Channel":"SIP/voipgrid-siproute-dev-00000278","Event":"Rename","Newname":"Local/+31613925xxx@world_out-000002ca;1","Privilege":"call,all","Uniqueid":"ua0-acc-1507624765.2062","content":""}, - {"CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDName":"","CallerIDNum":"+31613925xxx","Channel":"SIP/voipgrid-siproute-dev-00000278","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"ua0-acc-1507624765.2060","content":""}, - {"Bridgestate":"Unlink","Bridgetype":"core","CallerID1":"+315080xxxxx","CallerID2":"+31613925xxx","Channel1":"Local/+31613925xxx@world_out-000002ca;2","Channel2":"Local/+31613925xxx@world_out-000002ca;1","Event":"Bridge","Privilege":"call,all","Uniqueid1":"ua0-acc-1507624765.2061","Uniqueid2":"ua0-acc-1507624765.2062","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+31613925xxx","Cause":"16","Cause-txt":"Normal Clearing","Channel":"Local/+31613925xxx@world_out-000002ca;1","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Hangup","Privilege":"call,all","Uniqueid":"ua0-acc-1507624765.2062","content":""}, - {"Channel":"Local/+31613925xxx@world_out-000002ca;2","DialStatus":"ANSWER","Event":"Dial","Privilege":"call,all","SubEvent":"End","UniqueID":"ua0-acc-1507624765.2061","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+315080xxxxx","Cause":"16","Cause-txt":"Normal Clearing","Channel":"Local/+31613925xxx@world_out-000002ca;2","ConnectedLineName":"","ConnectedLineNum":"+31613925xxx","Event":"Hangup","Privilege":"call,all","Uniqueid":"ua0-acc-1507624765.2061","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+31853xxxxxx","Cause":"0","Cause-txt":"Unknown","Channel":"Local/ID580261@osvpi_route_fixeddestination-000002c9;1","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Hangup","Privilege":"call,all","Uniqueid":"ua0-acc-1507624765.2058","content":""}, - {"Channel":"SIP/voipgrid-siproute-dev-00000277","DialStatus":"NOANSWER","Event":"Dial","Privilege":"call,all","SubEvent":"End","UniqueID":"ua0-acc-1507624765.2057","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+315080xxxxx","Cause":"19","Cause-txt":"User alerting, no answer","Channel":"SIP/voipgrid-siproute-dev-00000277","ConnectedLineName":"","ConnectedLineNum":"","Event":"Hangup","Privilege":"call,all","Uniqueid":"ua0-acc-1507624765.2057","content":""} -] diff --git a/tests/fixtures/acceptance/accept_multiple_accepted.json b/tests/fixtures/acceptance/accept_multiple_accepted.json deleted file mode 100644 index 7b7a3d7..0000000 --- a/tests/fixtures/acceptance/accept_multiple_accepted.json +++ /dev/null @@ -1,79 +0,0 @@ -[ - {"Event":"FullyBooted","Privilege":"system,all","Status":"Fully Booted","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"+315080xxxxx","Channel":"SIP/voipgrid-siproute-dev-00000279","ChannelState":"0","ChannelStateDesc":"Down","Context":"voipgrid_in","Event":"Newchannel","Exten":"+31853xxxxxx","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2063","content":""}, - {"CallerIDName":"","CallerIDNum":"+315080xxxxx","Channel":"SIP/voipgrid-siproute-dev-00000279","ChannelState":"4","ChannelStateDesc":"Ring","ConnectedLineName":"","ConnectedLineNum":"","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2063","content":""}, - {"AccountCode":"12668","Channel":"SIP/voipgrid-siproute-dev-00000279","Event":"NewAccountCode","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2063","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"","Channel":"Local/ID580261@osvpi_route_fixeddestination-000002cb;1","ChannelState":"0","ChannelStateDesc":"Down","Context":"osvpi_route_fixeddestination","Event":"Newchannel","Exten":"ID580261","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2064","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"","Channel":"Local/ID580261@osvpi_route_fixeddestination-000002cb;2","ChannelState":"4","ChannelStateDesc":"Ring","Context":"osvpi_route_fixeddestination","Event":"Newchannel","Exten":"ID580261","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2065","content":""}, - {"CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDName":"","CallerIDNum":"+31853xxxxxx","Channel":"Local/ID580261@osvpi_route_fixeddestination-000002cb;1","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2064","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"","Channel":"Local/ID580271@osvpi_route_fixeddestination-000002cc;1","ChannelState":"0","ChannelStateDesc":"Down","Context":"osvpi_route_fixeddestination","Event":"Newchannel","Exten":"ID580271","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2066","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"","Channel":"Local/ID580271@osvpi_route_fixeddestination-000002cc;2","ChannelState":"4","ChannelStateDesc":"Ring","Context":"osvpi_route_fixeddestination","Event":"Newchannel","Exten":"ID580271","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2067","content":""}, - {"CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDName":"","CallerIDNum":"+31853xxxxxx","Channel":"Local/ID580271@osvpi_route_fixeddestination-000002cc;1","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2066","content":""}, - {"Channel1":"Local/ID580261@osvpi_route_fixeddestination-000002cb;1","Channel2":"Local/ID580261@osvpi_route_fixeddestination-000002cb;2","Context":"osvpi_route_fixeddestination","Event":"LocalBridge","Exten":"ID580261","LocalOptimization":"Yes","Privilege":"call,all","Uniqueid1":"ua0-acc-1507798662.2064","Uniqueid2":"ua0-acc-1507798662.2065","content":""}, - {"CallerIDName":"","CallerIDNum":"+315080xxxxx","Channel":"SIP/voipgrid-siproute-dev-00000279","ConnectedLineName":"","ConnectedLineNum":"","DestUniqueID":"ua0-acc-1507798662.2064","Destination":"Local/ID580261@osvpi_route_fixeddestination-000002cb;1","Dialstring":"ID580261@osvpi_route_fixeddestination","Event":"Dial","Privilege":"call,all","SubEvent":"Begin","UniqueID":"ua0-acc-1507798662.2063","content":""}, - {"Channel1":"Local/ID580271@osvpi_route_fixeddestination-000002cc;1","Channel2":"Local/ID580271@osvpi_route_fixeddestination-000002cc;2","Context":"osvpi_route_fixeddestination","Event":"LocalBridge","Exten":"ID580271","LocalOptimization":"Yes","Privilege":"call,all","Uniqueid1":"ua0-acc-1507798662.2066","Uniqueid2":"ua0-acc-1507798662.2067","content":""}, - {"CallerIDName":"","CallerIDNum":"+315080xxxxx","Channel":"SIP/voipgrid-siproute-dev-00000279","ConnectedLineName":"","ConnectedLineNum":"","DestUniqueID":"ua0-acc-1507798662.2066","Destination":"Local/ID580271@osvpi_route_fixeddestination-000002cc;1","Dialstring":"ID580271@osvpi_route_fixeddestination","Event":"Dial","Privilege":"call,all","SubEvent":"Begin","UniqueID":"ua0-acc-1507798662.2063","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"","Channel":"Local/+31508012345@world_out-000002cd;1","ChannelState":"0","ChannelStateDesc":"Down","Context":"world_out","Event":"Newchannel","Exten":"+31508012345","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2068","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"","Channel":"Local/+31508012345@world_out-000002cd;2","ChannelState":"4","ChannelStateDesc":"Ring","Context":"world_out","Event":"Newchannel","Exten":"+31508012345","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2069","content":""}, - {"CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDName":"","CallerIDNum":"+31508012345","Channel":"Local/+31508012345@world_out-000002cd;1","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2068","content":""}, - {"Channel1":"Local/+31508012345@world_out-000002cd;1","Channel2":"Local/+31508012345@world_out-000002cd;2","Context":"world_out","Event":"LocalBridge","Exten":"+31508012345","LocalOptimization":"Yes","Privilege":"call,all","Uniqueid1":"ua0-acc-1507798662.2068","Uniqueid2":"ua0-acc-1507798662.2069","content":""}, - {"CallerIDName":"","CallerIDNum":"+315080xxxxx","Channel":"Local/ID580271@osvpi_route_fixeddestination-000002cc;2","ConnectedLineName":"","ConnectedLineNum":"+31853xxxxxx","DestUniqueID":"ua0-acc-1507798662.2068","Destination":"Local/+31508012345@world_out-000002cd;1","Dialstring":"+31508012345@world_out","Event":"Dial","Privilege":"call,all","SubEvent":"Begin","UniqueID":"ua0-acc-1507798662.2067","content":""}, - {"CallerIDName":"","CallerIDNum":"+31853xxxxxx","Channel":"Local/ID580271@osvpi_route_fixeddestination-000002cc;1","ChannelState":"5","ChannelStateDesc":"Ringing","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2066","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"","Channel":"Local/+31613925xxx@world_out-000002ce;1","ChannelState":"0","ChannelStateDesc":"Down","Context":"world_out","Event":"Newchannel","Exten":"+31613925xxx","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2070","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"","Channel":"Local/+31613925xxx@world_out-000002ce;2","ChannelState":"4","ChannelStateDesc":"Ring","Context":"world_out","Event":"Newchannel","Exten":"+31613925xxx","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2071","content":""}, - {"CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDName":"","CallerIDNum":"+31613925xxx","Channel":"Local/+31613925xxx@world_out-000002ce;1","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2070","content":""}, - {"Channel1":"Local/+31613925xxx@world_out-000002ce;1","Channel2":"Local/+31613925xxx@world_out-000002ce;2","Context":"world_out","Event":"LocalBridge","Exten":"+31613925xxx","LocalOptimization":"Yes","Privilege":"call,all","Uniqueid1":"ua0-acc-1507798662.2070","Uniqueid2":"ua0-acc-1507798662.2071","content":""}, - {"CallerIDName":"","CallerIDNum":"+315080xxxxx","Channel":"Local/ID580261@osvpi_route_fixeddestination-000002cb;2","ConnectedLineName":"","ConnectedLineNum":"+31853xxxxxx","DestUniqueID":"ua0-acc-1507798662.2070","Destination":"Local/+31613925xxx@world_out-000002ce;1","Dialstring":"+31613925xxx@world_out","Event":"Dial","Privilege":"call,all","SubEvent":"Begin","UniqueID":"ua0-acc-1507798662.2065","content":""}, - {"CallerIDName":"","CallerIDNum":"+31853xxxxxx","Channel":"Local/ID580261@osvpi_route_fixeddestination-000002cb;1","ChannelState":"5","ChannelStateDesc":"Ringing","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2064","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"","Channel":"SIP/voipgrid-siproute-dev-0000027a","ChannelState":"0","ChannelStateDesc":"Down","Context":"voipgrid_in","Event":"Newchannel","Exten":"","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2072","content":""}, - {"CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDName":"","CallerIDNum":"+31508012345","Channel":"SIP/voipgrid-siproute-dev-0000027a","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2072","content":""}, - {"CallerIDName":"","CallerIDNum":"+315080xxxxx","Channel":"Local/+31508012345@world_out-000002cd;2","ConnectedLineName":"","ConnectedLineNum":"+31508012345","DestUniqueID":"ua0-acc-1507798662.2072","Destination":"SIP/voipgrid-siproute-dev-0000027a","Dialstring":"+31508012345@voipgrid-siproute-dev","Event":"Dial","Privilege":"call,all","SubEvent":"Begin","UniqueID":"ua0-acc-1507798662.2069","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"","Channel":"SIP/voipgrid-siproute-dev-0000027b","ChannelState":"0","ChannelStateDesc":"Down","Context":"voipgrid_in","Event":"Newchannel","Exten":"","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2073","content":""}, - {"CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDName":"","CallerIDNum":"+31613925xxx","Channel":"SIP/voipgrid-siproute-dev-0000027b","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2073","content":""}, - {"CallerIDName":"","CallerIDNum":"+315080xxxxx","Channel":"Local/+31613925xxx@world_out-000002ce;2","ConnectedLineName":"","ConnectedLineNum":"+31613925xxx","DestUniqueID":"ua0-acc-1507798662.2073","Destination":"SIP/voipgrid-siproute-dev-0000027b","Dialstring":"+31613925xxx@voipgrid-siproute-dev","Event":"Dial","Privilege":"call,all","SubEvent":"Begin","UniqueID":"ua0-acc-1507798662.2071","content":""}, - {"CallerIDName":"","CallerIDNum":"+31508012345","Channel":"SIP/voipgrid-siproute-dev-0000027a","ChannelState":"5","ChannelStateDesc":"Ringing","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2072","content":""}, - {"CallerIDName":"","CallerIDNum":"+31508012345","Channel":"Local/+31508012345@world_out-000002cd;1","ChannelState":"5","ChannelStateDesc":"Ringing","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2068","content":""}, - {"CallerIDName":"","CallerIDNum":"+31613925xxx","Channel":"SIP/voipgrid-siproute-dev-0000027b","ChannelState":"5","ChannelStateDesc":"Ringing","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2073","content":""}, - {"CallerIDName":"","CallerIDNum":"+31613925xxx","Channel":"Local/+31613925xxx@world_out-000002ce;1","ChannelState":"5","ChannelStateDesc":"Ringing","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2070","content":""}, - {"CallerIDName":"","CallerIDNum":"+31508012345","Channel":"SIP/voipgrid-siproute-dev-0000027a","ChannelState":"6","ChannelStateDesc":"Up","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2072","content":""}, - {"CallerIDName":"","CallerIDNum":"+31508012345","Channel":"Local/+31508012345@world_out-000002cd;1","ChannelState":"6","ChannelStateDesc":"Up","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2068","content":""}, - {"CallerIDName":"","CallerIDNum":"+315080xxxxx","Channel":"Local/+31508012345@world_out-000002cd;2","ChannelState":"6","ChannelStateDesc":"Up","ConnectedLineName":"","ConnectedLineNum":"+31508012345","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2069","content":""}, - {"AccountCode":"12668","Channel":"SIP/voipgrid-siproute-dev-0000027a","Event":"NewAccountCode","OldAccountCode":"12668","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2072","content":""}, - {"Bridgestate":"Link","Bridgetype":"core","CallerID1":"+315080xxxxx","CallerID2":"+31508012345","Channel1":"Local/+31508012345@world_out-000002cd;2","Channel2":"SIP/voipgrid-siproute-dev-0000027a","Event":"Bridge","Privilege":"call,all","Uniqueid1":"ua0-acc-1507798662.2069","Uniqueid2":"ua0-acc-1507798662.2072","content":""}, - {"Clone":"SIP/voipgrid-siproute-dev-0000027a","CloneState":"Up","Event":"Masquerade","Original":"Local/+31508012345@world_out-000002cd;1","OriginalState":"Up","Privilege":"call,all","content":""}, - {"Channel":"SIP/voipgrid-siproute-dev-0000027a","Event":"Rename","Newname":"SIP/voipgrid-siproute-dev-0000027a","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2072","content":""}, - {"Channel":"Local/+31508012345@world_out-000002cd;1","Event":"Rename","Newname":"SIP/voipgrid-siproute-dev-0000027a","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2068","content":""}, - {"Channel":"SIP/voipgrid-siproute-dev-0000027a","Event":"Rename","Newname":"Local/+31508012345@world_out-000002cd;1","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2072","content":""}, - {"CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDName":"","CallerIDNum":"+31508012345","Channel":"SIP/voipgrid-siproute-dev-0000027a","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2068","content":""}, - {"Bridgestate":"Unlink","Bridgetype":"core","CallerID1":"+315080xxxxx","CallerID2":"+31508012345","Channel1":"Local/+31508012345@world_out-000002cd;2","Channel2":"Local/+31508012345@world_out-000002cd;1","Event":"Bridge","Privilege":"call,all","Uniqueid1":"ua0-acc-1507798662.2069","Uniqueid2":"ua0-acc-1507798662.2072","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+31508012345","Cause":"16","Cause-txt":"Normal Clearing","Channel":"Local/+31508012345@world_out-000002cd;1","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Hangup","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2072","content":""}, - {"Channel":"Local/+31508012345@world_out-000002cd;2","DialStatus":"ANSWER","Event":"Dial","Privilege":"call,all","SubEvent":"End","UniqueID":"ua0-acc-1507798662.2069","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+315080xxxxx","Cause":"16","Cause-txt":"Normal Clearing","Channel":"Local/+31508012345@world_out-000002cd;2","ConnectedLineName":"","ConnectedLineNum":"+31508012345","Event":"Hangup","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2069","content":""}, - {"CallerIDName":"","CallerIDNum":"+31853xxxxxx","Channel":"Local/ID580271@osvpi_route_fixeddestination-000002cc;1","ChannelState":"6","ChannelStateDesc":"Up","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2066","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+31853xxxxxx","Cause":"26","Cause-txt":"Answered elsewhere","Channel":"Local/ID580261@osvpi_route_fixeddestination-000002cb;1","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Hangup","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2064","content":""}, - {"CallerIDName":"","CallerIDNum":"+315080xxxxx","Channel":"SIP/voipgrid-siproute-dev-00000279","ChannelState":"6","ChannelStateDesc":"Up","ConnectedLineName":"","ConnectedLineNum":"","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2063","content":""}, - {"AccountCode":"12668","Channel":"Local/ID580271@osvpi_route_fixeddestination-000002cc;1","Event":"NewAccountCode","OldAccountCode":"12668","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2066","content":""}, - {"Bridgestate":"Link","Bridgetype":"core","CallerID1":"+315080xxxxx","CallerID2":"+31853xxxxxx","Channel1":"SIP/voipgrid-siproute-dev-00000279","Channel2":"Local/ID580271@osvpi_route_fixeddestination-000002cc;1","Event":"Bridge","Privilege":"call,all","Uniqueid1":"ua0-acc-1507798662.2063","Uniqueid2":"ua0-acc-1507798662.2066","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+31613925xxx","Cause":"26","Cause-txt":"Answered elsewhere","Channel":"Local/+31613925xxx@world_out-000002ce;1","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Hangup","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2070","content":""}, - {"Channel":"Local/ID580261@osvpi_route_fixeddestination-000002cb;2","DialStatus":"CANCEL","Event":"Dial","Privilege":"call,all","SubEvent":"End","UniqueID":"ua0-acc-1507798662.2065","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+315080xxxxx","Cause":"26","Cause-txt":"Answered elsewhere","Channel":"Local/ID580261@osvpi_route_fixeddestination-000002cb;2","ConnectedLineName":"","ConnectedLineNum":"+31853xxxxxx","Event":"Hangup","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2065","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+31613925xxx","Cause":"26","Cause-txt":"Answered elsewhere","Channel":"SIP/voipgrid-siproute-dev-0000027b","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Hangup","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2073","content":""}, - {"Channel":"Local/+31613925xxx@world_out-000002ce;2","DialStatus":"CANCEL","Event":"Dial","Privilege":"call,all","SubEvent":"End","UniqueID":"ua0-acc-1507798662.2071","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+315080xxxxx","Cause":"26","Cause-txt":"Answered elsewhere","Channel":"Local/+31613925xxx@world_out-000002ce;2","ConnectedLineName":"","ConnectedLineNum":"+31613925xxx","Event":"Hangup","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2071","content":""}, - {"CallerIDName":"","CallerIDNum":"+315080xxxxx","Channel":"Local/ID580271@osvpi_route_fixeddestination-000002cc;2","ChannelState":"6","ChannelStateDesc":"Up","ConnectedLineName":"","ConnectedLineNum":"+31853xxxxxx","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2067","content":""}, - {"AccountCode":"12668","Channel":"SIP/voipgrid-siproute-dev-0000027a","Event":"NewAccountCode","OldAccountCode":"12668","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2068","content":""}, - {"Bridgestate":"Link","Bridgetype":"core","CallerID1":"+315080xxxxx","CallerID2":"+31508012345","Channel1":"Local/ID580271@osvpi_route_fixeddestination-000002cc;2","Channel2":"SIP/voipgrid-siproute-dev-0000027a","Event":"Bridge","Privilege":"call,all","Uniqueid1":"ua0-acc-1507798662.2067","Uniqueid2":"ua0-acc-1507798662.2068","content":""}, - {"Clone":"SIP/voipgrid-siproute-dev-0000027a","CloneState":"Up","Event":"Masquerade","Original":"Local/ID580271@osvpi_route_fixeddestination-000002cc;1","OriginalState":"Up","Privilege":"call,all","content":""}, - {"Channel":"SIP/voipgrid-siproute-dev-0000027a","Event":"Rename","Newname":"SIP/voipgrid-siproute-dev-0000027a","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2068","content":""}, - {"Channel":"Local/ID580271@osvpi_route_fixeddestination-000002cc;1","Event":"Rename","Newname":"SIP/voipgrid-siproute-dev-0000027a","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2066","content":""}, - {"Channel":"SIP/voipgrid-siproute-dev-0000027a","Event":"Rename","Newname":"Local/ID580271@osvpi_route_fixeddestination-000002cc;1","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2068","content":""}, - {"CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDName":"","CallerIDNum":"+31853xxxxxx","Channel":"SIP/voipgrid-siproute-dev-0000027a","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2066","content":""}, - {"Bridgestate":"Unlink","Bridgetype":"core","CallerID1":"+315080xxxxx","CallerID2":"+31508012345","Channel1":"Local/ID580271@osvpi_route_fixeddestination-000002cc;2","Channel2":"Local/ID580271@osvpi_route_fixeddestination-000002cc;1","Event":"Bridge","Privilege":"call,all","Uniqueid1":"ua0-acc-1507798662.2067","Uniqueid2":"ua0-acc-1507798662.2068","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+31508012345","Cause":"16","Cause-txt":"Normal Clearing","Channel":"Local/ID580271@osvpi_route_fixeddestination-000002cc;1","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Hangup","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2068","content":""}, - {"Channel":"Local/ID580271@osvpi_route_fixeddestination-000002cc;2","DialStatus":"ANSWER","Event":"Dial","Privilege":"call,all","SubEvent":"End","UniqueID":"ua0-acc-1507798662.2067","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+315080xxxxx","Cause":"16","Cause-txt":"Normal Clearing","Channel":"Local/ID580271@osvpi_route_fixeddestination-000002cc;2","ConnectedLineName":"","ConnectedLineNum":"+31853xxxxxx","Event":"Hangup","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2067","content":""}, - {"Bridgestate":"Unlink","Bridgetype":"core","CallerID1":"+315080xxxxx","CallerID2":"+31853xxxxxx","Channel1":"SIP/voipgrid-siproute-dev-00000279","Channel2":"SIP/voipgrid-siproute-dev-0000027a","Event":"Bridge","Privilege":"call,all","Uniqueid1":"ua0-acc-1507798662.2063","Uniqueid2":"ua0-acc-1507798662.2066","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+31853xxxxxx","Cause":"16","Cause-txt":"Normal Clearing","Channel":"SIP/voipgrid-siproute-dev-0000027a","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Hangup","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2066","content":""}, - {"Channel":"SIP/voipgrid-siproute-dev-00000279","DialStatus":"ANSWER","Event":"Dial","Privilege":"call,all","SubEvent":"End","UniqueID":"ua0-acc-1507798662.2063","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+315080xxxxx","Cause":"16","Cause-txt":"Normal Clearing","Channel":"SIP/voipgrid-siproute-dev-00000279","ConnectedLineName":"","ConnectedLineNum":"","Event":"Hangup","Privilege":"call,all","Uniqueid":"ua0-acc-1507798662.2063","content":""} -] diff --git a/tests/fixtures/acceptance/accept_multiple_complexaccepted.json b/tests/fixtures/acceptance/accept_multiple_complexaccepted.json deleted file mode 100644 index 296a112..0000000 --- a/tests/fixtures/acceptance/accept_multiple_complexaccepted.json +++ /dev/null @@ -1,89 +0,0 @@ -[{"Event":"FullyBooted","Privilege":"system,all","Status":"Fully Booted","content":""}, - {"Event":"FullyBooted","Privilege":"system,all","Status":"Fully Booted","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"+315080xxxxx","Channel":"SIP/voipgrid-siproute-dev-0000027f","ChannelState":"0","ChannelStateDesc":"Down","Context":"voipgrid_in","Event":"Newchannel","Exten":"+31853xxxxxx","Privilege":"call,all","Uniqueid":"ua0-acc-1507800454.2085","content":""}, - {"CallerIDName":"","CallerIDNum":"+315080xxxxx","Channel":"SIP/voipgrid-siproute-dev-0000027f","ChannelState":"4","ChannelStateDesc":"Ring","ConnectedLineName":"","ConnectedLineNum":"","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507800454.2085","content":""}, - {"AccountCode":"12668","Channel":"SIP/voipgrid-siproute-dev-0000027f","Event":"NewAccountCode","Privilege":"call,all","Uniqueid":"ua0-acc-1507800454.2085","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"","Channel":"Local/ID580261@osvpi_route_fixeddestination-000002d3;1","ChannelState":"0","ChannelStateDesc":"Down","Context":"osvpi_route_fixeddestination","Event":"Newchannel","Exten":"ID580261","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2086","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"","Channel":"Local/ID580261@osvpi_route_fixeddestination-000002d3;2","ChannelState":"4","ChannelStateDesc":"Ring","Context":"osvpi_route_fixeddestination","Event":"Newchannel","Exten":"ID580261","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2087","content":""}, - {"CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDName":"","CallerIDNum":"+31853xxxxxx","Channel":"Local/ID580261@osvpi_route_fixeddestination-000002d3;1","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2086","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"","Channel":"Local/ID580271@osvpi_route_fixeddestination-000002d4;1","ChannelState":"0","ChannelStateDesc":"Down","Context":"osvpi_route_fixeddestination","Event":"Newchannel","Exten":"ID580271","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2088","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"","Channel":"Local/ID580271@osvpi_route_fixeddestination-000002d4;2","ChannelState":"4","ChannelStateDesc":"Ring","Context":"osvpi_route_fixeddestination","Event":"Newchannel","Exten":"ID580271","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2089","content":""}, - {"CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDName":"","CallerIDNum":"+31853xxxxxx","Channel":"Local/ID580271@osvpi_route_fixeddestination-000002d4;1","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2088","content":""}, - {"Channel1":"Local/ID580261@osvpi_route_fixeddestination-000002d3;1","Channel2":"Local/ID580261@osvpi_route_fixeddestination-000002d3;2","Context":"osvpi_route_fixeddestination","Event":"LocalBridge","Exten":"ID580261","LocalOptimization":"Yes","Privilege":"call,all","Uniqueid1":"ua0-acc-1507800455.2086","Uniqueid2":"ua0-acc-1507800455.2087","content":""}, - {"CallerIDName":"","CallerIDNum":"+315080xxxxx","Channel":"SIP/voipgrid-siproute-dev-0000027f","ConnectedLineName":"","ConnectedLineNum":"","DestUniqueID":"ua0-acc-1507800455.2086","Destination":"Local/ID580261@osvpi_route_fixeddestination-000002d3;1","Dialstring":"ID580261@osvpi_route_fixeddestination","Event":"Dial","Privilege":"call,all","SubEvent":"Begin","UniqueID":"ua0-acc-1507800454.2085","content":""}, - {"Channel1":"Local/ID580271@osvpi_route_fixeddestination-000002d4;1","Channel2":"Local/ID580271@osvpi_route_fixeddestination-000002d4;2","Context":"osvpi_route_fixeddestination","Event":"LocalBridge","Exten":"ID580271","LocalOptimization":"Yes","Privilege":"call,all","Uniqueid1":"ua0-acc-1507800455.2088","Uniqueid2":"ua0-acc-1507800455.2089","content":""}, - {"CallerIDName":"","CallerIDNum":"+315080xxxxx","Channel":"SIP/voipgrid-siproute-dev-0000027f","ConnectedLineName":"","ConnectedLineNum":"","DestUniqueID":"ua0-acc-1507800455.2088","Destination":"Local/ID580271@osvpi_route_fixeddestination-000002d4;1","Dialstring":"ID580271@osvpi_route_fixeddestination","Event":"Dial","Privilege":"call,all","SubEvent":"Begin","UniqueID":"ua0-acc-1507800454.2085","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"","Channel":"Local/+31508012345@world_out-000002d5;1","ChannelState":"0","ChannelStateDesc":"Down","Context":"world_out","Event":"Newchannel","Exten":"+31508012345","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2090","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"","Channel":"Local/+31508012345@world_out-000002d5;2","ChannelState":"4","ChannelStateDesc":"Ring","Context":"world_out","Event":"Newchannel","Exten":"+31508012345","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2091","content":""}, - {"CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDName":"","CallerIDNum":"+31508012345","Channel":"Local/+31508012345@world_out-000002d5;1","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2090","content":""}, - {"Channel1":"Local/+31508012345@world_out-000002d5;1","Channel2":"Local/+31508012345@world_out-000002d5;2","Context":"world_out","Event":"LocalBridge","Exten":"+31508012345","LocalOptimization":"Yes","Privilege":"call,all","Uniqueid1":"ua0-acc-1507800455.2090","Uniqueid2":"ua0-acc-1507800455.2091","content":""}, - {"CallerIDName":"","CallerIDNum":"+315080xxxxx","Channel":"Local/ID580271@osvpi_route_fixeddestination-000002d4;2","ConnectedLineName":"","ConnectedLineNum":"+31853xxxxxx","DestUniqueID":"ua0-acc-1507800455.2090","Destination":"Local/+31508012345@world_out-000002d5;1","Dialstring":"+31508012345@world_out","Event":"Dial","Privilege":"call,all","SubEvent":"Begin","UniqueID":"ua0-acc-1507800455.2089","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"","Channel":"Local/+31613925xxx@world_out-000002d6;1","ChannelState":"0","ChannelStateDesc":"Down","Context":"world_out","Event":"Newchannel","Exten":"+31613925xxx","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2092","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"","Channel":"Local/+31613925xxx@world_out-000002d6;2","ChannelState":"4","ChannelStateDesc":"Ring","Context":"world_out","Event":"Newchannel","Exten":"+31613925xxx","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2093","content":""}, - {"CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDName":"","CallerIDNum":"+31613925xxx","Channel":"Local/+31613925xxx@world_out-000002d6;1","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2092","content":""}, - {"Channel1":"Local/+31613925xxx@world_out-000002d6;1","Channel2":"Local/+31613925xxx@world_out-000002d6;2","Context":"world_out","Event":"LocalBridge","Exten":"+31613925xxx","LocalOptimization":"Yes","Privilege":"call,all","Uniqueid1":"ua0-acc-1507800455.2092","Uniqueid2":"ua0-acc-1507800455.2093","content":""}, - {"CallerIDName":"","CallerIDNum":"+315080xxxxx","Channel":"Local/ID580261@osvpi_route_fixeddestination-000002d3;2","ConnectedLineName":"","ConnectedLineNum":"+31853xxxxxx","DestUniqueID":"ua0-acc-1507800455.2092","Destination":"Local/+31613925xxx@world_out-000002d6;1","Dialstring":"+31613925xxx@world_out","Event":"Dial","Privilege":"call,all","SubEvent":"Begin","UniqueID":"ua0-acc-1507800455.2087","content":""}, - {"CallerIDName":"","CallerIDNum":"+31853xxxxxx","Channel":"Local/ID580271@osvpi_route_fixeddestination-000002d4;1","ChannelState":"5","ChannelStateDesc":"Ringing","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2088","content":""}, - {"CallerIDName":"","CallerIDNum":"+31853xxxxxx","Channel":"Local/ID580261@osvpi_route_fixeddestination-000002d3;1","ChannelState":"5","ChannelStateDesc":"Ringing","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2086","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"","Channel":"SIP/voipgrid-siproute-dev-00000280","ChannelState":"0","ChannelStateDesc":"Down","Context":"voipgrid_in","Event":"Newchannel","Exten":"","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2094","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"","Channel":"SIP/voipgrid-siproute-dev-00000281","ChannelState":"0","ChannelStateDesc":"Down","Context":"voipgrid_in","Event":"Newchannel","Exten":"","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2095","content":""}, - {"CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDName":"","CallerIDNum":"+31613925xxx","Channel":"SIP/voipgrid-siproute-dev-00000280","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2094","content":""}, - {"CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDName":"","CallerIDNum":"+31508012345","Channel":"SIP/voipgrid-siproute-dev-00000281","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2095","content":""}, - {"CallerIDName":"","CallerIDNum":"+315080xxxxx","Channel":"Local/+31508012345@world_out-000002d5;2","ConnectedLineName":"","ConnectedLineNum":"+31508012345","DestUniqueID":"ua0-acc-1507800455.2095","Destination":"SIP/voipgrid-siproute-dev-00000281","Dialstring":"+31508012345@voipgrid-siproute-dev","Event":"Dial","Privilege":"call,all","SubEvent":"Begin","UniqueID":"ua0-acc-1507800455.2091","content":""}, - {"CallerIDName":"","CallerIDNum":"+315080xxxxx","Channel":"Local/+31613925xxx@world_out-000002d6;2","ConnectedLineName":"","ConnectedLineNum":"+31613925xxx","DestUniqueID":"ua0-acc-1507800455.2094","Destination":"SIP/voipgrid-siproute-dev-00000280","Dialstring":"+31613925xxx@voipgrid-siproute-dev","Event":"Dial","Privilege":"call,all","SubEvent":"Begin","UniqueID":"ua0-acc-1507800455.2093","content":""}, - {"CallerIDName":"","CallerIDNum":"+31508012345","Channel":"SIP/voipgrid-siproute-dev-00000281","ChannelState":"5","ChannelStateDesc":"Ringing","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2095","content":""}, - {"CallerIDName":"","CallerIDNum":"+31508012345","Channel":"Local/+31508012345@world_out-000002d5;1","ChannelState":"5","ChannelStateDesc":"Ringing","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2090","content":""}, - {"CallerIDName":"","CallerIDNum":"+31613925xxx","Channel":"SIP/voipgrid-siproute-dev-00000280","ChannelState":"5","ChannelStateDesc":"Ringing","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2094","content":""}, - {"CallerIDName":"","CallerIDNum":"+31613925xxx","Channel":"Local/+31613925xxx@world_out-000002d6;1","ChannelState":"5","ChannelStateDesc":"Ringing","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2092","content":""}, - {"CallerIDName":"","CallerIDNum":"+31508012345","Channel":"SIP/voipgrid-siproute-dev-00000281","ChannelState":"6","ChannelStateDesc":"Up","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2095","content":""}, - {"CallerIDName":"","CallerIDNum":"+315080xxxxx","Channel":"Local/+31508012345@world_out-000002d5;2","ChannelState":"6","ChannelStateDesc":"Up","ConnectedLineName":"","ConnectedLineNum":"+31508012345","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2091","content":""}, - {"AccountCode":"12668","Channel":"SIP/voipgrid-siproute-dev-00000281","Event":"NewAccountCode","OldAccountCode":"12668","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2095","content":""}, - {"Bridgestate":"Link","Bridgetype":"core","CallerID1":"+315080xxxxx","CallerID2":"+31508012345","Channel1":"Local/+31508012345@world_out-000002d5;2","Channel2":"SIP/voipgrid-siproute-dev-00000281","Event":"Bridge","Privilege":"call,all","Uniqueid1":"ua0-acc-1507800455.2091","Uniqueid2":"ua0-acc-1507800455.2095","content":""}, - {"CallerIDName":"","CallerIDNum":"+31508012345","Channel":"Local/+31508012345@world_out-000002d5;1","ChannelState":"6","ChannelStateDesc":"Up","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2090","content":""}, - {"Clone":"SIP/voipgrid-siproute-dev-00000281","CloneState":"Up","Event":"Masquerade","Original":"Local/+31508012345@world_out-000002d5;1","OriginalState":"Up","Privilege":"call,all","content":""}, - {"Channel":"SIP/voipgrid-siproute-dev-00000281","Event":"Rename","Newname":"SIP/voipgrid-siproute-dev-00000281","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2095","content":""}, - {"Channel":"Local/+31508012345@world_out-000002d5;1","Event":"Rename","Newname":"SIP/voipgrid-siproute-dev-00000281","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2090","content":""}, - {"Channel":"SIP/voipgrid-siproute-dev-00000281","Event":"Rename","Newname":"Local/+31508012345@world_out-000002d5;1","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2095","content":""}, - {"CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDName":"","CallerIDNum":"+31508012345","Channel":"SIP/voipgrid-siproute-dev-00000281","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2090","content":""}, - {"Bridgestate":"Unlink","Bridgetype":"core","CallerID1":"+315080xxxxx","CallerID2":"+31508012345","Channel1":"Local/+31508012345@world_out-000002d5;2","Channel2":"Local/+31508012345@world_out-000002d5;1","Event":"Bridge","Privilege":"call,all","Uniqueid1":"ua0-acc-1507800455.2091","Uniqueid2":"ua0-acc-1507800455.2095","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+31508012345","Cause":"16","Cause-txt":"Normal Clearing","Channel":"Local/+31508012345@world_out-000002d5;1","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Hangup","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2095","content":""}, - {"Channel":"Local/+31508012345@world_out-000002d5;2","DialStatus":"ANSWER","Event":"Dial","Privilege":"call,all","SubEvent":"End","UniqueID":"ua0-acc-1507800455.2091","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+315080xxxxx","Cause":"16","Cause-txt":"Normal Clearing","Channel":"Local/+31508012345@world_out-000002d5;2","ConnectedLineName":"","ConnectedLineNum":"+31508012345","Event":"Hangup","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2091","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+31508012345","Cause":"16","Cause-txt":"Normal Clearing","Channel":"SIP/voipgrid-siproute-dev-00000281","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Hangup","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2090","content":""}, - {"Channel":"Local/ID580271@osvpi_route_fixeddestination-000002d4;2","DialStatus":"ANSWER","Event":"Dial","Privilege":"call,all","SubEvent":"End","UniqueID":"ua0-acc-1507800455.2089","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+31853xxxxxx","Cause":"16","Cause-txt":"Normal Clearing","Channel":"Local/ID580271@osvpi_route_fixeddestination-000002d4;1","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Hangup","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2088","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+315080xxxxx","Cause":"16","Cause-txt":"Normal Clearing","Channel":"Local/ID580271@osvpi_route_fixeddestination-000002d4;2","ConnectedLineName":"","ConnectedLineNum":"+31853xxxxxx","Event":"Hangup","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2089","content":""}, - {"CallerIDName":"","CallerIDNum":"+31613925xxx","Channel":"SIP/voipgrid-siproute-dev-00000280","ChannelState":"6","ChannelStateDesc":"Up","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2094","content":""}, - {"CallerIDName":"","CallerIDNum":"+315080xxxxx","Channel":"Local/+31613925xxx@world_out-000002d6;2","ChannelState":"6","ChannelStateDesc":"Up","ConnectedLineName":"","ConnectedLineNum":"+31613925xxx","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2093","content":""}, - {"AccountCode":"12668","Channel":"SIP/voipgrid-siproute-dev-00000280","Event":"NewAccountCode","OldAccountCode":"12668","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2094","content":""}, - {"Bridgestate":"Link","Bridgetype":"core","CallerID1":"+315080xxxxx","CallerID2":"+31613925xxx","Channel1":"Local/+31613925xxx@world_out-000002d6;2","Channel2":"SIP/voipgrid-siproute-dev-00000280","Event":"Bridge","Privilege":"call,all","Uniqueid1":"ua0-acc-1507800455.2093","Uniqueid2":"ua0-acc-1507800455.2094","content":""}, - {"CallerIDName":"","CallerIDNum":"+31613925xxx","Channel":"Local/+31613925xxx@world_out-000002d6;1","ChannelState":"6","ChannelStateDesc":"Up","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2092","content":""}, - {"Clone":"SIP/voipgrid-siproute-dev-00000280","CloneState":"Up","Event":"Masquerade","Original":"Local/+31613925xxx@world_out-000002d6;1","OriginalState":"Up","Privilege":"call,all","content":""}, - {"Channel":"SIP/voipgrid-siproute-dev-00000280","Event":"Rename","Newname":"SIP/voipgrid-siproute-dev-00000280","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2094","content":""}, - {"Channel":"Local/+31613925xxx@world_out-000002d6;1","Event":"Rename","Newname":"SIP/voipgrid-siproute-dev-00000280","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2092","content":""}, - {"Channel":"SIP/voipgrid-siproute-dev-00000280","Event":"Rename","Newname":"Local/+31613925xxx@world_out-000002d6;1","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2094","content":""}, - {"CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDName":"","CallerIDNum":"+31613925xxx","Channel":"SIP/voipgrid-siproute-dev-00000280","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2092","content":""}, - {"Bridgestate":"Unlink","Bridgetype":"core","CallerID1":"+315080xxxxx","CallerID2":"+31613925xxx","Channel1":"Local/+31613925xxx@world_out-000002d6;2","Channel2":"Local/+31613925xxx@world_out-000002d6;1","Event":"Bridge","Privilege":"call,all","Uniqueid1":"ua0-acc-1507800455.2093","Uniqueid2":"ua0-acc-1507800455.2094","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+31613925xxx","Cause":"16","Cause-txt":"Normal Clearing","Channel":"Local/+31613925xxx@world_out-000002d6;1","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Hangup","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2094","content":""}, - {"Channel":"Local/+31613925xxx@world_out-000002d6;2","DialStatus":"ANSWER","Event":"Dial","Privilege":"call,all","SubEvent":"End","UniqueID":"ua0-acc-1507800455.2093","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+315080xxxxx","Cause":"16","Cause-txt":"Normal Clearing","Channel":"Local/+31613925xxx@world_out-000002d6;2","ConnectedLineName":"","ConnectedLineNum":"+31613925xxx","Event":"Hangup","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2093","content":""}, - {"CallerIDName":"","CallerIDNum":"+31853xxxxxx","Channel":"Local/ID580261@osvpi_route_fixeddestination-000002d3;1","ChannelState":"6","ChannelStateDesc":"Up","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2086","content":""}, - {"CallerIDName":"","CallerIDNum":"+315080xxxxx","Channel":"SIP/voipgrid-siproute-dev-0000027f","ChannelState":"6","ChannelStateDesc":"Up","ConnectedLineName":"","ConnectedLineNum":"","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507800454.2085","content":""}, - {"AccountCode":"12668","Channel":"Local/ID580261@osvpi_route_fixeddestination-000002d3;1","Event":"NewAccountCode","OldAccountCode":"12668","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2086","content":""}, - {"Bridgestate":"Link","Bridgetype":"core","CallerID1":"+315080xxxxx","CallerID2":"+31853xxxxxx","Channel1":"SIP/voipgrid-siproute-dev-0000027f","Channel2":"Local/ID580261@osvpi_route_fixeddestination-000002d3;1","Event":"Bridge","Privilege":"call,all","Uniqueid1":"ua0-acc-1507800454.2085","Uniqueid2":"ua0-acc-1507800455.2086","content":""}, - {"CallerIDName":"","CallerIDNum":"+315080xxxxx","Channel":"Local/ID580261@osvpi_route_fixeddestination-000002d3;2","ChannelState":"6","ChannelStateDesc":"Up","ConnectedLineName":"","ConnectedLineNum":"+31853xxxxxx","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2087","content":""}, - {"AccountCode":"12668","Channel":"SIP/voipgrid-siproute-dev-00000280","Event":"NewAccountCode","OldAccountCode":"12668","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2092","content":""}, - {"Bridgestate":"Link","Bridgetype":"core","CallerID1":"+315080xxxxx","CallerID2":"+31613925xxx","Channel1":"Local/ID580261@osvpi_route_fixeddestination-000002d3;2","Channel2":"SIP/voipgrid-siproute-dev-00000280","Event":"Bridge","Privilege":"call,all","Uniqueid1":"ua0-acc-1507800455.2087","Uniqueid2":"ua0-acc-1507800455.2092","content":""}, - {"Clone":"SIP/voipgrid-siproute-dev-00000280","CloneState":"Up","Event":"Masquerade","Original":"Local/ID580261@osvpi_route_fixeddestination-000002d3;1","OriginalState":"Up","Privilege":"call,all","content":""}, - {"Channel":"SIP/voipgrid-siproute-dev-00000280","Event":"Rename","Newname":"SIP/voipgrid-siproute-dev-00000280","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2092","content":""}, - {"Channel":"Local/ID580261@osvpi_route_fixeddestination-000002d3;1","Event":"Rename","Newname":"SIP/voipgrid-siproute-dev-00000280","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2086","content":""}, - {"Channel":"SIP/voipgrid-siproute-dev-00000280","Event":"Rename","Newname":"Local/ID580261@osvpi_route_fixeddestination-000002d3;1","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2092","content":""}, - {"CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDName":"","CallerIDNum":"+31853xxxxxx","Channel":"SIP/voipgrid-siproute-dev-00000280","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2086","content":""}, - {"Bridgestate":"Unlink","Bridgetype":"core","CallerID1":"+315080xxxxx","CallerID2":"+31613925xxx","Channel1":"Local/ID580261@osvpi_route_fixeddestination-000002d3;2","Channel2":"Local/ID580261@osvpi_route_fixeddestination-000002d3;1","Event":"Bridge","Privilege":"call,all","Uniqueid1":"ua0-acc-1507800455.2087","Uniqueid2":"ua0-acc-1507800455.2092","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+31613925xxx","Cause":"16","Cause-txt":"Normal Clearing","Channel":"Local/ID580261@osvpi_route_fixeddestination-000002d3;1","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Hangup","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2092","content":""}, - {"Channel":"Local/ID580261@osvpi_route_fixeddestination-000002d3;2","DialStatus":"ANSWER","Event":"Dial","Privilege":"call,all","SubEvent":"End","UniqueID":"ua0-acc-1507800455.2087","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+315080xxxxx","Cause":"16","Cause-txt":"Normal Clearing","Channel":"Local/ID580261@osvpi_route_fixeddestination-000002d3;2","ConnectedLineName":"","ConnectedLineNum":"+31853xxxxxx","Event":"Hangup","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2087","content":""}, - {"Bridgestate":"Unlink","Bridgetype":"core","CallerID1":"+315080xxxxx","CallerID2":"+31853xxxxxx","Channel1":"SIP/voipgrid-siproute-dev-0000027f","Channel2":"SIP/voipgrid-siproute-dev-00000280","Event":"Bridge","Privilege":"call,all","Uniqueid1":"ua0-acc-1507800454.2085","Uniqueid2":"ua0-acc-1507800455.2086","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+31853xxxxxx","Cause":"16","Cause-txt":"Normal Clearing","Channel":"SIP/voipgrid-siproute-dev-00000280","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Hangup","Privilege":"call,all","Uniqueid":"ua0-acc-1507800455.2086","content":""}, - {"Channel":"SIP/voipgrid-siproute-dev-0000027f","DialStatus":"ANSWER","Event":"Dial","Privilege":"call,all","SubEvent":"End","UniqueID":"ua0-acc-1507800454.2085","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+315080xxxxx","Cause":"16","Cause-txt":"Normal Clearing","Channel":"SIP/voipgrid-siproute-dev-0000027f","ConnectedLineName":"","ConnectedLineNum":"","Event":"Hangup","Privilege":"call,all","Uniqueid":"ua0-acc-1507800454.2085","content":""}] diff --git a/tests/fixtures/acceptance/accept_notaccepted.json b/tests/fixtures/acceptance/accept_notaccepted.json deleted file mode 100644 index dcb1528..0000000 --- a/tests/fixtures/acceptance/accept_notaccepted.json +++ /dev/null @@ -1,42 +0,0 @@ -[ - {"Event":"FullyBooted","Privilege":"system,all","Status":"Fully Booted","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"+315080xxxxx","Channel":"SIP/voipgrid-siproute-dev-00000252","ChannelState":"0","ChannelStateDesc":"Down","Context":"voipgrid_in","Event":"Newchannel","Exten":"+31853xxxxxx","Privilege":"call,all","Uniqueid":"ua0-acc-1507621393.1940","content":""}, - {"CallerIDName":"","CallerIDNum":"+315080xxxxx","Channel":"SIP/voipgrid-siproute-dev-00000252","ChannelState":"4","ChannelStateDesc":"Ring","ConnectedLineName":"","ConnectedLineNum":"","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507621393.1940","content":""}, - {"AccountCode":"12668","Channel":"SIP/voipgrid-siproute-dev-00000252","Event":"NewAccountCode","Privilege":"call,all","Uniqueid":"ua0-acc-1507621393.1940","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"","Channel":"Local/ID580261@osvpi_route_fixeddestination-000002a1;1","ChannelState":"0","ChannelStateDesc":"Down","Context":"osvpi_route_fixeddestination","Event":"Newchannel","Exten":"ID580261","Privilege":"call,all","Uniqueid":"ua0-acc-1507621393.1941","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"","Channel":"Local/ID580261@osvpi_route_fixeddestination-000002a1;2","ChannelState":"4","ChannelStateDesc":"Ring","Context":"osvpi_route_fixeddestination","Event":"Newchannel","Exten":"ID580261","Privilege":"call,all","Uniqueid":"ua0-acc-1507621393.1942","content":""}, - {"CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDName":"","CallerIDNum":"+31853xxxxxx","Channel":"Local/ID580261@osvpi_route_fixeddestination-000002a1;1","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"ua0-acc-1507621393.1941","content":""}, - {"Channel1":"Local/ID580261@osvpi_route_fixeddestination-000002a1;1","Channel2":"Local/ID580261@osvpi_route_fixeddestination-000002a1;2","Context":"osvpi_route_fixeddestination","Event":"LocalBridge","Exten":"ID580261","LocalOptimization":"Yes","Privilege":"call,all","Uniqueid1":"ua0-acc-1507621393.1941","Uniqueid2":"ua0-acc-1507621393.1942","content":""}, - {"CallerIDName":"","CallerIDNum":"+315080xxxxx","Channel":"SIP/voipgrid-siproute-dev-00000252","ConnectedLineName":"","ConnectedLineNum":"","DestUniqueID":"ua0-acc-1507621393.1941","Destination":"Local/ID580261@osvpi_route_fixeddestination-000002a1;1","Dialstring":"ID580261@osvpi_route_fixeddestination","Event":"Dial","Privilege":"call,all","SubEvent":"Begin","UniqueID":"ua0-acc-1507621393.1940","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"","Channel":"Local/+31613925xxx@world_out-000002a2;1","ChannelState":"0","ChannelStateDesc":"Down","Context":"world_out","Event":"Newchannel","Exten":"+31613925xxx","Privilege":"call,all","Uniqueid":"ua0-acc-1507621393.1943","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"","Channel":"Local/+31613925xxx@world_out-000002a2;2","ChannelState":"4","ChannelStateDesc":"Ring","Context":"world_out","Event":"Newchannel","Exten":"+31613925xxx","Privilege":"call,all","Uniqueid":"ua0-acc-1507621393.1944","content":""}, - {"CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDName":"","CallerIDNum":"+31613925xxx","Channel":"Local/+31613925xxx@world_out-000002a2;1","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"ua0-acc-1507621393.1943","content":""}, - {"Channel1":"Local/+31613925xxx@world_out-000002a2;1","Channel2":"Local/+31613925xxx@world_out-000002a2;2","Context":"world_out","Event":"LocalBridge","Exten":"+31613925xxx","LocalOptimization":"Yes","Privilege":"call,all","Uniqueid1":"ua0-acc-1507621393.1943","Uniqueid2":"ua0-acc-1507621393.1944","content":""}, - {"CallerIDName":"","CallerIDNum":"+315080xxxxx","Channel":"Local/ID580261@osvpi_route_fixeddestination-000002a1;2","ConnectedLineName":"","ConnectedLineNum":"+31853xxxxxx","DestUniqueID":"ua0-acc-1507621393.1943","Destination":"Local/+31613925xxx@world_out-000002a2;1","Dialstring":"+31613925xxx@world_out","Event":"Dial","Privilege":"call,all","SubEvent":"Begin","UniqueID":"ua0-acc-1507621393.1942","content":""}, - {"CallerIDName":"","CallerIDNum":"+31853xxxxxx","Channel":"Local/ID580261@osvpi_route_fixeddestination-000002a1;1","ChannelState":"5","ChannelStateDesc":"Ringing","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507621393.1941","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"","Channel":"SIP/voipgrid-siproute-dev-00000253","ChannelState":"0","ChannelStateDesc":"Down","Context":"voipgrid_in","Event":"Newchannel","Exten":"","Privilege":"call,all","Uniqueid":"ua0-acc-1507621393.1945","content":""}, - {"CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDName":"","CallerIDNum":"+31613925xxx","Channel":"SIP/voipgrid-siproute-dev-00000253","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"ua0-acc-1507621393.1945","content":""}, - {"CallerIDName":"","CallerIDNum":"+315080xxxxx","Channel":"Local/+31613925xxx@world_out-000002a2;2","ConnectedLineName":"","ConnectedLineNum":"+31613925xxx","DestUniqueID":"ua0-acc-1507621393.1945","Destination":"SIP/voipgrid-siproute-dev-00000253","Dialstring":"+31613925xxx@voipgrid-siproute-dev","Event":"Dial","Privilege":"call,all","SubEvent":"Begin","UniqueID":"ua0-acc-1507621393.1944","content":""}, - {"CallerIDName":"","CallerIDNum":"+31613925xxx","Channel":"SIP/voipgrid-siproute-dev-00000253","ChannelState":"5","ChannelStateDesc":"Ringing","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507621393.1945","content":""}, - {"CallerIDName":"","CallerIDNum":"+31613925xxx","Channel":"Local/+31613925xxx@world_out-000002a2;1","ChannelState":"5","ChannelStateDesc":"Ringing","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507621393.1943","content":""}, - {"CallerIDName":"","CallerIDNum":"+31613925xxx","Channel":"SIP/voipgrid-siproute-dev-00000253","ChannelState":"6","ChannelStateDesc":"Up","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507621393.1945","content":""}, - {"CallerIDName":"","CallerIDNum":"+31613925xxx","Channel":"Local/+31613925xxx@world_out-000002a2;1","ChannelState":"6","ChannelStateDesc":"Up","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507621393.1943","content":""}, - {"CallerIDName":"","CallerIDNum":"+315080xxxxx","Channel":"Local/+31613925xxx@world_out-000002a2;2","ChannelState":"6","ChannelStateDesc":"Up","ConnectedLineName":"","ConnectedLineNum":"+31613925xxx","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507621393.1944","content":""}, - {"AccountCode":"12668","Channel":"SIP/voipgrid-siproute-dev-00000253","Event":"NewAccountCode","OldAccountCode":"12668","Privilege":"call,all","Uniqueid":"ua0-acc-1507621393.1945","content":""}, - {"Bridgestate":"Link","Bridgetype":"core","CallerID1":"+315080xxxxx","CallerID2":"+31613925xxx","Channel1":"Local/+31613925xxx@world_out-000002a2;2","Channel2":"SIP/voipgrid-siproute-dev-00000253","Event":"Bridge","Privilege":"call,all","Uniqueid1":"ua0-acc-1507621393.1944","Uniqueid2":"ua0-acc-1507621393.1945","content":""}, - {"Clone":"SIP/voipgrid-siproute-dev-00000253","CloneState":"Up","Event":"Masquerade","Original":"Local/+31613925xxx@world_out-000002a2;1","OriginalState":"Up","Privilege":"call,all","content":""}, - {"Channel":"SIP/voipgrid-siproute-dev-00000253","Event":"Rename","Newname":"SIP/voipgrid-siproute-dev-00000253","Privilege":"call,all","Uniqueid":"ua0-acc-1507621393.1945","content":""}, - {"Channel":"Local/+31613925xxx@world_out-000002a2;1","Event":"Rename","Newname":"SIP/voipgrid-siproute-dev-00000253","Privilege":"call,all","Uniqueid":"ua0-acc-1507621393.1943","content":""}, - {"Channel":"SIP/voipgrid-siproute-dev-00000253","Event":"Rename","Newname":"Local/+31613925xxx@world_out-000002a2;1","Privilege":"call,all","Uniqueid":"ua0-acc-1507621393.1945","content":""}, - {"CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDName":"","CallerIDNum":"+31613925xxx","Channel":"SIP/voipgrid-siproute-dev-00000253","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"ua0-acc-1507621393.1943","content":""}, - {"Bridgestate":"Unlink","Bridgetype":"core","CallerID1":"+315080xxxxx","CallerID2":"+31613925xxx","Channel1":"Local/+31613925xxx@world_out-000002a2;2","Channel2":"Local/+31613925xxx@world_out-000002a2;1","Event":"Bridge","Privilege":"call,all","Uniqueid1":"ua0-acc-1507621393.1944","Uniqueid2":"ua0-acc-1507621393.1945","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+31613925xxx","Cause":"16","Cause-txt":"Normal Clearing","Channel":"Local/+31613925xxx@world_out-000002a2;1","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Hangup","Privilege":"call,all","Uniqueid":"ua0-acc-1507621393.1945","content":""}, - {"Channel":"Local/+31613925xxx@world_out-000002a2;2","DialStatus":"ANSWER","Event":"Dial","Privilege":"call,all","SubEvent":"End","UniqueID":"ua0-acc-1507621393.1944","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+315080xxxxx","Cause":"16","Cause-txt":"Normal Clearing","Channel":"Local/+31613925xxx@world_out-000002a2;2","ConnectedLineName":"","ConnectedLineNum":"+31613925xxx","Event":"Hangup","Privilege":"call,all","Uniqueid":"ua0-acc-1507621393.1944","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+31613925xxx","Cause":"16","Cause-txt":"Normal Clearing","Channel":"SIP/voipgrid-siproute-dev-00000253","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Hangup","Privilege":"call,all","Uniqueid":"ua0-acc-1507621393.1943","content":""}, - {"Channel":"Local/ID580261@osvpi_route_fixeddestination-000002a1;2","DialStatus":"ANSWER","Event":"Dial","Privilege":"call,all","SubEvent":"End","UniqueID":"ua0-acc-1507621393.1942","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+31853xxxxxx","Cause":"16","Cause-txt":"Normal Clearing","Channel":"Local/ID580261@osvpi_route_fixeddestination-000002a1;1","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Hangup","Privilege":"call,all","Uniqueid":"ua0-acc-1507621393.1941","content":""}, - {"Channel":"SIP/voipgrid-siproute-dev-00000252","DialStatus":"NOANSWER","Event":"Dial","Privilege":"call,all","SubEvent":"End","UniqueID":"ua0-acc-1507621393.1940","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+315080xxxxx","Cause":"16","Cause-txt":"Normal Clearing","Channel":"Local/ID580261@osvpi_route_fixeddestination-000002a1;2","ConnectedLineName":"","ConnectedLineNum":"+31853xxxxxx","Event":"Hangup","Privilege":"call,all","Uniqueid":"ua0-acc-1507621393.1942","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+315080xxxxx","Cause":"16","Cause-txt":"Normal Clearing","Channel":"SIP/voipgrid-siproute-dev-00000252","ConnectedLineName":"","ConnectedLineNum":"","Event":"Hangup","Privilege":"call,all","Uniqueid":"ua0-acc-1507621393.1940","content":""} -] diff --git a/tests/fixtures/acceptance/accept_timeout.json b/tests/fixtures/acceptance/accept_timeout.json deleted file mode 100644 index 65b6ba8..0000000 --- a/tests/fixtures/acceptance/accept_timeout.json +++ /dev/null @@ -1,31 +0,0 @@ -[ - {"Event":"FullyBooted","Privilege":"system,all","Status":"Fully Booted","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"+315080xxxxx","Channel":"SIP/voipgrid-siproute-dev-00000273","ChannelState":"0","ChannelStateDesc":"Down","Context":"voipgrid_in","Event":"Newchannel","Exten":"+31853xxxxxx","Privilege":"call,all","Uniqueid":"ua0-acc-1507624058.2045","content":""}, - {"CallerIDName":"","CallerIDNum":"+315080xxxxx","Channel":"SIP/voipgrid-siproute-dev-00000273","ChannelState":"4","ChannelStateDesc":"Ring","ConnectedLineName":"","ConnectedLineNum":"","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507624058.2045","content":""}, - {"AccountCode":"12668","Channel":"SIP/voipgrid-siproute-dev-00000273","Event":"NewAccountCode","Privilege":"call,all","Uniqueid":"ua0-acc-1507624058.2045","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"","Channel":"Local/ID580261@osvpi_route_fixeddestination-000002c5;1","ChannelState":"0","ChannelStateDesc":"Down","Context":"osvpi_route_fixeddestination","Event":"Newchannel","Exten":"ID580261","Privilege":"call,all","Uniqueid":"ua0-acc-1507624058.2046","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"","Channel":"Local/ID580261@osvpi_route_fixeddestination-000002c5;2","ChannelState":"4","ChannelStateDesc":"Ring","Context":"osvpi_route_fixeddestination","Event":"Newchannel","Exten":"ID580261","Privilege":"call,all","Uniqueid":"ua0-acc-1507624058.2047","content":""}, - {"CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDName":"","CallerIDNum":"+31853xxxxxx","Channel":"Local/ID580261@osvpi_route_fixeddestination-000002c5;1","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"ua0-acc-1507624058.2046","content":""}, - {"Channel1":"Local/ID580261@osvpi_route_fixeddestination-000002c5;1","Channel2":"Local/ID580261@osvpi_route_fixeddestination-000002c5;2","Context":"osvpi_route_fixeddestination","Event":"LocalBridge","Exten":"ID580261","LocalOptimization":"Yes","Privilege":"call,all","Uniqueid1":"ua0-acc-1507624058.2046","Uniqueid2":"ua0-acc-1507624058.2047","content":""}, - {"CallerIDName":"","CallerIDNum":"+315080xxxxx","Channel":"SIP/voipgrid-siproute-dev-00000273","ConnectedLineName":"","ConnectedLineNum":"","DestUniqueID":"ua0-acc-1507624058.2046","Destination":"Local/ID580261@osvpi_route_fixeddestination-000002c5;1","Dialstring":"ID580261@osvpi_route_fixeddestination","Event":"Dial","Privilege":"call,all","SubEvent":"Begin","UniqueID":"ua0-acc-1507624058.2045","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"","Channel":"Local/+31613925xxx@world_out-000002c6;1","ChannelState":"0","ChannelStateDesc":"Down","Context":"world_out","Event":"Newchannel","Exten":"+31613925xxx","Privilege":"call,all","Uniqueid":"ua0-acc-1507624058.2048","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"","Channel":"Local/+31613925xxx@world_out-000002c6;2","ChannelState":"4","ChannelStateDesc":"Ring","Context":"world_out","Event":"Newchannel","Exten":"+31613925xxx","Privilege":"call,all","Uniqueid":"ua0-acc-1507624058.2049","content":""}, - {"CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDName":"","CallerIDNum":"+31613925xxx","Channel":"Local/+31613925xxx@world_out-000002c6;1","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"ua0-acc-1507624058.2048","content":""}, - {"Channel1":"Local/+31613925xxx@world_out-000002c6;1","Channel2":"Local/+31613925xxx@world_out-000002c6;2","Context":"world_out","Event":"LocalBridge","Exten":"+31613925xxx","LocalOptimization":"Yes","Privilege":"call,all","Uniqueid1":"ua0-acc-1507624058.2048","Uniqueid2":"ua0-acc-1507624058.2049","content":""}, - {"CallerIDName":"","CallerIDNum":"+315080xxxxx","Channel":"Local/ID580261@osvpi_route_fixeddestination-000002c5;2","ConnectedLineName":"","ConnectedLineNum":"+31853xxxxxx","DestUniqueID":"ua0-acc-1507624058.2048","Destination":"Local/+31613925xxx@world_out-000002c6;1","Dialstring":"+31613925xxx@world_out","Event":"Dial","Privilege":"call,all","SubEvent":"Begin","UniqueID":"ua0-acc-1507624058.2047","content":""}, - {"CallerIDName":"","CallerIDNum":"+31853xxxxxx","Channel":"Local/ID580261@osvpi_route_fixeddestination-000002c5;1","ChannelState":"5","ChannelStateDesc":"Ringing","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507624058.2046","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"","Channel":"SIP/voipgrid-siproute-dev-00000274","ChannelState":"0","ChannelStateDesc":"Down","Context":"voipgrid_in","Event":"Newchannel","Exten":"","Privilege":"call,all","Uniqueid":"ua0-acc-1507624058.2050","content":""}, - {"CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDName":"","CallerIDNum":"+31613925xxx","Channel":"SIP/voipgrid-siproute-dev-00000274","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"ua0-acc-1507624058.2050","content":""}, - {"CallerIDName":"","CallerIDNum":"+315080xxxxx","Channel":"Local/+31613925xxx@world_out-000002c6;2","ConnectedLineName":"","ConnectedLineNum":"+31613925xxx","DestUniqueID":"ua0-acc-1507624058.2050","Destination":"SIP/voipgrid-siproute-dev-00000274","Dialstring":"+31613925xxx@voipgrid-siproute-dev","Event":"Dial","Privilege":"call,all","SubEvent":"Begin","UniqueID":"ua0-acc-1507624058.2049","content":""}, - {"CallerIDName":"","CallerIDNum":"+31613925xxx","Channel":"SIP/voipgrid-siproute-dev-00000274","ChannelState":"5","ChannelStateDesc":"Ringing","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507624058.2050","content":""}, - {"CallerIDName":"","CallerIDNum":"+31613925xxx","Channel":"Local/+31613925xxx@world_out-000002c6;1","ChannelState":"5","ChannelStateDesc":"Ringing","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Newstate","Privilege":"call,all","Uniqueid":"ua0-acc-1507624058.2048","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+31853xxxxxx","Cause":"0","Cause-txt":"Unknown","Channel":"Local/ID580261@osvpi_route_fixeddestination-000002c5;1","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Hangup","Privilege":"call,all","Uniqueid":"ua0-acc-1507624058.2046","content":""}, - {"Channel":"SIP/voipgrid-siproute-dev-00000273","DialStatus":"NOANSWER","Event":"Dial","Privilege":"call,all","SubEvent":"End","UniqueID":"ua0-acc-1507624058.2045","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+31613925xxx","Cause":"0","Cause-txt":"Unknown","Channel":"Local/+31613925xxx@world_out-000002c6;1","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Hangup","Privilege":"call,all","Uniqueid":"ua0-acc-1507624058.2048","content":""}, - {"Channel":"Local/ID580261@osvpi_route_fixeddestination-000002c5;2","DialStatus":"CANCEL","Event":"Dial","Privilege":"call,all","SubEvent":"End","UniqueID":"ua0-acc-1507624058.2047","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+315080xxxxx","Cause":"0","Cause-txt":"Unknown","Channel":"Local/ID580261@osvpi_route_fixeddestination-000002c5;2","ConnectedLineName":"","ConnectedLineNum":"+31853xxxxxx","Event":"Hangup","Privilege":"call,all","Uniqueid":"ua0-acc-1507624058.2047","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+31613925xxx","Cause":"16","Cause-txt":"Normal Clearing","Channel":"SIP/voipgrid-siproute-dev-00000274","ConnectedLineName":"","ConnectedLineNum":"+315080xxxxx","Event":"Hangup","Privilege":"call,all","Uniqueid":"ua0-acc-1507624058.2050","content":""}, - {"Channel":"Local/+31613925xxx@world_out-000002c6;2","DialStatus":"CANCEL","Event":"Dial","Privilege":"call,all","SubEvent":"End","UniqueID":"ua0-acc-1507624058.2049","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+315080xxxxx","Cause":"0","Cause-txt":"Unknown","Channel":"Local/+31613925xxx@world_out-000002c6;2","ConnectedLineName":"","ConnectedLineNum":"+31613925xxx","Event":"Hangup","Privilege":"call,all","Uniqueid":"ua0-acc-1507624058.2049","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+315080xxxxx","Cause":"19","Cause-txt":"User alerting, no answer","Channel":"SIP/voipgrid-siproute-dev-00000273","ConnectedLineName":"","ConnectedLineNum":"","Event":"Hangup","Privilege":"call,all","Uniqueid":"ua0-acc-1507624058.2045","content":""} -] diff --git a/tests/fixtures/connectab/cmn-self-world.json b/tests/fixtures/connectab/cmn-self-world.json deleted file mode 100644 index 0515ede..0000000 --- a/tests/fixtures/connectab/cmn-self-world.json +++ /dev/null @@ -1,145 +0,0 @@ -[ - {"Event": "FullyBooted", "Status": "Fully Booted", "Privilege": "system,all", "content": ""}, - {"Event": "FullyBooted", "Status": "Fully Booted", "Privilege": "system,all", "content": ""}, - {"Event": "Newchannel", "Context": "osvpi_proc_connectab_cmn", "Exten": "ID400721", "content": "", "ChannelState": "0", "AccountCode": "", "Privilege": "call,all", "Channel": "Local/ID400721@osvpi_proc_connectab_cmn-000002d1;1", "CallerIDNum": "", "ChannelStateDesc": "Down", "CallerIDName": "", "Uniqueid": "ua0-acc-1513786051.1964"}, - {"Event": "Newchannel", "Context": "osvpi_proc_connectab_cmn", "Exten": "ID400721", "content": "", "ChannelState": "4", "AccountCode": "", "Privilege": "call,all", "Channel": "Local/ID400721@osvpi_proc_connectab_cmn-000002d1;2", "CallerIDNum": "", "ChannelStateDesc": "Ring", "CallerIDName": "", "Uniqueid": "ua0-acc-1513786051.1965"}, - {"Event": "NewAccountCode", "AccountCode": "12668", "Privilege": "call,all", "Channel": "Local/ID400721@osvpi_proc_connectab_cmn-000002d1;1", "Uniqueid": "ua0-acc-1513786051.1964", "content": ""}, - {"CID-CallingPres": "67 (Number Unavailable)", "Event": "NewCallerid", "Privilege": "call,all", "Channel": "Local/ID400721@osvpi_proc_connectab_cmn-000002d1;1", "Uniqueid": "ua0-acc-1513786051.1964", "CallerIDName": "", "CallerIDNum": "", "content": ""}, - {"Event": "LocalBridge", "Channel2": "Local/ID400721@osvpi_proc_connectab_cmn-000002d1;2", "Privilege": "call,all", "Context": "osvpi_proc_connectab_cmn", "Uniqueid1": "ua0-acc-1513786051.1964", "LocalOptimization": "No", "content": "", "Channel1": "Local/ID400721@osvpi_proc_connectab_cmn-000002d1;1", "Exten": "ID400721", "Uniqueid2": "ua0-acc-1513786051.1965"}, - {"OldAccountCode": "12668", "Event": "NewAccountCode", "AccountCode": "12668", "Privilege": "call,all", "Channel": "Local/ID400721@osvpi_proc_connectab_cmn-000002d1;2", "Uniqueid": "ua0-acc-1513786051.1965", "content": ""}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Event": "NewCallerid", "Privilege": "call,all", "Channel": "Local/ID400721@osvpi_proc_connectab_cmn-000002d1;2", "Uniqueid": "ua0-acc-1513786051.1965", "CallerIDName": "Calling...", "CallerIDNum": "", "content": ""}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Event": "NewCallerid", "Privilege": "call,all", "Channel": "Local/ID400721@osvpi_proc_connectab_cmn-000002d1;2", "Uniqueid": "ua0-acc-1513786051.1965", "CallerIDName": "Calling...", "CallerIDNum": "+31853030903", "content": ""}, - {"Event": "Newchannel", "Context": "osvpi_world_call_permittedplus", "Exten": "+31508009074", "content": "", "ChannelState": "0", "AccountCode": "", "Privilege": "call,all", "Channel": "Local/+31508009074@osvpi_world_call_permittedplus-000002d2;1", "CallerIDNum": "", "ChannelStateDesc": "Down", "CallerIDName": "", "Uniqueid": "ua0-acc-1513786051.1966"}, - {"Event": "Newchannel", "Context": "osvpi_world_call_permittedplus", "Exten": "+31508009074", "content": "", "ChannelState": "4", "AccountCode": "", "Privilege": "call,all", "Channel": "Local/+31508009074@osvpi_world_call_permittedplus-000002d2;2", "CallerIDNum": "", "ChannelStateDesc": "Ring", "CallerIDName": "", "Uniqueid": "ua0-acc-1513786051.1967"}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Event": "NewCallerid", "Privilege": "call,all", "Channel": "Local/+31508009074@osvpi_world_call_permittedplus-000002d2;1", "Uniqueid": "ua0-acc-1513786051.1966", "CallerIDName": "", "CallerIDNum": "ID400721", "content": ""}, - {"Event": "LocalBridge", "Channel2": "Local/+31508009074@osvpi_world_call_permittedplus-000002d2;2", "Privilege": "call,all", "Context": "osvpi_world_call_permittedplus", "Uniqueid1": "ua0-acc-1513786051.1966", "LocalOptimization": "Yes", "content": "", "Channel1": "Local/+31508009074@osvpi_world_call_permittedplus-000002d2;1", "Exten": "+31508009074", "Uniqueid2": "ua0-acc-1513786051.1967"}, - {"ConnectedLineNum": "", "Event": "Dial", "Dialstring": "+31508009074@osvpi_world_call_permittedplus", "content": "", "Destination": "Local/+31508009074@osvpi_world_call_permittedplus-000002d2;1", "DestUniqueID": "ua0-acc-1513786051.1966", "SubEvent": "Begin", "Privilege": "call,all", "Channel": "Local/ID400721@osvpi_proc_connectab_cmn-000002d1;2", "CallerIDNum": "+31853030903", "ConnectedLineName": "", "CallerIDName": "Calling...", "UniqueID": "ua0-acc-1513786051.1965"}, - {"Event": "Newchannel", "Context": "world_out", "Exten": "+31508009074", "content": "", "ChannelState": "0", "AccountCode": "", "Privilege": "call,all", "Channel": "Local/+31508009074@world_out-000002d3;1", "CallerIDNum": "", "ChannelStateDesc": "Down", "CallerIDName": "", "Uniqueid": "ua0-acc-1513786051.1968"}, - {"Event": "Newchannel", "Context": "world_out", "Exten": "+31508009074", "content": "", "ChannelState": "4", "AccountCode": "", "Privilege": "call,all", "Channel": "Local/+31508009074@world_out-000002d3;2", "CallerIDNum": "", "ChannelStateDesc": "Ring", "CallerIDName": "", "Uniqueid": "ua0-acc-1513786051.1969"}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Event": "NewCallerid", "Privilege": "call,all", "Channel": "Local/+31508009074@world_out-000002d3;1", "Uniqueid": "ua0-acc-1513786051.1968", "CallerIDName": "", "CallerIDNum": "+31508009074", "content": ""}, - {"Event": "LocalBridge", "Channel2": "Local/+31508009074@world_out-000002d3;2", "Privilege": "call,all", "Context": "world_out", "Uniqueid1": "ua0-acc-1513786051.1968", "LocalOptimization": "Yes", "content": "", "Channel1": "Local/+31508009074@world_out-000002d3;1", "Exten": "+31508009074", "Uniqueid2": "ua0-acc-1513786051.1969"}, - {"ConnectedLineNum": "ID400721", "Event": "Dial", "Dialstring": "+31508009074@world_out", "content": "", "Destination": "Local/+31508009074@world_out-000002d3;1", "DestUniqueID": "ua0-acc-1513786051.1968", "SubEvent": "Begin", "Privilege": "call,all", "Channel": "Local/+31508009074@osvpi_world_call_permittedplus-000002d2;2", "CallerIDNum": "+31853030903", "ConnectedLineName": "", "CallerIDName": "Calling...", "UniqueID": "ua0-acc-1513786051.1967"}, - {"Event": "Newchannel", "Context": "voipgrid_in", "Exten": "", "content": "", "ChannelState": "0", "AccountCode": "", "Privilege": "call,all", "Channel": "SIP/voipgrid-siproute-dev-0000020a", "CallerIDNum": "", "ChannelStateDesc": "Down", "CallerIDName": "", "Uniqueid": "ua0-acc-1513786051.1970"}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Event": "NewCallerid", "Privilege": "call,all", "Channel": "SIP/voipgrid-siproute-dev-0000020a", "Uniqueid": "ua0-acc-1513786051.1970", "CallerIDName": "", "CallerIDNum": "+31508009074", "content": ""}, - {"ConnectedLineNum": "+31508009074", "Event": "Dial", "Dialstring": "+31508009074@voipgrid-siproute-dev", "content": "", "Destination": "SIP/voipgrid-siproute-dev-0000020a", "DestUniqueID": "ua0-acc-1513786051.1970", "SubEvent": "Begin", "Privilege": "call,all", "Channel": "Local/+31508009074@world_out-000002d3;2", "CallerIDNum": "+31853030903", "ConnectedLineName": "", "CallerIDName": "Calling...", "UniqueID": "ua0-acc-1513786051.1969"}, - {"ConnectedLineNum": "+31853030903", "ChannelState": "6", "ChannelStateDesc": "Up", "Uniqueid": "ua0-acc-1513786051.1970", "Privilege": "call,all", "Channel": "SIP/voipgrid-siproute-dev-0000020a", "CallerIDNum": "+31508009074", "content": "", "CallerIDName": "", "Event": "Newstate", "ConnectedLineName": "Calling..."}, - {"ConnectedLineNum": "+31508009074", "ChannelState": "6", "ChannelStateDesc": "Up", "Uniqueid": "ua0-acc-1513786051.1969", "Privilege": "call,all", "Channel": "Local/+31508009074@world_out-000002d3;2", "CallerIDNum": "+31853030903", "content": "", "CallerIDName": "Calling...", "Event": "Newstate", "ConnectedLineName": ""}, - {"OldAccountCode": "12668", "Event": "NewAccountCode", "AccountCode": "12668", "Privilege": "call,all", "Channel": "SIP/voipgrid-siproute-dev-0000020a", "Uniqueid": "ua0-acc-1513786051.1970", "content": ""}, - {"Bridgestate": "Link", "Channel2": "SIP/voipgrid-siproute-dev-0000020a", "Privilege": "call,all", "CallerID2": "+31508009074", "Uniqueid1": "ua0-acc-1513786051.1969", "Channel1": "Local/+31508009074@world_out-000002d3;2", "Uniqueid2": "ua0-acc-1513786051.1970", "Bridgetype": "core", "Event": "Bridge", "CallerID1": "+31853030903", "content": ""}, - {"ConnectedLineNum": "+31853030903", "ChannelState": "6", "ChannelStateDesc": "Up", "Uniqueid": "ua0-acc-1513786051.1968", "Privilege": "call,all", "Channel": "Local/+31508009074@world_out-000002d3;1", "CallerIDNum": "+31508009074", "content": "", "CallerIDName": "", "Event": "Newstate", "ConnectedLineName": "Calling..."}, - {"ConnectedLineNum": "ID400721", "ChannelState": "6", "ChannelStateDesc": "Up", "Uniqueid": "ua0-acc-1513786051.1967", "Privilege": "call,all", "Channel": "Local/+31508009074@osvpi_world_call_permittedplus-000002d2;2", "CallerIDNum": "+31853030903", "content": "", "CallerIDName": "Calling...", "Event": "Newstate", "ConnectedLineName": ""}, - {"OldAccountCode": "12668", "Event": "NewAccountCode", "AccountCode": "12668", "Privilege": "call,all", "Channel": "Local/+31508009074@world_out-000002d3;1", "Uniqueid": "ua0-acc-1513786051.1968", "content": ""}, - {"Bridgestate": "Link", "Channel2": "Local/+31508009074@world_out-000002d3;1", "Privilege": "call,all", "CallerID2": "+31508009074", "Uniqueid1": "ua0-acc-1513786051.1967", "Channel1": "Local/+31508009074@osvpi_world_call_permittedplus-000002d2;2", "Uniqueid2": "ua0-acc-1513786051.1968", "Bridgetype": "core", "Event": "Bridge", "CallerID1": "+31853030903", "content": ""}, - {"ConnectedLineNum": "+31853030903", "ChannelState": "6", "ChannelStateDesc": "Up", "Uniqueid": "ua0-acc-1513786051.1966", "Privilege": "call,all", "Channel": "Local/+31508009074@osvpi_world_call_permittedplus-000002d2;1", "CallerIDNum": "ID400721", "content": "", "CallerIDName": "", "Event": "Newstate", "ConnectedLineName": "Calling..."}, - {"ConnectedLineNum": "", "ChannelState": "6", "ChannelStateDesc": "Up", "Uniqueid": "ua0-acc-1513786051.1965", "Privilege": "call,all", "Channel": "Local/ID400721@osvpi_proc_connectab_cmn-000002d1;2", "CallerIDNum": "+31853030903", "content": "", "CallerIDName": "Calling...", "Event": "Newstate", "ConnectedLineName": ""}, - {"OldAccountCode": "12668", "Event": "NewAccountCode", "AccountCode": "12668", "Privilege": "call,all", "Channel": "Local/+31508009074@osvpi_world_call_permittedplus-000002d2;1", "Uniqueid": "ua0-acc-1513786051.1966", "content": ""}, - {"Bridgestate": "Link", "Channel2": "Local/+31508009074@osvpi_world_call_permittedplus-000002d2;1", "Privilege": "call,all", "CallerID2": "ID400721", "Uniqueid1": "ua0-acc-1513786051.1965", "Channel1": "Local/ID400721@osvpi_proc_connectab_cmn-000002d1;2", "Uniqueid2": "ua0-acc-1513786051.1966", "Bridgetype": "core", "Event": "Bridge", "CallerID1": "+31853030903", "content": ""}, - {"ConnectedLineNum": "", "ChannelState": "6", "ChannelStateDesc": "Up", "Uniqueid": "ua0-acc-1513786051.1964", "Privilege": "call,all", "Channel": "Local/ID400721@osvpi_proc_connectab_cmn-000002d1;1", "CallerIDNum": "", "content": "", "CallerIDName": "", "Event": "Newstate", "ConnectedLineName": ""}, - {"OldAccountCode": "12668", "Event": "NewAccountCode", "AccountCode": "12668", "Privilege": "call,all", "Channel": "Local/ID400721@osvpi_proc_connectab_cmn-000002d1;1", "Uniqueid": "ua0-acc-1513786051.1964", "content": ""}, - {"Event": "Masquerade", "OriginalState": "Up", "Original": "Local/+31508009074@world_out-000002d3;1", "Privilege": "call,all", "CloneState": "Up", "Clone": "SIP/voipgrid-siproute-dev-0000020a", "content": ""}, - {"Event": "Rename", "Privilege": "call,all", "Channel": "SIP/voipgrid-siproute-dev-0000020a", "Uniqueid": "ua0-acc-1513786051.1970", "Newname": "SIP/voipgrid-siproute-dev-0000020a", "content": ""}, - {"Event": "Rename", "Privilege": "call,all", "Channel": "Local/+31508009074@world_out-000002d3;1", "Uniqueid": "ua0-acc-1513786051.1968", "Newname": "SIP/voipgrid-siproute-dev-0000020a", "content": ""}, - {"Event": "Rename", "Privilege": "call,all", "Channel": "SIP/voipgrid-siproute-dev-0000020a", "Uniqueid": "ua0-acc-1513786051.1970", "Newname": "Local/+31508009074@world_out-000002d3;1", "content": ""}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Event": "NewCallerid", "Privilege": "call,all", "Channel": "SIP/voipgrid-siproute-dev-0000020a", "Uniqueid": "ua0-acc-1513786051.1968", "CallerIDName": "", "CallerIDNum": "+31508009074", "content": ""}, - {"Bridgestate": "Unlink", "Channel2": "Local/+31508009074@world_out-000002d3;1", "Privilege": "call,all", "CallerID2": "+31508009074", "Uniqueid1": "ua0-acc-1513786051.1969", "Channel1": "Local/+31508009074@world_out-000002d3;2", "Uniqueid2": "ua0-acc-1513786051.1970", "Bridgetype": "core", "Event": "Bridge", "CallerID1": "+31853030903", "content": ""}, - {"ConnectedLineNum": "+31853030903", "Event": "Hangup", "ConnectedLineName": "Calling...", "Cause-txt": "Normal Clearing", "AccountCode": "12668", "Privilege": "call,all", "Channel": "Local/+31508009074@world_out-000002d3;1", "CallerIDNum": "+31508009074", "content": "", "CallerIDName": "", "Cause": "16", "Uniqueid": "ua0-acc-1513786051.1970"}, - {"Event": "Masquerade", "OriginalState": "Up", "Original": "Local/+31508009074@osvpi_world_call_permittedplus-000002d2;1", "Privilege": "call,all", "CloneState": "Up", "Clone": "SIP/voipgrid-siproute-dev-0000020a", "content": ""}, - {"Event": "Rename", "Privilege": "call,all", "Channel": "SIP/voipgrid-siproute-dev-0000020a", "Uniqueid": "ua0-acc-1513786051.1968", "Newname": "SIP/voipgrid-siproute-dev-0000020a", "content": ""}, - {"Event": "Rename", "Privilege": "call,all", "Channel": "Local/+31508009074@osvpi_world_call_permittedplus-000002d2;1", "Uniqueid": "ua0-acc-1513786051.1966", "Newname": "SIP/voipgrid-siproute-dev-0000020a", "content": ""}, - {"Event": "Rename", "Privilege": "call,all", "Channel": "SIP/voipgrid-siproute-dev-0000020a", "Uniqueid": "ua0-acc-1513786051.1968", "Newname": "Local/+31508009074@osvpi_world_call_permittedplus-000002d2;1", "content": ""}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Event": "NewCallerid", "Privilege": "call,all", "Channel": "SIP/voipgrid-siproute-dev-0000020a", "Uniqueid": "ua0-acc-1513786051.1966", "CallerIDName": "", "CallerIDNum": "ID400721", "content": ""}, - {"Bridgestate": "Unlink", "Channel2": "Local/+31508009074@osvpi_world_call_permittedplus-000002d2;1", "Privilege": "call,all", "CallerID2": "+31508009074", "Uniqueid1": "ua0-acc-1513786051.1967", "Channel1": "Local/+31508009074@osvpi_world_call_permittedplus-000002d2;2", "Uniqueid2": "ua0-acc-1513786051.1968", "Bridgetype": "core", "Event": "Bridge", "CallerID1": "+31853030903", "content": ""}, - {"Event": "Dial", "SubEvent": "End", "Privilege": "call,all", "Channel": "Local/+31508009074@world_out-000002d3;2", "UniqueID": "ua0-acc-1513786051.1969", "content": "", "DialStatus": "ANSWER"}, - {"ConnectedLineNum": "+31508009074", "Event": "Hangup", "ConnectedLineName": "", "Cause-txt": "Normal Clearing", "AccountCode": "12668", "Privilege": "call,all", "Channel": "Local/+31508009074@world_out-000002d3;2", "CallerIDNum": "+31853030903", "content": "", "CallerIDName": "Calling...", "Cause": "16", "Uniqueid": "ua0-acc-1513786051.1969"}, - {"ConnectedLineNum": "+31853030903", "Event": "Hangup", "ConnectedLineName": "Calling...", "Cause-txt": "Normal Clearing", "AccountCode": "12668", "Privilege": "call,all", "Channel": "Local/+31508009074@osvpi_world_call_permittedplus-000002d2;1", "CallerIDNum": "+31508009074", "content": "", "CallerIDName": "", "Cause": "16", "Uniqueid": "ua0-acc-1513786051.1968"}, - {"Event": "Dial", "SubEvent": "End", "Privilege": "call,all", "Channel": "Local/+31508009074@osvpi_world_call_permittedplus-000002d2;2", "UniqueID": "ua0-acc-1513786051.1967", "content": "", "DialStatus": "ANSWER"}, - {"ConnectedLineNum": "ID400721", "Event": "Hangup", "ConnectedLineName": "", "Cause-txt": "Normal Clearing", "AccountCode": "12668", "Privilege": "call,all", "Channel": "Local/+31508009074@osvpi_world_call_permittedplus-000002d2;2", "CallerIDNum": "+31853030903", "content": "", "CallerIDName": "Calling...", "Cause": "16", "Uniqueid": "ua0-acc-1513786051.1967"}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Event": "NewCallerid", "Privilege": "call,all", "Channel": "Local/ID400721@osvpi_proc_connectab_cmn-000002d1;1", "Uniqueid": "ua0-acc-1513786051.1964", "CallerIDName": "", "CallerIDNum": "+31508009074", "content": ""}, - {"Event": "Newchannel", "Context": "osvpi_world_call_permittedplus", "Exten": "+31853030903", "content": "", "ChannelState": "0", "AccountCode": "", "Privilege": "call,all", "Channel": "Local/+31853030903@osvpi_world_call_permittedplus-000002d4;1", "CallerIDNum": "", "ChannelStateDesc": "Down", "CallerIDName": "", "Uniqueid": "ua0-acc-1513786064.1971"}, - {"Event": "Newchannel", "Context": "osvpi_world_call_permittedplus", "Exten": "+31853030903", "content": "", "ChannelState": "4", "AccountCode": "", "Privilege": "call,all", "Channel": "Local/+31853030903@osvpi_world_call_permittedplus-000002d4;2", "CallerIDNum": "", "ChannelStateDesc": "Ring", "CallerIDName": "", "Uniqueid": "ua0-acc-1513786064.1972"}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Event": "NewCallerid", "Privilege": "call,all", "Channel": "Local/+31853030903@osvpi_world_call_permittedplus-000002d4;1", "Uniqueid": "ua0-acc-1513786064.1971", "CallerIDName": "", "CallerIDNum": "ID400721", "content": ""}, - {"Event": "LocalBridge", "Channel2": "Local/+31853030903@osvpi_world_call_permittedplus-000002d4;2", "Privilege": "call,all", "Context": "osvpi_world_call_permittedplus", "Uniqueid1": "ua0-acc-1513786064.1971", "LocalOptimization": "Yes", "content": "", "Channel1": "Local/+31853030903@osvpi_world_call_permittedplus-000002d4;1", "Exten": "+31853030903", "Uniqueid2": "ua0-acc-1513786064.1972"}, - {"ConnectedLineNum": "", "Event": "Dial", "Dialstring": "+31853030903@osvpi_world_call_permittedplus", "content": "", "Destination": "Local/+31853030903@osvpi_world_call_permittedplus-000002d4;1", "DestUniqueID": "ua0-acc-1513786064.1971", "SubEvent": "Begin", "Privilege": "call,all", "Channel": "Local/ID400721@osvpi_proc_connectab_cmn-000002d1;1", "CallerIDNum": "+31508009074", "ConnectedLineName": "", "CallerIDName": "", "UniqueID": "ua0-acc-1513786051.1964"}, - {"Event": "Newchannel", "Context": "world_out", "Exten": "+31853030903", "content": "", "ChannelState": "0", "AccountCode": "", "Privilege": "call,all", "Channel": "Local/+31853030903@world_out-000002d5;1", "CallerIDNum": "", "ChannelStateDesc": "Down", "CallerIDName": "", "Uniqueid": "ua0-acc-1513786064.1973"}, - {"Event": "Newchannel", "Context": "world_out", "Exten": "+31853030903", "content": "", "ChannelState": "4", "AccountCode": "", "Privilege": "call,all", "Channel": "Local/+31853030903@world_out-000002d5;2", "CallerIDNum": "", "ChannelStateDesc": "Ring", "CallerIDName": "", "Uniqueid": "ua0-acc-1513786064.1974"}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Event": "NewCallerid", "Privilege": "call,all", "Channel": "Local/+31853030903@world_out-000002d5;1", "Uniqueid": "ua0-acc-1513786064.1973", "CallerIDName": "", "CallerIDNum": "+31853030903", "content": ""}, - {"Event": "LocalBridge", "Channel2": "Local/+31853030903@world_out-000002d5;2", "Privilege": "call,all", "Context": "world_out", "Uniqueid1": "ua0-acc-1513786064.1973", "LocalOptimization": "Yes", "content": "", "Channel1": "Local/+31853030903@world_out-000002d5;1", "Exten": "+31853030903", "Uniqueid2": "ua0-acc-1513786064.1974"}, - {"ConnectedLineNum": "ID400721", "Event": "Dial", "Dialstring": "+31853030903@world_out", "content": "", "Destination": "Local/+31853030903@world_out-000002d5;1", "DestUniqueID": "ua0-acc-1513786064.1973", "SubEvent": "Begin", "Privilege": "call,all", "Channel": "Local/+31853030903@osvpi_world_call_permittedplus-000002d4;2", "CallerIDNum": "+31508009074", "ConnectedLineName": "", "CallerIDName": "", "UniqueID": "ua0-acc-1513786064.1972"}, - {"Event": "Newchannel", "Context": "voipgrid_in", "Exten": "", "content": "", "ChannelState": "0", "AccountCode": "", "Privilege": "call,all", "Channel": "SIP/voipgrid-siproute-dev-0000020b", "CallerIDNum": "", "ChannelStateDesc": "Down", "CallerIDName": "", "Uniqueid": "ua0-acc-1513786064.1975"}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Event": "NewCallerid", "Privilege": "call,all", "Channel": "SIP/voipgrid-siproute-dev-0000020b", "Uniqueid": "ua0-acc-1513786064.1975", "CallerIDName": "", "CallerIDNum": "+31853030903", "content": ""}, - {"ConnectedLineNum": "+31853030903", "Event": "Dial", "Dialstring": "+31853030903@voipgrid-siproute-dev", "content": "", "Destination": "SIP/voipgrid-siproute-dev-0000020b", "DestUniqueID": "ua0-acc-1513786064.1975", "SubEvent": "Begin", "Privilege": "call,all", "Channel": "Local/+31853030903@world_out-000002d5;2", "CallerIDNum": "+31508009074", "ConnectedLineName": "", "CallerIDName": "", "UniqueID": "ua0-acc-1513786064.1974"}, - {"Event": "Newchannel", "Context": "voipgrid_in", "Exten": "+31853030903", "content": "", "ChannelState": "0", "AccountCode": "", "Privilege": "call,all", "Channel": "SIP/voipgrid-siproute-dev-0000020c", "CallerIDNum": "+31508009074", "ChannelStateDesc": "Down", "CallerIDName": "", "Uniqueid": "ua0-acc-1513786064.1976"}, - {"ConnectedLineNum": "", "ChannelState": "4", "ChannelStateDesc": "Ring", "Uniqueid": "ua0-acc-1513786064.1976", "Privilege": "call,all", "Channel": "SIP/voipgrid-siproute-dev-0000020c", "CallerIDNum": "+31508009074", "content": "", "CallerIDName": "", "Event": "Newstate", "ConnectedLineName": ""}, - {"Event": "NewAccountCode", "AccountCode": "12668", "Privilege": "call,all", "Channel": "SIP/voipgrid-siproute-dev-0000020c", "Uniqueid": "ua0-acc-1513786064.1976", "content": ""}, - {"ConnectedLineNum": "+31508009074", "ChannelState": "5", "ChannelStateDesc": "Ringing", "Uniqueid": "ua0-acc-1513786064.1975", "Privilege": "call,all", "Channel": "SIP/voipgrid-siproute-dev-0000020b", "CallerIDNum": "+31853030903", "content": "", "CallerIDName": "", "Event": "Newstate", "ConnectedLineName": ""}, - {"ConnectedLineNum": "+31508009074", "ChannelState": "5", "ChannelStateDesc": "Ringing", "Uniqueid": "ua0-acc-1513786064.1973", "Privilege": "call,all", "Channel": "Local/+31853030903@world_out-000002d5;1", "CallerIDNum": "+31853030903", "content": "", "CallerIDName": "", "Event": "Newstate", "ConnectedLineName": ""}, - {"ConnectedLineNum": "+31508009074", "ChannelState": "5", "ChannelStateDesc": "Ringing", "Uniqueid": "ua0-acc-1513786064.1971", "Privilege": "call,all", "Channel": "Local/+31853030903@osvpi_world_call_permittedplus-000002d4;1", "CallerIDNum": "ID400721", "content": "", "CallerIDName": "", "Event": "Newstate", "ConnectedLineName": ""}, - {"Event": "Newchannel", "Context": "osvpi_route_phoneaccount", "Exten": "ID730661", "content": "", "ChannelState": "0", "AccountCode": "", "Privilege": "call,all", "Channel": "Local/ID730661@osvpi_route_phoneaccount-000002d6;1", "CallerIDNum": "", "ChannelStateDesc": "Down", "CallerIDName": "", "Uniqueid": "ua0-acc-1513786065.1977"}, - {"Event": "Newchannel", "Context": "osvpi_route_phoneaccount", "Exten": "ID730661", "content": "", "ChannelState": "4", "AccountCode": "", "Privilege": "call,all", "Channel": "Local/ID730661@osvpi_route_phoneaccount-000002d6;2", "CallerIDNum": "", "ChannelStateDesc": "Ring", "CallerIDName": "", "Uniqueid": "ua0-acc-1513786065.1978"}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Event": "NewCallerid", "Privilege": "call,all", "Channel": "Local/ID730661@osvpi_route_phoneaccount-000002d6;1", "Uniqueid": "ua0-acc-1513786065.1977", "CallerIDName": "", "CallerIDNum": "+31853030903", "content": ""}, - {"Event": "LocalBridge", "Channel2": "Local/ID730661@osvpi_route_phoneaccount-000002d6;2", "Privilege": "call,all", "Context": "osvpi_route_phoneaccount", "Uniqueid1": "ua0-acc-1513786065.1977", "LocalOptimization": "Yes", "content": "", "Channel1": "Local/ID730661@osvpi_route_phoneaccount-000002d6;1", "Exten": "ID730661", "Uniqueid2": "ua0-acc-1513786065.1978"}, - {"ConnectedLineNum": "", "Event": "Dial", "Dialstring": "ID730661@osvpi_route_phoneaccount", "content": "", "Destination": "Local/ID730661@osvpi_route_phoneaccount-000002d6;1", "DestUniqueID": "ua0-acc-1513786065.1977", "SubEvent": "Begin", "Privilege": "call,all", "Channel": "SIP/voipgrid-siproute-dev-0000020c", "CallerIDNum": "+31508009074", "ConnectedLineName": "", "CallerIDName": "", "UniqueID": "ua0-acc-1513786064.1976"}, - {"Event": "Newchannel", "Context": "osvpi_account", "Exten": "", "content": "", "ChannelState": "0", "AccountCode": "126680010", "Privilege": "call,all", "Channel": "SIP/126680010-0000020d", "CallerIDNum": "", "ChannelStateDesc": "Down", "CallerIDName": "", "Uniqueid": "ua0-acc-1513786065.1979"}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Event": "NewCallerid", "Privilege": "call,all", "Channel": "SIP/126680010-0000020d", "Uniqueid": "ua0-acc-1513786065.1979", "CallerIDName": "", "CallerIDNum": "+31853030903", "content": ""}, - {"ConnectedLineNum": "+31853030903", "Event": "Dial", "Dialstring": "126680010/126680010/195.35.115.203!!0508009074", "content": "", "Destination": "SIP/126680010-0000020d", "DestUniqueID": "ua0-acc-1513786065.1979", "SubEvent": "Begin", "Privilege": "call,all", "Channel": "Local/ID730661@osvpi_route_phoneaccount-000002d6;2", "CallerIDNum": "+31508009074", "ConnectedLineName": "", "CallerIDName": "", "UniqueID": "ua0-acc-1513786065.1978"}, - {"ConnectedLineNum": "+31508009074", "ChannelState": "5", "ChannelStateDesc": "Ringing", "Uniqueid": "ua0-acc-1513786065.1979", "Privilege": "call,all", "Channel": "SIP/126680010-0000020d", "CallerIDNum": "+31853030903", "content": "", "CallerIDName": "", "Event": "Newstate", "ConnectedLineName": ""}, - {"ConnectedLineNum": "+31508009074", "ChannelState": "5", "ChannelStateDesc": "Ringing", "Uniqueid": "ua0-acc-1513786065.1977", "Privilege": "call,all", "Channel": "Local/ID730661@osvpi_route_phoneaccount-000002d6;1", "CallerIDNum": "+31853030903", "content": "", "CallerIDName": "", "Event": "Newstate", "ConnectedLineName": ""}, - {"ConnectedLineNum": "+31508009074", "ChannelState": "6", "ChannelStateDesc": "Up", "Uniqueid": "ua0-acc-1513786065.1979", "Privilege": "call,all", "Channel": "SIP/126680010-0000020d", "CallerIDNum": "+31853030903", "content": "", "CallerIDName": "", "Event": "Newstate", "ConnectedLineName": ""}, - {"ConnectedLineNum": "+31853030903", "ChannelState": "6", "ChannelStateDesc": "Up", "Uniqueid": "ua0-acc-1513786065.1978", "Privilege": "call,all", "Channel": "Local/ID730661@osvpi_route_phoneaccount-000002d6;2", "CallerIDNum": "+31508009074", "content": "", "CallerIDName": "", "Event": "Newstate", "ConnectedLineName": ""}, - {"OldAccountCode": "12668", "Event": "NewAccountCode", "AccountCode": "12668", "Privilege": "call,all", "Channel": "SIP/126680010-0000020d", "Uniqueid": "ua0-acc-1513786065.1979", "content": ""}, - {"Bridgestate": "Link", "Channel2": "SIP/126680010-0000020d", "Privilege": "call,all", "CallerID2": "+31853030903", "Uniqueid1": "ua0-acc-1513786065.1978", "Channel1": "Local/ID730661@osvpi_route_phoneaccount-000002d6;2", "Uniqueid2": "ua0-acc-1513786065.1979", "Bridgetype": "core", "Event": "Bridge", "CallerID1": "+31508009074", "content": ""}, - {"ConnectedLineNum": "+31508009074", "ChannelState": "6", "ChannelStateDesc": "Up", "Uniqueid": "ua0-acc-1513786065.1977", "Privilege": "call,all", "Channel": "Local/ID730661@osvpi_route_phoneaccount-000002d6;1", "CallerIDNum": "+31853030903", "content": "", "CallerIDName": "", "Event": "Newstate", "ConnectedLineName": ""}, - {"ConnectedLineNum": "", "ChannelState": "6", "ChannelStateDesc": "Up", "Uniqueid": "ua0-acc-1513786064.1976", "Privilege": "call,all", "Channel": "SIP/voipgrid-siproute-dev-0000020c", "CallerIDNum": "+31508009074", "content": "", "CallerIDName": "", "Event": "Newstate", "ConnectedLineName": ""}, - {"OldAccountCode": "12668", "Event": "NewAccountCode", "AccountCode": "12668", "Privilege": "call,all", "Channel": "Local/ID730661@osvpi_route_phoneaccount-000002d6;1", "Uniqueid": "ua0-acc-1513786065.1977", "content": ""}, - {"Bridgestate": "Link", "Channel2": "Local/ID730661@osvpi_route_phoneaccount-000002d6;1", "Privilege": "call,all", "CallerID2": "+31853030903", "Uniqueid1": "ua0-acc-1513786064.1976", "Channel1": "SIP/voipgrid-siproute-dev-0000020c", "Uniqueid2": "ua0-acc-1513786065.1977", "Bridgetype": "core", "Event": "Bridge", "CallerID1": "+31508009074", "content": ""}, - {"ConnectedLineNum": "+31508009074", "ChannelState": "6", "ChannelStateDesc": "Up", "Uniqueid": "ua0-acc-1513786064.1975", "Privilege": "call,all", "Channel": "SIP/voipgrid-siproute-dev-0000020b", "CallerIDNum": "+31853030903", "content": "", "CallerIDName": "", "Event": "Newstate", "ConnectedLineName": ""}, - {"ConnectedLineNum": "+31853030903", "ChannelState": "6", "ChannelStateDesc": "Up", "Uniqueid": "ua0-acc-1513786064.1974", "Privilege": "call,all", "Channel": "Local/+31853030903@world_out-000002d5;2", "CallerIDNum": "+31508009074", "content": "", "CallerIDName": "", "Event": "Newstate", "ConnectedLineName": ""}, - {"OldAccountCode": "12668", "Event": "NewAccountCode", "AccountCode": "12668", "Privilege": "call,all", "Channel": "SIP/voipgrid-siproute-dev-0000020b", "Uniqueid": "ua0-acc-1513786064.1975", "content": ""}, - {"Bridgestate": "Link", "Channel2": "SIP/voipgrid-siproute-dev-0000020b", "Privilege": "call,all", "CallerID2": "+31853030903", "Uniqueid1": "ua0-acc-1513786064.1974", "Channel1": "Local/+31853030903@world_out-000002d5;2", "Uniqueid2": "ua0-acc-1513786064.1975", "Bridgetype": "core", "Event": "Bridge", "CallerID1": "+31508009074", "content": ""}, - {"ConnectedLineNum": "+31508009074", "ChannelState": "6", "ChannelStateDesc": "Up", "Uniqueid": "ua0-acc-1513786064.1973", "Privilege": "call,all", "Channel": "Local/+31853030903@world_out-000002d5;1", "CallerIDNum": "+31853030903", "content": "", "CallerIDName": "", "Event": "Newstate", "ConnectedLineName": ""}, - {"ConnectedLineNum": "ID400721", "ChannelState": "6", "ChannelStateDesc": "Up", "Uniqueid": "ua0-acc-1513786064.1972", "Privilege": "call,all", "Channel": "Local/+31853030903@osvpi_world_call_permittedplus-000002d4;2", "CallerIDNum": "+31508009074", "content": "", "CallerIDName": "", "Event": "Newstate", "ConnectedLineName": ""}, - {"OldAccountCode": "12668", "Event": "NewAccountCode", "AccountCode": "12668", "Privilege": "call,all", "Channel": "Local/+31853030903@world_out-000002d5;1", "Uniqueid": "ua0-acc-1513786064.1973", "content": ""}, - {"Bridgestate": "Link", "Channel2": "Local/+31853030903@world_out-000002d5;1", "Privilege": "call,all", "CallerID2": "+31853030903", "Uniqueid1": "ua0-acc-1513786064.1972", "Channel1": "Local/+31853030903@osvpi_world_call_permittedplus-000002d4;2", "Uniqueid2": "ua0-acc-1513786064.1973", "Bridgetype": "core", "Event": "Bridge", "CallerID1": "+31508009074", "content": ""}, - {"ConnectedLineNum": "+31508009074", "ChannelState": "6", "ChannelStateDesc": "Up", "Uniqueid": "ua0-acc-1513786064.1971", "Privilege": "call,all", "Channel": "Local/+31853030903@osvpi_world_call_permittedplus-000002d4;1", "CallerIDNum": "ID400721", "content": "", "CallerIDName": "", "Event": "Newstate", "ConnectedLineName": ""}, - {"OldAccountCode": "12668", "Event": "NewAccountCode", "AccountCode": "12668", "Privilege": "call,all", "Channel": "Local/+31853030903@osvpi_world_call_permittedplus-000002d4;1", "Uniqueid": "ua0-acc-1513786064.1971", "content": ""}, - {"Bridgestate": "Link", "Channel2": "Local/+31853030903@osvpi_world_call_permittedplus-000002d4;1", "Privilege": "call,all", "CallerID2": "ID400721", "Uniqueid1": "ua0-acc-1513786051.1964", "Channel1": "Local/ID400721@osvpi_proc_connectab_cmn-000002d1;1", "Uniqueid2": "ua0-acc-1513786064.1971", "Bridgetype": "core", "Event": "Bridge", "CallerID1": "+31508009074", "content": ""}, - {"Event": "Masquerade", "OriginalState": "Up", "Original": "Local/ID730661@osvpi_route_phoneaccount-000002d6;1", "Privilege": "call,all", "CloneState": "Up", "Clone": "SIP/126680010-0000020d", "content": ""}, - {"Event": "Rename", "Privilege": "call,all", "Channel": "SIP/126680010-0000020d", "Uniqueid": "ua0-acc-1513786065.1979", "Newname": "SIP/126680010-0000020d", "content": ""}, - {"Event": "Rename", "Privilege": "call,all", "Channel": "Local/ID730661@osvpi_route_phoneaccount-000002d6;1", "Uniqueid": "ua0-acc-1513786065.1977", "Newname": "SIP/126680010-0000020d", "content": ""}, - {"Event": "Rename", "Privilege": "call,all", "Channel": "SIP/126680010-0000020d", "Uniqueid": "ua0-acc-1513786065.1979", "Newname": "Local/ID730661@osvpi_route_phoneaccount-000002d6;1", "content": ""}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Event": "NewCallerid", "Privilege": "call,all", "Channel": "SIP/126680010-0000020d", "Uniqueid": "ua0-acc-1513786065.1977", "CallerIDName": "", "CallerIDNum": "+31853030903", "content": ""}, - {"Bridgestate": "Unlink", "Channel2": "Local/ID730661@osvpi_route_phoneaccount-000002d6;1", "Privilege": "call,all", "CallerID2": "+31853030903", "Uniqueid1": "ua0-acc-1513786065.1978", "Channel1": "Local/ID730661@osvpi_route_phoneaccount-000002d6;2", "Uniqueid2": "ua0-acc-1513786065.1979", "Bridgetype": "core", "Event": "Bridge", "CallerID1": "+31508009074", "content": ""}, - {"Event": "Masquerade", "OriginalState": "Up", "Original": "Local/+31853030903@world_out-000002d5;1", "Privilege": "call,all", "CloneState": "Up", "Clone": "SIP/voipgrid-siproute-dev-0000020b", "content": ""}, - {"Event": "Rename", "Privilege": "call,all", "Channel": "SIP/voipgrid-siproute-dev-0000020b", "Uniqueid": "ua0-acc-1513786064.1975", "Newname": "SIP/voipgrid-siproute-dev-0000020b", "content": ""}, - {"Event": "Rename", "Privilege": "call,all", "Channel": "Local/+31853030903@world_out-000002d5;1", "Uniqueid": "ua0-acc-1513786064.1973", "Newname": "SIP/voipgrid-siproute-dev-0000020b", "content": ""}, - {"Event": "Rename", "Privilege": "call,all", "Channel": "SIP/voipgrid-siproute-dev-0000020b", "Uniqueid": "ua0-acc-1513786064.1975", "Newname": "Local/+31853030903@world_out-000002d5;1", "content": ""}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Event": "NewCallerid", "Privilege": "call,all", "Channel": "SIP/voipgrid-siproute-dev-0000020b", "Uniqueid": "ua0-acc-1513786064.1973", "CallerIDName": "", "CallerIDNum": "+31853030903", "content": ""}, - {"Bridgestate": "Unlink", "Channel2": "Local/+31853030903@world_out-000002d5;1", "Privilege": "call,all", "CallerID2": "+31853030903", "Uniqueid1": "ua0-acc-1513786064.1974", "Channel1": "Local/+31853030903@world_out-000002d5;2", "Uniqueid2": "ua0-acc-1513786064.1975", "Bridgetype": "core", "Event": "Bridge", "CallerID1": "+31508009074", "content": ""}, - {"ConnectedLineNum": "+31508009074", "Event": "Hangup", "ConnectedLineName": "", "Cause-txt": "Normal Clearing", "AccountCode": "12668", "Privilege": "call,all", "Channel": "Local/ID730661@osvpi_route_phoneaccount-000002d6;1", "CallerIDNum": "+31853030903", "content": "", "CallerIDName": "", "Cause": "16", "Uniqueid": "ua0-acc-1513786065.1979"}, - {"Event": "Dial", "SubEvent": "End", "Privilege": "call,all", "Channel": "Local/ID730661@osvpi_route_phoneaccount-000002d6;2", "UniqueID": "ua0-acc-1513786065.1978", "content": "", "DialStatus": "ANSWER"}, - {"ConnectedLineNum": "+31853030903", "Event": "Hangup", "ConnectedLineName": "", "Cause-txt": "Normal Clearing", "AccountCode": "12668", "Privilege": "call,all", "Channel": "Local/ID730661@osvpi_route_phoneaccount-000002d6;2", "CallerIDNum": "+31508009074", "content": "", "CallerIDName": "", "Cause": "16", "Uniqueid": "ua0-acc-1513786065.1978"}, - {"Event": "Masquerade", "OriginalState": "Up", "Original": "Local/+31853030903@osvpi_world_call_permittedplus-000002d4;1", "Privilege": "call,all", "CloneState": "Up", "Clone": "SIP/voipgrid-siproute-dev-0000020b", "content": ""}, - {"Event": "Rename", "Privilege": "call,all", "Channel": "SIP/voipgrid-siproute-dev-0000020b", "Uniqueid": "ua0-acc-1513786064.1973", "Newname": "SIP/voipgrid-siproute-dev-0000020b", "content": ""}, - {"Event": "Rename", "Privilege": "call,all", "Channel": "Local/+31853030903@osvpi_world_call_permittedplus-000002d4;1", "Uniqueid": "ua0-acc-1513786064.1971", "Newname": "SIP/voipgrid-siproute-dev-0000020b", "content": ""}, - {"Event": "Rename", "Privilege": "call,all", "Channel": "SIP/voipgrid-siproute-dev-0000020b", "Uniqueid": "ua0-acc-1513786064.1973", "Newname": "Local/+31853030903@osvpi_world_call_permittedplus-000002d4;1", "content": ""}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Event": "NewCallerid", "Privilege": "call,all", "Channel": "SIP/voipgrid-siproute-dev-0000020b", "Uniqueid": "ua0-acc-1513786064.1971", "CallerIDName": "", "CallerIDNum": "ID400721", "content": ""}, - {"Bridgestate": "Unlink", "Channel2": "Local/+31853030903@osvpi_world_call_permittedplus-000002d4;1", "Privilege": "call,all", "CallerID2": "+31853030903", "Uniqueid1": "ua0-acc-1513786064.1972", "Channel1": "Local/+31853030903@osvpi_world_call_permittedplus-000002d4;2", "Uniqueid2": "ua0-acc-1513786064.1973", "Bridgetype": "core", "Event": "Bridge", "CallerID1": "+31508009074", "content": ""}, - {"ConnectedLineNum": "+31508009074", "Event": "Hangup", "ConnectedLineName": "", "Cause-txt": "Normal Clearing", "AccountCode": "12668", "Privilege": "call,all", "Channel": "Local/+31853030903@world_out-000002d5;1", "CallerIDNum": "+31853030903", "content": "", "CallerIDName": "", "Cause": "16", "Uniqueid": "ua0-acc-1513786064.1975"}, - {"Event": "Dial", "SubEvent": "End", "Privilege": "call,all", "Channel": "Local/+31853030903@world_out-000002d5;2", "UniqueID": "ua0-acc-1513786064.1974", "content": "", "DialStatus": "ANSWER"}, - {"ConnectedLineNum": "+31853030903", "Event": "Hangup", "ConnectedLineName": "", "Cause-txt": "Normal Clearing", "AccountCode": "12668", "Privilege": "call,all", "Channel": "Local/+31853030903@world_out-000002d5;2", "CallerIDNum": "+31508009074", "content": "", "CallerIDName": "", "Cause": "16", "Uniqueid": "ua0-acc-1513786064.1974"}, - {"ConnectedLineNum": "+31508009074", "Event": "Hangup", "ConnectedLineName": "", "Cause-txt": "Normal Clearing", "AccountCode": "12668", "Privilege": "call,all", "Channel": "Local/+31853030903@osvpi_world_call_permittedplus-000002d4;1", "CallerIDNum": "+31853030903", "content": "", "CallerIDName": "", "Cause": "16", "Uniqueid": "ua0-acc-1513786064.1973"}, - {"Event": "Dial", "SubEvent": "End", "Privilege": "call,all", "Channel": "Local/+31853030903@osvpi_world_call_permittedplus-000002d4;2", "UniqueID": "ua0-acc-1513786064.1972", "content": "", "DialStatus": "ANSWER"}, - {"ConnectedLineNum": "ID400721", "Event": "Hangup", "ConnectedLineName": "", "Cause-txt": "Normal Clearing", "AccountCode": "12668", "Privilege": "call,all", "Channel": "Local/+31853030903@osvpi_world_call_permittedplus-000002d4;2", "CallerIDNum": "+31508009074", "content": "", "CallerIDName": "", "Cause": "16", "Uniqueid": "ua0-acc-1513786064.1972"}, - {"Bridgestate": "Unlink", "Channel2": "SIP/voipgrid-siproute-dev-0000020a", "Privilege": "call,all", "CallerID2": "ID400721", "Uniqueid1": "ua0-acc-1513786051.1965", "Channel1": "Local/ID400721@osvpi_proc_connectab_cmn-000002d1;2", "Uniqueid2": "ua0-acc-1513786051.1966", "Bridgetype": "core", "Event": "Bridge", "CallerID1": "+31853030903", "content": ""}, - {"ConnectedLineNum": "+31853030903", "Event": "Hangup", "ConnectedLineName": "Calling...", "Cause-txt": "Normal Clearing", "AccountCode": "12668", "Privilege": "call,all", "Channel": "SIP/voipgrid-siproute-dev-0000020a", "CallerIDNum": "ID400721", "content": "", "CallerIDName": "", "Cause": "16", "Uniqueid": "ua0-acc-1513786051.1966"}, - {"Event": "Dial", "SubEvent": "End", "Privilege": "call,all", "Channel": "Local/ID400721@osvpi_proc_connectab_cmn-000002d1;2", "UniqueID": "ua0-acc-1513786051.1965", "content": "", "DialStatus": "ANSWER"}, - {"ConnectedLineNum": "", "Event": "Hangup", "ConnectedLineName": "", "Cause-txt": "Normal Clearing", "AccountCode": "12668", "Privilege": "call,all", "Channel": "Local/ID400721@osvpi_proc_connectab_cmn-000002d1;2", "CallerIDNum": "+31853030903", "content": "", "CallerIDName": "Calling...", "Cause": "16", "Uniqueid": "ua0-acc-1513786051.1965"}, - {"Bridgestate": "Unlink", "Channel2": "SIP/voipgrid-siproute-dev-0000020b", "Privilege": "call,all", "CallerID2": "ID400721", "Uniqueid1": "ua0-acc-1513786051.1964", "Channel1": "Local/ID400721@osvpi_proc_connectab_cmn-000002d1;1", "Uniqueid2": "ua0-acc-1513786064.1971", "Bridgetype": "core", "Event": "Bridge", "CallerID1": "+31508009074", "content": ""}, - {"ConnectedLineNum": "+31508009074", "Event": "Hangup", "ConnectedLineName": "", "Cause-txt": "Normal Clearing", "AccountCode": "12668", "Privilege": "call,all", "Channel": "SIP/voipgrid-siproute-dev-0000020b", "CallerIDNum": "ID400721", "content": "", "CallerIDName": "", "Cause": "16", "Uniqueid": "ua0-acc-1513786064.1971"}, - {"Bridgestate": "Unlink", "Channel2": "SIP/126680010-0000020d", "Privilege": "call,all", "CallerID2": "+31853030903", "Uniqueid1": "ua0-acc-1513786064.1976", "Channel1": "SIP/voipgrid-siproute-dev-0000020c", "Uniqueid2": "ua0-acc-1513786065.1977", "Bridgetype": "core", "Event": "Bridge", "CallerID1": "+31508009074", "content": ""}, - {"Event": "Dial", "SubEvent": "End", "Privilege": "call,all", "Channel": "Local/ID400721@osvpi_proc_connectab_cmn-000002d1;1", "UniqueID": "ua0-acc-1513786051.1964", "content": "", "DialStatus": "ANSWER"}, - {"ConnectedLineNum": "", "Event": "Hangup", "ConnectedLineName": "", "Cause-txt": "Normal Clearing", "AccountCode": "12668", "Privilege": "call,all", "Channel": "Local/ID400721@osvpi_proc_connectab_cmn-000002d1;1", "CallerIDNum": "+31508009074", "content": "", "CallerIDName": "", "Cause": "16", "Uniqueid": "ua0-acc-1513786051.1964"}, - {"ConnectedLineNum": "+31508009074", "Event": "Hangup", "ConnectedLineName": "", "Cause-txt": "Normal Clearing", "AccountCode": "12668", "Privilege": "call,all", "Channel": "SIP/126680010-0000020d", "CallerIDNum": "+31853030903", "content": "", "CallerIDName": "", "Cause": "16", "Uniqueid": "ua0-acc-1513786065.1977"}, - {"Event": "Dial", "SubEvent": "End", "Privilege": "call,all", "Channel": "SIP/voipgrid-siproute-dev-0000020c", "UniqueID": "ua0-acc-1513786064.1976", "content": "", "DialStatus": "ANSWER"}, - {"ConnectedLineNum": "", "Event": "Hangup", "ConnectedLineName": "", "Cause-txt": "Normal Clearing", "AccountCode": "12668", "Privilege": "call,all", "Channel": "SIP/voipgrid-siproute-dev-0000020c", "CallerIDNum": "+31508009074", "content": "", "CallerIDName": "", "Cause": "16", "Uniqueid": "ua0-acc-1513786064.1976"} -] diff --git a/tests/fixtures/connectab/cmn-world-account-unaccepted.json b/tests/fixtures/connectab/cmn-world-account-unaccepted.json deleted file mode 100644 index 5b84206..0000000 --- a/tests/fixtures/connectab/cmn-world-account-unaccepted.json +++ /dev/null @@ -1,65 +0,0 @@ -[{"Event":"FullyBooted","Privilege":"system,all","content":"","Status":"Fully Booted"}, - {"Event":"FullyBooted","Privilege":"system,all","content":"","Status":"Fully Booted"}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/ID400761@osvpi_proc_connectab_cmn-0000010d;1","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1512046384.905","Privilege":"call,all","CallerIDName":"","Context":"osvpi_proc_connectab_cmn","CallerIDNum":"","Exten":"ID400761","content":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/ID400761@osvpi_proc_connectab_cmn-0000010d;2","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"ua1-staging-1512046384.906","Privilege":"call,all","CallerIDName":"","Context":"osvpi_proc_connectab_cmn","CallerIDNum":"","Exten":"ID400761","content":""}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/ID400761@osvpi_proc_connectab_cmn-0000010d;1","Uniqueid":"ua1-staging-1512046384.905","Privilege":"call,all","content":""}, - {"Event":"NewCallerid","Channel":"Local/ID400761@osvpi_proc_connectab_cmn-0000010d;1","Uniqueid":"ua1-staging-1512046384.905","Privilege":"call,all","CallerIDName":"","CallerIDNum":"","CID-CallingPres":"67 (Number Unavailable)","content":""}, - {"Event":"LocalBridge","Channel1":"Local/ID400761@osvpi_proc_connectab_cmn-0000010d;1","Uniqueid1":"ua1-staging-1512046384.905","Channel2":"Local/ID400761@osvpi_proc_connectab_cmn-0000010d;2","Uniqueid2":"ua1-staging-1512046384.906","Privilege":"call,all","Context":"osvpi_proc_connectab_cmn","LocalOptimization":"No","Exten":"ID400761","content":""}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/ID400761@osvpi_proc_connectab_cmn-0000010d;2","Uniqueid":"ua1-staging-1512046384.906","Privilege":"call,all","OldAccountCode":"15001","content":""}, - {"Event":"NewCallerid","Channel":"Local/ID400761@osvpi_proc_connectab_cmn-0000010d;2","Uniqueid":"ua1-staging-1512046384.906","Privilege":"call,all","CallerIDName":"Calling...","CallerIDNum":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":""}, - {"Event":"NewCallerid","Channel":"Local/ID400761@osvpi_proc_connectab_cmn-0000010d;2","Uniqueid":"ua1-staging-1512046384.906","Privilege":"call,all","CallerIDName":"Calling...","CallerIDNum":"203","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":""}, - {"Event":"NewCallerid","Channel":"Local/ID400761@osvpi_proc_connectab_cmn-0000010d;2","Uniqueid":"ua1-staging-1512046384.906","Privilege":"call,all","CallerIDName":"Calling...","CallerIDNum":"+31150010001","CID-CallingPres":"1 (Presentation Allowed, Passed Screen)","content":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-0000010e;1","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1512046384.907","Privilege":"call,all","CallerIDName":"","Context":"osvpi_world_call_permittedplus","CallerIDNum":"","Exten":"+31613925xxx","content":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-0000010e;2","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"ua1-staging-1512046384.908","Privilege":"call,all","CallerIDName":"","Context":"osvpi_world_call_permittedplus","CallerIDNum":"","Exten":"+31613925xxx","content":""}, - {"Event":"NewCallerid","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-0000010e;1","Uniqueid":"ua1-staging-1512046384.907","Privilege":"call,all","CallerIDName":"","CallerIDNum":"ID400761","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":""}, - {"Event":"LocalBridge","Channel1":"Local/+31613925xxx@osvpi_world_call_permittedplus-0000010e;1","Uniqueid1":"ua1-staging-1512046384.907","Channel2":"Local/+31613925xxx@osvpi_world_call_permittedplus-0000010e;2","Uniqueid2":"ua1-staging-1512046384.908","Privilege":"call,all","Context":"osvpi_world_call_permittedplus","LocalOptimization":"Yes","Exten":"+31613925xxx","content":""}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/ID400761@osvpi_proc_connectab_cmn-0000010d;2","UniqueID":"ua1-staging-1512046384.906","Privilege":"call,all","ConnectedLineName":"","Destination":"Local/+31613925xxx@osvpi_world_call_permittedplus-0000010e;1","CallerIDName":"Calling...","Dialstring":"+31613925xxx@osvpi_world_call_permittedplus","content":"","CallerIDNum":"+31150010001","DestUniqueID":"ua1-staging-1512046384.907","ConnectedLineNum":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/+31613925xxx@world_out-0000010f;1","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1512046384.909","Privilege":"call,all","CallerIDName":"","Context":"world_out","CallerIDNum":"","Exten":"+31613925xxx","content":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/+31613925xxx@world_out-0000010f;2","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"ua1-staging-1512046384.910","Privilege":"call,all","CallerIDName":"","Context":"world_out","CallerIDNum":"","Exten":"+31613925xxx","content":""}, - {"Event":"NewCallerid","Channel":"Local/+31613925xxx@world_out-0000010f;1","Uniqueid":"ua1-staging-1512046384.909","Privilege":"call,all","CallerIDName":"","CallerIDNum":"+31613925xxx","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":""}, - {"Event":"LocalBridge","Channel1":"Local/+31613925xxx@world_out-0000010f;1","Uniqueid1":"ua1-staging-1512046384.909","Channel2":"Local/+31613925xxx@world_out-0000010f;2","Uniqueid2":"ua1-staging-1512046384.910","Privilege":"call,all","Context":"world_out","LocalOptimization":"Yes","Exten":"+31613925xxx","content":""}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-0000010e;2","UniqueID":"ua1-staging-1512046384.908","Privilege":"call,all","ConnectedLineName":"","Destination":"Local/+31613925xxx@world_out-0000010f;1","CallerIDName":"Calling...","Dialstring":"+31613925xxx@world_out","content":"","CallerIDNum":"+31150010001","DestUniqueID":"ua1-staging-1512046384.909","ConnectedLineNum":"ID400761"}, - {"Event":"Newchannel","AccountCode":"","Channel":"SIP/voipgrid-siproute-staging-0000016f","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1512046384.911","Privilege":"call,all","CallerIDName":"","Context":"voipgrid_in","CallerIDNum":"","Exten":"","content":""}, - {"Event":"NewCallerid","Channel":"SIP/voipgrid-siproute-staging-0000016f","Uniqueid":"ua1-staging-1512046384.911","Privilege":"call,all","CallerIDName":"","CallerIDNum":"+31613925xxx","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":""}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/+31613925xxx@world_out-0000010f;2","UniqueID":"ua1-staging-1512046384.910","Privilege":"call,all","ConnectedLineName":"","Destination":"SIP/voipgrid-siproute-staging-0000016f","CallerIDName":"Calling...","Dialstring":"+31613925xxx@voipgrid-siproute-staging","content":"","CallerIDNum":"+31150010001","DestUniqueID":"ua1-staging-1512046384.911","ConnectedLineNum":"+31613925xxx"}, - {"Event":"Newstate","Channel":"SIP/voipgrid-siproute-staging-0000016f","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua1-staging-1512046384.911","Privilege":"call,all","ConnectedLineName":"Calling...","CallerIDName":"","CallerIDNum":"+31613925xxx","ConnectedLineNum":"+31150010001","content":""}, - {"Event":"Newstate","Channel":"Local/+31613925xxx@world_out-0000010f;1","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua1-staging-1512046384.909","Privilege":"call,all","ConnectedLineName":"Calling...","CallerIDName":"","CallerIDNum":"+31613925xxx","ConnectedLineNum":"+31150010001","content":""}, - {"Event":"Newstate","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-0000010e;1","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua1-staging-1512046384.907","Privilege":"call,all","ConnectedLineName":"Calling...","CallerIDName":"","CallerIDNum":"ID400761","ConnectedLineNum":"+31150010001","content":""}, - {"Event":"Newstate","Channel":"Local/ID400761@osvpi_proc_connectab_cmn-0000010d;1","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua1-staging-1512046384.905","Privilege":"call,all","ConnectedLineName":"","CallerIDName":"","CallerIDNum":"","ConnectedLineNum":"","content":""}, - {"Event":"Newstate","Channel":"SIP/voipgrid-siproute-staging-0000016f","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512046384.911","Privilege":"call,all","ConnectedLineName":"Calling...","CallerIDName":"","CallerIDNum":"+31613925xxx","ConnectedLineNum":"+31150010001","content":""}, - {"Event":"Newstate","Channel":"Local/+31613925xxx@world_out-0000010f;2","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512046384.910","Privilege":"call,all","ConnectedLineName":"","CallerIDName":"Calling...","CallerIDNum":"+31150010001","ConnectedLineNum":"+31613925xxx","content":""}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"SIP/voipgrid-siproute-staging-0000016f","Uniqueid":"ua1-staging-1512046384.911","Privilege":"call,all","OldAccountCode":"15001","content":""}, - {"Event":"Newstate","Channel":"Local/+31613925xxx@world_out-0000010f;1","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512046384.909","Privilege":"call,all","ConnectedLineName":"Calling...","CallerIDName":"","CallerIDNum":"+31613925xxx","ConnectedLineNum":"+31150010001","content":""}, - {"Event":"Bridge","Channel1":"Local/+31613925xxx@world_out-0000010f;2","Uniqueid1":"ua1-staging-1512046384.910","CallerID1":"+31150010001","Channel2":"SIP/voipgrid-siproute-staging-0000016f","Uniqueid2":"ua1-staging-1512046384.911","CallerID2":"+31613925xxx","Privilege":"call,all","Bridgetype":"core","content":"","Bridgestate":"Link"}, - {"Event":"Newstate","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-0000010e;2","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512046384.908","Privilege":"call,all","ConnectedLineName":"","CallerIDName":"Calling...","CallerIDNum":"+31150010001","ConnectedLineNum":"ID400761","content":""}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/+31613925xxx@world_out-0000010f;1","Uniqueid":"ua1-staging-1512046384.909","Privilege":"call,all","OldAccountCode":"15001","content":""}, - {"Event":"Bridge","Channel1":"Local/+31613925xxx@osvpi_world_call_permittedplus-0000010e;2","Uniqueid1":"ua1-staging-1512046384.908","CallerID1":"+31150010001","Channel2":"Local/+31613925xxx@world_out-0000010f;1","Uniqueid2":"ua1-staging-1512046384.909","CallerID2":"+31613925xxx","Privilege":"call,all","Bridgetype":"core","content":"","Bridgestate":"Link"}, - {"Event":"Newstate","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-0000010e;1","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512046384.907","Privilege":"call,all","ConnectedLineName":"Calling...","CallerIDName":"","CallerIDNum":"ID400761","ConnectedLineNum":"+31150010001","content":""}, - {"Event":"Newstate","Channel":"Local/ID400761@osvpi_proc_connectab_cmn-0000010d;2","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512046384.906","Privilege":"call,all","ConnectedLineName":"","CallerIDName":"Calling...","CallerIDNum":"+31150010001","ConnectedLineNum":"","content":""}, - {"Event":"Newstate","Channel":"Local/ID400761@osvpi_proc_connectab_cmn-0000010d;1","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512046384.905","Privilege":"call,all","ConnectedLineName":"","CallerIDName":"","CallerIDNum":"","ConnectedLineNum":"","content":""}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-0000010e;1","Uniqueid":"ua1-staging-1512046384.907","Privilege":"call,all","OldAccountCode":"15001","content":""}, - {"Event":"Bridge","Channel1":"Local/ID400761@osvpi_proc_connectab_cmn-0000010d;2","Uniqueid1":"ua1-staging-1512046384.906","CallerID1":"+31150010001","Channel2":"Local/+31613925xxx@osvpi_world_call_permittedplus-0000010e;1","Uniqueid2":"ua1-staging-1512046384.907","CallerID2":"ID400761","Privilege":"call,all","Bridgetype":"core","content":"","Bridgestate":"Link"}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/ID400761@osvpi_proc_connectab_cmn-0000010d;1","Uniqueid":"ua1-staging-1512046384.905","Privilege":"call,all","OldAccountCode":"15001","content":""}, - {"Event":"Masquerade","Privilege":"call,all","OriginalState":"Up","CloneState":"Up","Clone":"SIP/voipgrid-siproute-staging-0000016f","content":"","Original":"Local/+31613925xxx@world_out-0000010f;1"}, - {"Event":"Rename","Channel":"SIP/voipgrid-siproute-staging-0000016f","Uniqueid":"ua1-staging-1512046384.911","Privilege":"call,all","Newname":"SIP/voipgrid-siproute-staging-0000016f","content":""}, - {"Event":"Rename","Channel":"Local/+31613925xxx@world_out-0000010f;1","Uniqueid":"ua1-staging-1512046384.909","Privilege":"call,all","Newname":"SIP/voipgrid-siproute-staging-0000016f","content":""}, - {"Event":"Rename","Channel":"SIP/voipgrid-siproute-staging-0000016f","Uniqueid":"ua1-staging-1512046384.911","Privilege":"call,all","Newname":"Local/+31613925xxx@world_out-0000010f;1","content":""}, - {"Event":"NewCallerid","Channel":"SIP/voipgrid-siproute-staging-0000016f","Uniqueid":"ua1-staging-1512046384.909","Privilege":"call,all","CallerIDName":"","CallerIDNum":"+31613925xxx","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":""}, - {"Event":"Bridge","Channel1":"Local/+31613925xxx@world_out-0000010f;2","Uniqueid1":"ua1-staging-1512046384.910","CallerID1":"+31150010001","Channel2":"Local/+31613925xxx@world_out-0000010f;1","Uniqueid2":"ua1-staging-1512046384.911","CallerID2":"+31613925xxx","Privilege":"call,all","Bridgetype":"core","content":"","Bridgestate":"Unlink"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/+31613925xxx@world_out-0000010f;1","Uniqueid":"ua1-staging-1512046384.911","Privilege":"call,all","ConnectedLineName":"Calling...","CallerIDName":"","ConnectedLineNum":"+31150010001","Cause":"16","content":"","CallerIDNum":"+31613925xxx","Cause-txt":"Normal Clearing"}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/+31613925xxx@world_out-0000010f;2","UniqueID":"ua1-staging-1512046384.910","Privilege":"call,all","DialStatus":"ANSWER","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/+31613925xxx@world_out-0000010f;2","Uniqueid":"ua1-staging-1512046384.910","Privilege":"call,all","ConnectedLineName":"","CallerIDName":"Calling...","ConnectedLineNum":"+31613925xxx","Cause":"16","content":"","CallerIDNum":"+31150010001","Cause-txt":"Normal Clearing"}, - {"Event":"Masquerade","Privilege":"call,all","OriginalState":"Up","CloneState":"Up","Clone":"SIP/voipgrid-siproute-staging-0000016f","content":"","Original":"Local/+31613925xxx@osvpi_world_call_permittedplus-0000010e;1"}, - {"Event":"Rename","Channel":"SIP/voipgrid-siproute-staging-0000016f","Uniqueid":"ua1-staging-1512046384.909","Privilege":"call,all","Newname":"SIP/voipgrid-siproute-staging-0000016f","content":""}, - {"Event":"Rename","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-0000010e;1","Uniqueid":"ua1-staging-1512046384.907","Privilege":"call,all","Newname":"SIP/voipgrid-siproute-staging-0000016f","content":""}, - {"Event":"Rename","Channel":"SIP/voipgrid-siproute-staging-0000016f","Uniqueid":"ua1-staging-1512046384.909","Privilege":"call,all","Newname":"Local/+31613925xxx@osvpi_world_call_permittedplus-0000010e;1","content":""}, - {"Event":"NewCallerid","Channel":"SIP/voipgrid-siproute-staging-0000016f","Uniqueid":"ua1-staging-1512046384.907","Privilege":"call,all","CallerIDName":"","CallerIDNum":"ID400761","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":""}, - {"Event":"Bridge","Channel1":"Local/+31613925xxx@osvpi_world_call_permittedplus-0000010e;2","Uniqueid1":"ua1-staging-1512046384.908","CallerID1":"+31150010001","Channel2":"Local/+31613925xxx@osvpi_world_call_permittedplus-0000010e;1","Uniqueid2":"ua1-staging-1512046384.909","CallerID2":"+31613925xxx","Privilege":"call,all","Bridgetype":"core","content":"","Bridgestate":"Unlink"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-0000010e;1","Uniqueid":"ua1-staging-1512046384.909","Privilege":"call,all","ConnectedLineName":"Calling...","CallerIDName":"","ConnectedLineNum":"+31150010001","Cause":"16","content":"","CallerIDNum":"+31613925xxx","Cause-txt":"Normal Clearing"}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-0000010e;2","UniqueID":"ua1-staging-1512046384.908","Privilege":"call,all","DialStatus":"ANSWER","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-0000010e;2","Uniqueid":"ua1-staging-1512046384.908","Privilege":"call,all","ConnectedLineName":"","CallerIDName":"Calling...","ConnectedLineNum":"ID400761","Cause":"16","content":"","CallerIDNum":"+31150010001","Cause-txt":"Normal Clearing"}, - {"Event":"Bridge","Channel1":"Local/ID400761@osvpi_proc_connectab_cmn-0000010d;2","Uniqueid1":"ua1-staging-1512046384.906","CallerID1":"+31150010001","Channel2":"SIP/voipgrid-siproute-staging-0000016f","Uniqueid2":"ua1-staging-1512046384.907","CallerID2":"ID400761","Privilege":"call,all","Bridgetype":"core","content":"","Bridgestate":"Unlink"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"SIP/voipgrid-siproute-staging-0000016f","Uniqueid":"ua1-staging-1512046384.907","Privilege":"call,all","ConnectedLineName":"Calling...","CallerIDName":"","ConnectedLineNum":"+31150010001","Cause":"16","content":"","CallerIDNum":"ID400761","Cause-txt":"Normal Clearing"}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/ID400761@osvpi_proc_connectab_cmn-0000010d;2","UniqueID":"ua1-staging-1512046384.906","Privilege":"call,all","DialStatus":"ANSWER","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/ID400761@osvpi_proc_connectab_cmn-0000010d;2","Uniqueid":"ua1-staging-1512046384.906","Privilege":"call,all","ConnectedLineName":"","CallerIDName":"Calling...","ConnectedLineNum":"","Cause":"16","content":"","CallerIDNum":"+31150010001","Cause-txt":"Normal Clearing"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/ID400761@osvpi_proc_connectab_cmn-0000010d;1","Uniqueid":"ua1-staging-1512046384.905","Privilege":"call,all","ConnectedLineName":"","CallerIDName":"","ConnectedLineNum":"","Cause":"16","content":"","CallerIDNum":"","Cause-txt":"Normal Clearing"}] diff --git a/tests/fixtures/connectab/cmn-world-account.json b/tests/fixtures/connectab/cmn-world-account.json deleted file mode 100644 index caaf5bb..0000000 --- a/tests/fixtures/connectab/cmn-world-account.json +++ /dev/null @@ -1,115 +0,0 @@ -[{"Event":"FullyBooted","Privilege":"system,all","content":"","Status":"Fully Booted"}, - {"Event":"FullyBooted","Privilege":"system,all","content":"","Status":"Fully Booted"}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/ID400741@osvpi_proc_connectab_cmn-00000103;1","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1512038737.881","Privilege":"call,all","CallerIDName":"","Context":"osvpi_proc_connectab_cmn","content":"","CallerIDNum":"","Exten":"ID400741"}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/ID400741@osvpi_proc_connectab_cmn-00000103;2","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"ua1-staging-1512038737.882","Privilege":"call,all","CallerIDName":"","Context":"osvpi_proc_connectab_cmn","content":"","CallerIDNum":"","Exten":"ID400741"}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/ID400741@osvpi_proc_connectab_cmn-00000103;1","Uniqueid":"ua1-staging-1512038737.881","Privilege":"call,all","content":""}, - {"Event":"NewCallerid","Channel":"Local/ID400741@osvpi_proc_connectab_cmn-00000103;1","Uniqueid":"ua1-staging-1512038737.881","Privilege":"call,all","content":"","CallerIDNum":"","CallerIDName":"","CID-CallingPres":"67 (Number Unavailable)"}, - {"Event":"LocalBridge","Channel1":"Local/ID400741@osvpi_proc_connectab_cmn-00000103;1","Uniqueid1":"ua1-staging-1512038737.881","Channel2":"Local/ID400741@osvpi_proc_connectab_cmn-00000103;2","Uniqueid2":"ua1-staging-1512038737.882","Privilege":"call,all","Context":"osvpi_proc_connectab_cmn","LocalOptimization":"No","content":"","Exten":"ID400741"}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/ID400741@osvpi_proc_connectab_cmn-00000103;2","Uniqueid":"ua1-staging-1512038737.882","Privilege":"call,all","content":"","OldAccountCode":"15001"}, - {"Event":"NewCallerid","Channel":"Local/ID400741@osvpi_proc_connectab_cmn-00000103;2","Uniqueid":"ua1-staging-1512038737.882","Privilege":"call,all","content":"","CallerIDNum":"","CallerIDName":"Calling...","CID-CallingPres":"0 (Presentation Allowed, Not Screened)"}, - {"Event":"NewCallerid","Channel":"Local/ID400741@osvpi_proc_connectab_cmn-00000103;2","Uniqueid":"ua1-staging-1512038737.882","Privilege":"call,all","content":"","CallerIDNum":"203","CallerIDName":"Calling...","CID-CallingPres":"0 (Presentation Allowed, Not Screened)"}, - {"Event":"NewCallerid","Channel":"Local/ID400741@osvpi_proc_connectab_cmn-00000103;2","Uniqueid":"ua1-staging-1512038737.882","Privilege":"call,all","content":"","CallerIDNum":"+31150010001","CallerIDName":"Calling...","CID-CallingPres":"1 (Presentation Allowed, Passed Screen)"}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000104;1","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1512038737.883","Privilege":"call,all","CallerIDName":"","Context":"osvpi_world_call_permittedplus","content":"","CallerIDNum":"","Exten":"+31613925xxx"}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000104;2","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"ua1-staging-1512038737.884","Privilege":"call,all","CallerIDName":"","Context":"osvpi_world_call_permittedplus","content":"","CallerIDNum":"","Exten":"+31613925xxx"}, - {"Event":"NewCallerid","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000104;1","Uniqueid":"ua1-staging-1512038737.883","Privilege":"call,all","content":"","CallerIDNum":"ID400741","CallerIDName":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)"}, - {"Event":"LocalBridge","Channel1":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000104;1","Uniqueid1":"ua1-staging-1512038737.883","Channel2":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000104;2","Uniqueid2":"ua1-staging-1512038737.884","Privilege":"call,all","Context":"osvpi_world_call_permittedplus","LocalOptimization":"Yes","content":"","Exten":"+31613925xxx"}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/ID400741@osvpi_proc_connectab_cmn-00000103;2","UniqueID":"ua1-staging-1512038737.882","Privilege":"call,all","CallerIDName":"Calling...","DestUniqueID":"ua1-staging-1512038737.883","Destination":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000104;1","Dialstring":"+31613925xxx@osvpi_world_call_permittedplus","content":"","CallerIDNum":"+31150010001","ConnectedLineNum":"","ConnectedLineName":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/+31613925xxx@world_out-00000105;1","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1512038737.885","Privilege":"call,all","CallerIDName":"","Context":"world_out","content":"","CallerIDNum":"","Exten":"+31613925xxx"}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/+31613925xxx@world_out-00000105;2","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"ua1-staging-1512038737.886","Privilege":"call,all","CallerIDName":"","Context":"world_out","content":"","CallerIDNum":"","Exten":"+31613925xxx"}, - {"Event":"NewCallerid","Channel":"Local/+31613925xxx@world_out-00000105;1","Uniqueid":"ua1-staging-1512038737.885","Privilege":"call,all","content":"","CallerIDNum":"+31613925xxx","CallerIDName":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)"}, - {"Event":"LocalBridge","Channel1":"Local/+31613925xxx@world_out-00000105;1","Uniqueid1":"ua1-staging-1512038737.885","Channel2":"Local/+31613925xxx@world_out-00000105;2","Uniqueid2":"ua1-staging-1512038737.886","Privilege":"call,all","Context":"world_out","LocalOptimization":"Yes","content":"","Exten":"+31613925xxx"}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000104;2","UniqueID":"ua1-staging-1512038737.884","Privilege":"call,all","CallerIDName":"Calling...","DestUniqueID":"ua1-staging-1512038737.885","Destination":"Local/+31613925xxx@world_out-00000105;1","Dialstring":"+31613925xxx@world_out","content":"","CallerIDNum":"+31150010001","ConnectedLineNum":"ID400741","ConnectedLineName":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"SIP/voipgrid-siproute-staging-0000016b","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1512038737.887","Privilege":"call,all","CallerIDName":"","Context":"voipgrid_in","content":"","CallerIDNum":"","Exten":""}, - {"Event":"NewCallerid","Channel":"SIP/voipgrid-siproute-staging-0000016b","Uniqueid":"ua1-staging-1512038737.887","Privilege":"call,all","content":"","CallerIDNum":"+31613925xxx","CallerIDName":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)"}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/+31613925xxx@world_out-00000105;2","UniqueID":"ua1-staging-1512038737.886","Privilege":"call,all","CallerIDName":"Calling...","DestUniqueID":"ua1-staging-1512038737.887","Destination":"SIP/voipgrid-siproute-staging-0000016b","Dialstring":"+31613925xxx@voipgrid-siproute-staging","content":"","CallerIDNum":"+31150010001","ConnectedLineNum":"+31613925xxx","ConnectedLineName":""}, - {"Event":"Newstate","Channel":"SIP/voipgrid-siproute-staging-0000016b","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua1-staging-1512038737.887","Privilege":"call,all","content":"","ConnectedLineNum":"+31150010001","CallerIDNum":"+31613925xxx","CallerIDName":"","ConnectedLineName":"Calling..."}, - {"Event":"Newstate","Channel":"Local/+31613925xxx@world_out-00000105;1","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua1-staging-1512038737.885","Privilege":"call,all","content":"","ConnectedLineNum":"+31150010001","CallerIDNum":"+31613925xxx","CallerIDName":"","ConnectedLineName":"Calling..."}, - {"Event":"Newstate","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000104;1","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua1-staging-1512038737.883","Privilege":"call,all","content":"","ConnectedLineNum":"+31150010001","CallerIDNum":"ID400741","CallerIDName":"","ConnectedLineName":"Calling..."}, - {"Event":"Newstate","Channel":"Local/ID400741@osvpi_proc_connectab_cmn-00000103;1","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua1-staging-1512038737.881","Privilege":"call,all","content":"","ConnectedLineNum":"","CallerIDNum":"","CallerIDName":"","ConnectedLineName":""}, - {"Event":"Newstate","Channel":"SIP/voipgrid-siproute-staging-0000016b","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512038737.887","Privilege":"call,all","content":"","ConnectedLineNum":"+31150010001","CallerIDNum":"+31613925xxx","CallerIDName":"","ConnectedLineName":"Calling..."}, - {"Event":"Newstate","Channel":"Local/+31613925xxx@world_out-00000105;2","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512038737.886","Privilege":"call,all","content":"","ConnectedLineNum":"+31613925xxx","CallerIDNum":"+31150010001","CallerIDName":"Calling...","ConnectedLineName":""}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"SIP/voipgrid-siproute-staging-0000016b","Uniqueid":"ua1-staging-1512038737.887","Privilege":"call,all","content":"","OldAccountCode":"15001"}, - {"Event":"Bridge","Channel1":"Local/+31613925xxx@world_out-00000105;2","Uniqueid1":"ua1-staging-1512038737.886","CallerID1":"+31150010001","Channel2":"SIP/voipgrid-siproute-staging-0000016b","Uniqueid2":"ua1-staging-1512038737.887","CallerID2":"+31613925xxx","Privilege":"call,all","Bridgetype":"core","Bridgestate":"Link","content":""}, - {"Event":"Newstate","Channel":"Local/+31613925xxx@world_out-00000105;1","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512038737.885","Privilege":"call,all","content":"","ConnectedLineNum":"+31150010001","CallerIDNum":"+31613925xxx","CallerIDName":"","ConnectedLineName":"Calling..."}, - {"Event":"Newstate","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000104;2","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512038737.884","Privilege":"call,all","content":"","ConnectedLineNum":"ID400741","CallerIDNum":"+31150010001","CallerIDName":"Calling...","ConnectedLineName":""}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/+31613925xxx@world_out-00000105;1","Uniqueid":"ua1-staging-1512038737.885","Privilege":"call,all","content":"","OldAccountCode":"15001"}, - {"Event":"Bridge","Channel1":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000104;2","Uniqueid1":"ua1-staging-1512038737.884","CallerID1":"+31150010001","Channel2":"Local/+31613925xxx@world_out-00000105;1","Uniqueid2":"ua1-staging-1512038737.885","CallerID2":"+31613925xxx","Privilege":"call,all","Bridgetype":"core","Bridgestate":"Link","content":""}, - {"Event":"Newstate","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000104;1","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512038737.883","Privilege":"call,all","content":"","ConnectedLineNum":"+31150010001","CallerIDNum":"ID400741","CallerIDName":"","ConnectedLineName":"Calling..."}, - {"Event":"Newstate","Channel":"Local/ID400741@osvpi_proc_connectab_cmn-00000103;2","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512038737.882","Privilege":"call,all","content":"","ConnectedLineNum":"","CallerIDNum":"+31150010001","CallerIDName":"Calling...","ConnectedLineName":""}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000104;1","Uniqueid":"ua1-staging-1512038737.883","Privilege":"call,all","content":"","OldAccountCode":"15001"}, - {"Event":"Bridge","Channel1":"Local/ID400741@osvpi_proc_connectab_cmn-00000103;2","Uniqueid1":"ua1-staging-1512038737.882","CallerID1":"+31150010001","Channel2":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000104;1","Uniqueid2":"ua1-staging-1512038737.883","CallerID2":"ID400741","Privilege":"call,all","Bridgetype":"core","Bridgestate":"Link","content":""}, - {"Event":"Newstate","Channel":"Local/ID400741@osvpi_proc_connectab_cmn-00000103;1","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512038737.881","Privilege":"call,all","content":"","ConnectedLineNum":"","CallerIDNum":"","CallerIDName":"","ConnectedLineName":""}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/ID400741@osvpi_proc_connectab_cmn-00000103;1","Uniqueid":"ua1-staging-1512038737.881","Privilege":"call,all","content":"","OldAccountCode":"15001"}, - {"Event":"Masquerade","Privilege":"call,all","Original":"Local/+31613925xxx@world_out-00000105;1","OriginalState":"Up","CloneState":"Up","Clone":"SIP/voipgrid-siproute-staging-0000016b","content":""}, - {"Event":"Rename","Channel":"SIP/voipgrid-siproute-staging-0000016b","Uniqueid":"ua1-staging-1512038737.887","Privilege":"call,all","Newname":"SIP/voipgrid-siproute-staging-0000016b","content":""}, - {"Event":"Rename","Channel":"Local/+31613925xxx@world_out-00000105;1","Uniqueid":"ua1-staging-1512038737.885","Privilege":"call,all","Newname":"SIP/voipgrid-siproute-staging-0000016b","content":""}, - {"Event":"Rename","Channel":"SIP/voipgrid-siproute-staging-0000016b","Uniqueid":"ua1-staging-1512038737.887","Privilege":"call,all","Newname":"Local/+31613925xxx@world_out-00000105;1","content":""}, - {"Event":"NewCallerid","Channel":"SIP/voipgrid-siproute-staging-0000016b","Uniqueid":"ua1-staging-1512038737.885","Privilege":"call,all","content":"","CallerIDNum":"+31613925xxx","CallerIDName":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)"}, - {"Event":"Bridge","Channel1":"Local/+31613925xxx@world_out-00000105;2","Uniqueid1":"ua1-staging-1512038737.886","CallerID1":"+31150010001","Channel2":"Local/+31613925xxx@world_out-00000105;1","Uniqueid2":"ua1-staging-1512038737.887","CallerID2":"+31613925xxx","Privilege":"call,all","Bridgetype":"core","Bridgestate":"Unlink","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/+31613925xxx@world_out-00000105;1","Uniqueid":"ua1-staging-1512038737.887","Privilege":"call,all","Cause-txt":"Normal Clearing","Cause":"16","CallerIDName":"","content":"","CallerIDNum":"+31613925xxx","ConnectedLineNum":"+31150010001","ConnectedLineName":"Calling..."}, - {"Event":"Masquerade","Privilege":"call,all","Original":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000104;1","OriginalState":"Up","CloneState":"Up","Clone":"SIP/voipgrid-siproute-staging-0000016b","content":""}, - {"Event":"Rename","Channel":"SIP/voipgrid-siproute-staging-0000016b","Uniqueid":"ua1-staging-1512038737.885","Privilege":"call,all","Newname":"SIP/voipgrid-siproute-staging-0000016b","content":""}, - {"Event":"Rename","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000104;1","Uniqueid":"ua1-staging-1512038737.883","Privilege":"call,all","Newname":"SIP/voipgrid-siproute-staging-0000016b","content":""}, - {"Event":"Rename","Channel":"SIP/voipgrid-siproute-staging-0000016b","Uniqueid":"ua1-staging-1512038737.885","Privilege":"call,all","Newname":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000104;1","content":""}, - {"Event":"NewCallerid","Channel":"SIP/voipgrid-siproute-staging-0000016b","Uniqueid":"ua1-staging-1512038737.883","Privilege":"call,all","content":"","CallerIDNum":"ID400741","CallerIDName":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)"}, - {"Event":"Bridge","Channel1":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000104;2","Uniqueid1":"ua1-staging-1512038737.884","CallerID1":"+31150010001","Channel2":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000104;1","Uniqueid2":"ua1-staging-1512038737.885","CallerID2":"+31613925xxx","Privilege":"call,all","Bridgetype":"core","Bridgestate":"Unlink","content":""}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/+31613925xxx@world_out-00000105;2","UniqueID":"ua1-staging-1512038737.886","Privilege":"call,all","content":"","DialStatus":"ANSWER"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/+31613925xxx@world_out-00000105;2","Uniqueid":"ua1-staging-1512038737.886","Privilege":"call,all","Cause-txt":"Normal Clearing","Cause":"16","CallerIDName":"Calling...","content":"","CallerIDNum":"+31150010001","ConnectedLineNum":"+31613925xxx","ConnectedLineName":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000104;1","Uniqueid":"ua1-staging-1512038737.885","Privilege":"call,all","Cause-txt":"Normal Clearing","Cause":"16","CallerIDName":"","content":"","CallerIDNum":"+31613925xxx","ConnectedLineNum":"+31150010001","ConnectedLineName":"Calling..."}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000104;2","UniqueID":"ua1-staging-1512038737.884","Privilege":"call,all","content":"","DialStatus":"ANSWER"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000104;2","Uniqueid":"ua1-staging-1512038737.884","Privilege":"call,all","Cause-txt":"Normal Clearing","Cause":"16","CallerIDName":"Calling...","content":"","CallerIDNum":"+31150010001","ConnectedLineNum":"ID400741","ConnectedLineName":""}, - {"Event":"NewCallerid","Channel":"Local/ID400741@osvpi_proc_connectab_cmn-00000103;1","Uniqueid":"ua1-staging-1512038737.881","Privilege":"call,all","content":"","CallerIDNum":"+31613925xxx","CallerIDName":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)"}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/203@osvpi_account_call_int_permitted-00000106;1","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1512038754.888","Privilege":"call,all","CallerIDName":"","Context":"osvpi_account_call_int_permitted","content":"","CallerIDNum":"","Exten":"203"}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/203@osvpi_account_call_int_permitted-00000106;2","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"ua1-staging-1512038754.889","Privilege":"call,all","CallerIDName":"","Context":"osvpi_account_call_int_permitted","content":"","CallerIDNum":"","Exten":"203"}, - {"Event":"NewCallerid","Channel":"Local/203@osvpi_account_call_int_permitted-00000106;1","Uniqueid":"ua1-staging-1512038754.888","Privilege":"call,all","content":"","CallerIDNum":"ID400741","CallerIDName":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)"}, - {"Event":"LocalBridge","Channel1":"Local/203@osvpi_account_call_int_permitted-00000106;1","Uniqueid1":"ua1-staging-1512038754.888","Channel2":"Local/203@osvpi_account_call_int_permitted-00000106;2","Uniqueid2":"ua1-staging-1512038754.889","Privilege":"call,all","Context":"osvpi_account_call_int_permitted","LocalOptimization":"Yes","content":"","Exten":"203"}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/ID400741@osvpi_proc_connectab_cmn-00000103;1","UniqueID":"ua1-staging-1512038737.881","Privilege":"call,all","CallerIDName":"","DestUniqueID":"ua1-staging-1512038754.888","Destination":"Local/203@osvpi_account_call_int_permitted-00000106;1","Dialstring":"203@osvpi_account_call_int_permitted","content":"","CallerIDNum":"+31613925xxx","ConnectedLineNum":"","ConnectedLineName":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/ID730671@osvpi_route_phoneaccount-00000107;1","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1512038754.890","Privilege":"call,all","CallerIDName":"","Context":"osvpi_route_phoneaccount","content":"","CallerIDNum":"","Exten":"ID730671"}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/ID730671@osvpi_route_phoneaccount-00000107;2","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"ua1-staging-1512038754.891","Privilege":"call,all","CallerIDName":"","Context":"osvpi_route_phoneaccount","content":"","CallerIDNum":"","Exten":"ID730671"}, - {"Event":"NewCallerid","Channel":"Local/ID730671@osvpi_route_phoneaccount-00000107;1","Uniqueid":"ua1-staging-1512038754.890","Privilege":"call,all","content":"","CallerIDNum":"203","CallerIDName":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)"}, - {"Event":"LocalBridge","Channel1":"Local/ID730671@osvpi_route_phoneaccount-00000107;1","Uniqueid1":"ua1-staging-1512038754.890","Channel2":"Local/ID730671@osvpi_route_phoneaccount-00000107;2","Uniqueid2":"ua1-staging-1512038754.891","Privilege":"call,all","Context":"osvpi_route_phoneaccount","LocalOptimization":"Yes","content":"","Exten":"ID730671"}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/203@osvpi_account_call_int_permitted-00000106;2","UniqueID":"ua1-staging-1512038754.889","Privilege":"call,all","CallerIDName":"","DestUniqueID":"ua1-staging-1512038754.890","Destination":"Local/ID730671@osvpi_route_phoneaccount-00000107;1","Dialstring":"ID730671@osvpi_route_phoneaccount","content":"","CallerIDNum":"+31613925xxx","ConnectedLineNum":"ID400741","ConnectedLineName":""}, - {"Event":"UserEvent","UserEvent":"NotifyCallstate","AccountCode":"150010003","Uniqueid":"ua1-staging-1512038754.891","Privilege":"user,all","AccountInternalNumber":"203","WebhookUrls":"","Provider":"webhook","content":""}, - {"Event":"Newchannel","AccountCode":"150010003","Channel":"SIP/150010003-0000016c","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1512038754.892","Privilege":"call,all","CallerIDName":"","Context":"osvpi_account","content":"","CallerIDNum":"","Exten":""}, - {"Event":"NewCallerid","Channel":"SIP/150010003-0000016c","Uniqueid":"ua1-staging-1512038754.892","Privilege":"call,all","content":"","CallerIDNum":"203","CallerIDName":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)"}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/ID730671@osvpi_route_phoneaccount-00000107;2","UniqueID":"ua1-staging-1512038754.891","Privilege":"call,all","CallerIDName":"","DestUniqueID":"ua1-staging-1512038754.892","Destination":"SIP/150010003-0000016c","Dialstring":"150010003/150010003/195.35.114.93!!0613925245","content":"","CallerIDNum":"+31613925xxx","ConnectedLineNum":"203","ConnectedLineName":""}, - {"Event":"Newstate","Channel":"SIP/150010003-0000016c","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua1-staging-1512038754.892","Privilege":"call,all","content":"","ConnectedLineNum":"+31613925xxx","CallerIDNum":"203","CallerIDName":"","ConnectedLineName":""}, - {"Event":"Newstate","Channel":"Local/ID730671@osvpi_route_phoneaccount-00000107;1","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua1-staging-1512038754.890","Privilege":"call,all","content":"","ConnectedLineNum":"+31613925xxx","CallerIDNum":"203","CallerIDName":"","ConnectedLineName":""}, - {"Event":"Newstate","Channel":"Local/203@osvpi_account_call_int_permitted-00000106;1","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua1-staging-1512038754.888","Privilege":"call,all","content":"","ConnectedLineNum":"+31613925xxx","CallerIDNum":"ID400741","CallerIDName":"","ConnectedLineName":""}, - {"Event":"Newstate","Channel":"SIP/150010003-0000016c","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512038754.892","Privilege":"call,all","content":"","ConnectedLineNum":"+31613925xxx","CallerIDNum":"203","CallerIDName":"","ConnectedLineName":""}, - {"Event":"Newstate","Channel":"Local/ID730671@osvpi_route_phoneaccount-00000107;2","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512038754.891","Privilege":"call,all","content":"","ConnectedLineNum":"203","CallerIDNum":"+31613925xxx","CallerIDName":"","ConnectedLineName":""}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"SIP/150010003-0000016c","Uniqueid":"ua1-staging-1512038754.892","Privilege":"call,all","content":"","OldAccountCode":"15001"}, - {"Event":"Newstate","Channel":"Local/ID730671@osvpi_route_phoneaccount-00000107;1","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512038754.890","Privilege":"call,all","content":"","ConnectedLineNum":"+31613925xxx","CallerIDNum":"203","CallerIDName":"","ConnectedLineName":""}, - {"Event":"Newstate","Channel":"Local/203@osvpi_account_call_int_permitted-00000106;2","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512038754.889","Privilege":"call,all","content":"","ConnectedLineNum":"ID400741","CallerIDNum":"+31613925xxx","CallerIDName":"","ConnectedLineName":""}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/ID730671@osvpi_route_phoneaccount-00000107;1","Uniqueid":"ua1-staging-1512038754.890","Privilege":"call,all","content":"","OldAccountCode":"15001"}, - {"Event":"Bridge","Channel1":"Local/203@osvpi_account_call_int_permitted-00000106;2","Uniqueid1":"ua1-staging-1512038754.889","CallerID1":"+31613925xxx","Channel2":"Local/ID730671@osvpi_route_phoneaccount-00000107;1","Uniqueid2":"ua1-staging-1512038754.890","CallerID2":"203","Privilege":"call,all","Bridgetype":"core","Bridgestate":"Link","content":""}, - {"Event":"Bridge","Channel1":"Local/ID730671@osvpi_route_phoneaccount-00000107;2","Uniqueid1":"ua1-staging-1512038754.891","CallerID1":"+31613925xxx","Channel2":"SIP/150010003-0000016c","Uniqueid2":"ua1-staging-1512038754.892","CallerID2":"203","Privilege":"call,all","Bridgetype":"core","Bridgestate":"Link","content":""}, - {"Event":"Newstate","Channel":"Local/203@osvpi_account_call_int_permitted-00000106;1","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512038754.888","Privilege":"call,all","content":"","ConnectedLineNum":"+31613925xxx","CallerIDNum":"ID400741","CallerIDName":"","ConnectedLineName":""}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/203@osvpi_account_call_int_permitted-00000106;1","Uniqueid":"ua1-staging-1512038754.888","Privilege":"call,all","content":"","OldAccountCode":"15001"}, - {"Event":"Bridge","Channel1":"Local/ID400741@osvpi_proc_connectab_cmn-00000103;1","Uniqueid1":"ua1-staging-1512038737.881","CallerID1":"+31613925xxx","Channel2":"Local/203@osvpi_account_call_int_permitted-00000106;1","Uniqueid2":"ua1-staging-1512038754.888","CallerID2":"ID400741","Privilege":"call,all","Bridgetype":"core","Bridgestate":"Link","content":""}, - {"Event":"Masquerade","Privilege":"call,all","Original":"Local/ID730671@osvpi_route_phoneaccount-00000107;1","OriginalState":"Up","CloneState":"Up","Clone":"SIP/150010003-0000016c","content":""}, - {"Event":"Rename","Channel":"SIP/150010003-0000016c","Uniqueid":"ua1-staging-1512038754.892","Privilege":"call,all","Newname":"SIP/150010003-0000016c","content":""}, - {"Event":"Rename","Channel":"Local/ID730671@osvpi_route_phoneaccount-00000107;1","Uniqueid":"ua1-staging-1512038754.890","Privilege":"call,all","Newname":"SIP/150010003-0000016c","content":""}, - {"Event":"Rename","Channel":"SIP/150010003-0000016c","Uniqueid":"ua1-staging-1512038754.892","Privilege":"call,all","Newname":"Local/ID730671@osvpi_route_phoneaccount-00000107;1","content":""}, - {"Event":"NewCallerid","Channel":"SIP/150010003-0000016c","Uniqueid":"ua1-staging-1512038754.890","Privilege":"call,all","content":"","CallerIDNum":"203","CallerIDName":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)"}, - {"Event":"Bridge","Channel1":"Local/ID730671@osvpi_route_phoneaccount-00000107;2","Uniqueid1":"ua1-staging-1512038754.891","CallerID1":"+31613925xxx","Channel2":"Local/ID730671@osvpi_route_phoneaccount-00000107;1","Uniqueid2":"ua1-staging-1512038754.892","CallerID2":"203","Privilege":"call,all","Bridgetype":"core","Bridgestate":"Unlink","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/ID730671@osvpi_route_phoneaccount-00000107;1","Uniqueid":"ua1-staging-1512038754.892","Privilege":"call,all","Cause-txt":"Normal Clearing","Cause":"16","CallerIDName":"","content":"","CallerIDNum":"203","ConnectedLineNum":"+31613925xxx","ConnectedLineName":""}, - {"Event":"Masquerade","Privilege":"call,all","Original":"Local/203@osvpi_account_call_int_permitted-00000106;1","OriginalState":"Up","CloneState":"Up","Clone":"SIP/150010003-0000016c","content":""}, - {"Event":"Rename","Channel":"SIP/150010003-0000016c","Uniqueid":"ua1-staging-1512038754.890","Privilege":"call,all","Newname":"SIP/150010003-0000016c","content":""}, - {"Event":"Rename","Channel":"Local/203@osvpi_account_call_int_permitted-00000106;1","Uniqueid":"ua1-staging-1512038754.888","Privilege":"call,all","Newname":"SIP/150010003-0000016c","content":""}, - {"Event":"Rename","Channel":"SIP/150010003-0000016c","Uniqueid":"ua1-staging-1512038754.890","Privilege":"call,all","Newname":"Local/203@osvpi_account_call_int_permitted-00000106;1","content":""}, - {"Event":"NewCallerid","Channel":"SIP/150010003-0000016c","Uniqueid":"ua1-staging-1512038754.888","Privilege":"call,all","content":"","CallerIDNum":"ID400741","CallerIDName":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)"}, - {"Event":"Bridge","Channel1":"Local/203@osvpi_account_call_int_permitted-00000106;2","Uniqueid1":"ua1-staging-1512038754.889","CallerID1":"+31613925xxx","Channel2":"Local/203@osvpi_account_call_int_permitted-00000106;1","Uniqueid2":"ua1-staging-1512038754.890","CallerID2":"203","Privilege":"call,all","Bridgetype":"core","Bridgestate":"Unlink","content":""}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/ID730671@osvpi_route_phoneaccount-00000107;2","UniqueID":"ua1-staging-1512038754.891","Privilege":"call,all","content":"","DialStatus":"ANSWER"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/ID730671@osvpi_route_phoneaccount-00000107;2","Uniqueid":"ua1-staging-1512038754.891","Privilege":"call,all","Cause-txt":"Normal Clearing","Cause":"16","CallerIDName":"","content":"","CallerIDNum":"+31613925xxx","ConnectedLineNum":"203","ConnectedLineName":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/203@osvpi_account_call_int_permitted-00000106;1","Uniqueid":"ua1-staging-1512038754.890","Privilege":"call,all","Cause-txt":"Normal Clearing","Cause":"16","CallerIDName":"","content":"","CallerIDNum":"203","ConnectedLineNum":"+31613925xxx","ConnectedLineName":""}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/203@osvpi_account_call_int_permitted-00000106;2","UniqueID":"ua1-staging-1512038754.889","Privilege":"call,all","content":"","DialStatus":"ANSWER"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/203@osvpi_account_call_int_permitted-00000106;2","Uniqueid":"ua1-staging-1512038754.889","Privilege":"call,all","Cause-txt":"Normal Clearing","Cause":"16","CallerIDName":"","content":"","CallerIDNum":"+31613925xxx","ConnectedLineNum":"ID400741","ConnectedLineName":""}, - {"Event":"Bridge","Channel1":"Local/ID400741@osvpi_proc_connectab_cmn-00000103;2","Uniqueid1":"ua1-staging-1512038737.882","CallerID1":"+31150010001","Channel2":"SIP/voipgrid-siproute-staging-0000016b","Uniqueid2":"ua1-staging-1512038737.883","CallerID2":"ID400741","Privilege":"call,all","Bridgetype":"core","Bridgestate":"Unlink","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"SIP/voipgrid-siproute-staging-0000016b","Uniqueid":"ua1-staging-1512038737.883","Privilege":"call,all","Cause-txt":"Normal Clearing","Cause":"16","CallerIDName":"","content":"","CallerIDNum":"ID400741","ConnectedLineNum":"+31150010001","ConnectedLineName":"Calling..."}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/ID400741@osvpi_proc_connectab_cmn-00000103;2","UniqueID":"ua1-staging-1512038737.882","Privilege":"call,all","content":"","DialStatus":"ANSWER"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/ID400741@osvpi_proc_connectab_cmn-00000103;2","Uniqueid":"ua1-staging-1512038737.882","Privilege":"call,all","Cause-txt":"Normal Clearing","Cause":"16","CallerIDName":"Calling...","content":"","CallerIDNum":"+31150010001","ConnectedLineNum":"","ConnectedLineName":""}, - {"Event":"Bridge","Channel1":"Local/ID400741@osvpi_proc_connectab_cmn-00000103;1","Uniqueid1":"ua1-staging-1512038737.881","CallerID1":"+31613925xxx","Channel2":"SIP/150010003-0000016c","Uniqueid2":"ua1-staging-1512038754.888","CallerID2":"ID400741","Privilege":"call,all","Bridgetype":"core","Bridgestate":"Unlink","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"SIP/150010003-0000016c","Uniqueid":"ua1-staging-1512038754.888","Privilege":"call,all","Cause-txt":"Normal Clearing","Cause":"16","CallerIDName":"","content":"","CallerIDNum":"ID400741","ConnectedLineNum":"+31613925xxx","ConnectedLineName":""}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/ID400741@osvpi_proc_connectab_cmn-00000103;1","UniqueID":"ua1-staging-1512038737.881","Privilege":"call,all","content":"","DialStatus":"ANSWER"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/ID400741@osvpi_proc_connectab_cmn-00000103;1","Uniqueid":"ua1-staging-1512038737.881","Privilege":"call,all","Cause-txt":"Normal Clearing","Cause":"16","CallerIDName":"","content":"","CallerIDNum":"+31613925xxx","ConnectedLineNum":"","ConnectedLineName":""}] diff --git a/tests/fixtures/connectab/cmn-world-world.json b/tests/fixtures/connectab/cmn-world-world.json deleted file mode 100644 index 39344a5..0000000 --- a/tests/fixtures/connectab/cmn-world-world.json +++ /dev/null @@ -1,148 +0,0 @@ -[{"Event":"FullyBooted","Privilege":"system,all","content":"","Status":"Fully Booted"}, - {"Event":"FullyBooted","Privilege":"system,all","content":"","Status":"Fully Booted"}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/ID400731@osvpi_proc_connectab_cmn-000000fd;1","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1512036255.865","Privilege":"call,all","CallerIDName":"","Context":"osvpi_proc_connectab_cmn","Exten":"ID400731","CallerIDNum":"","content":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/ID400731@osvpi_proc_connectab_cmn-000000fd;2","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"ua1-staging-1512036255.866","Privilege":"call,all","CallerIDName":"","Context":"osvpi_proc_connectab_cmn","Exten":"ID400731","CallerIDNum":"","content":""}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/ID400731@osvpi_proc_connectab_cmn-000000fd;1","Uniqueid":"ua1-staging-1512036255.865","Privilege":"call,all","content":""}, - {"Event":"NewCallerid","Channel":"Local/ID400731@osvpi_proc_connectab_cmn-000000fd;1","Uniqueid":"ua1-staging-1512036255.865","Privilege":"call,all","CallerIDName":"","CallerIDNum":"","CID-CallingPres":"67 (Number Unavailable)","content":""}, - {"Event":"LocalBridge","Channel1":"Local/ID400731@osvpi_proc_connectab_cmn-000000fd;1","Uniqueid1":"ua1-staging-1512036255.865","Channel2":"Local/ID400731@osvpi_proc_connectab_cmn-000000fd;2","Uniqueid2":"ua1-staging-1512036255.866","Privilege":"call,all","Exten":"ID400731","Context":"osvpi_proc_connectab_cmn","LocalOptimization":"No","content":""}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/ID400731@osvpi_proc_connectab_cmn-000000fd;2","Uniqueid":"ua1-staging-1512036255.866","Privilege":"call,all","content":"","OldAccountCode":"15001"}, - {"Event":"NewCallerid","Channel":"Local/ID400731@osvpi_proc_connectab_cmn-000000fd;2","Uniqueid":"ua1-staging-1512036255.866","Privilege":"call,all","CallerIDName":"Calling...","CallerIDNum":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":""}, - {"Event":"NewCallerid","Channel":"Local/ID400731@osvpi_proc_connectab_cmn-000000fd;2","Uniqueid":"ua1-staging-1512036255.866","Privilege":"call,all","CallerIDName":"Calling...","CallerIDNum":"+31150010003","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-000000fe;1","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1512036255.867","Privilege":"call,all","CallerIDName":"","Context":"osvpi_world_call_permittedplus","Exten":"+31613925xxx","CallerIDNum":"","content":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-000000fe;2","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"ua1-staging-1512036255.868","Privilege":"call,all","CallerIDName":"","Context":"osvpi_world_call_permittedplus","Exten":"+31613925xxx","CallerIDNum":"","content":""}, - {"Event":"NewCallerid","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-000000fe;1","Uniqueid":"ua1-staging-1512036255.867","Privilege":"call,all","CallerIDName":"","CallerIDNum":"ID400731","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":""}, - {"Event":"LocalBridge","Channel1":"Local/+31613925xxx@osvpi_world_call_permittedplus-000000fe;1","Uniqueid1":"ua1-staging-1512036255.867","Channel2":"Local/+31613925xxx@osvpi_world_call_permittedplus-000000fe;2","Uniqueid2":"ua1-staging-1512036255.868","Privilege":"call,all","Exten":"+31613925xxx","Context":"osvpi_world_call_permittedplus","LocalOptimization":"Yes","content":""}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/ID400731@osvpi_proc_connectab_cmn-000000fd;2","UniqueID":"ua1-staging-1512036255.866","Privilege":"call,all","DestUniqueID":"ua1-staging-1512036255.867","CallerIDName":"Calling...","Dialstring":"+31613925xxx@osvpi_world_call_permittedplus","ConnectedLineNum":"","ConnectedLineName":"","CallerIDNum":"+31150010003","Destination":"Local/+31613925xxx@osvpi_world_call_permittedplus-000000fe;1","content":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/+31613925xxx@world_out-000000ff;1","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1512036255.869","Privilege":"call,all","CallerIDName":"","Context":"world_out","Exten":"+31613925xxx","CallerIDNum":"","content":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/+31613925xxx@world_out-000000ff;2","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"ua1-staging-1512036255.870","Privilege":"call,all","CallerIDName":"","Context":"world_out","Exten":"+31613925xxx","CallerIDNum":"","content":""}, - {"Event":"NewCallerid","Channel":"Local/+31613925xxx@world_out-000000ff;1","Uniqueid":"ua1-staging-1512036255.869","Privilege":"call,all","CallerIDName":"","CallerIDNum":"+31613925xxx","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":""}, - {"Event":"LocalBridge","Channel1":"Local/+31613925xxx@world_out-000000ff;1","Uniqueid1":"ua1-staging-1512036255.869","Channel2":"Local/+31613925xxx@world_out-000000ff;2","Uniqueid2":"ua1-staging-1512036255.870","Privilege":"call,all","Exten":"+31613925xxx","Context":"world_out","LocalOptimization":"Yes","content":""}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-000000fe;2","UniqueID":"ua1-staging-1512036255.868","Privilege":"call,all","DestUniqueID":"ua1-staging-1512036255.869","CallerIDName":"Calling...","Dialstring":"+31613925xxx@world_out","ConnectedLineNum":"ID400731","ConnectedLineName":"","CallerIDNum":"+31150010003","Destination":"Local/+31613925xxx@world_out-000000ff;1","content":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"SIP/voipgrid-siproute-staging-00000167","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1512036255.871","Privilege":"call,all","CallerIDName":"","Context":"voipgrid_in","Exten":"","CallerIDNum":"","content":""}, - {"Event":"NewCallerid","Channel":"SIP/voipgrid-siproute-staging-00000167","Uniqueid":"ua1-staging-1512036255.871","Privilege":"call,all","CallerIDName":"","CallerIDNum":"+31613925xxx","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":""}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/+31613925xxx@world_out-000000ff;2","UniqueID":"ua1-staging-1512036255.870","Privilege":"call,all","DestUniqueID":"ua1-staging-1512036255.871","CallerIDName":"Calling...","Dialstring":"+31613925xxx@voipgrid-siproute-staging","ConnectedLineNum":"+31613925xxx","ConnectedLineName":"","CallerIDNum":"+31150010003","Destination":"SIP/voipgrid-siproute-staging-00000167","content":""}, - {"Event":"Newstate","Channel":"SIP/voipgrid-siproute-staging-00000167","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua1-staging-1512036255.871","Privilege":"call,all","content":"","ConnectedLineName":"Calling...","CallerIDNum":"+31613925xxx","CallerIDName":"","ConnectedLineNum":"+31150010003"}, - {"Event":"Newstate","Channel":"Local/+31613925xxx@world_out-000000ff;1","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua1-staging-1512036255.869","Privilege":"call,all","content":"","ConnectedLineName":"Calling...","CallerIDNum":"+31613925xxx","CallerIDName":"","ConnectedLineNum":"+31150010003"}, - {"Event":"Newstate","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-000000fe;1","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua1-staging-1512036255.867","Privilege":"call,all","content":"","ConnectedLineName":"Calling...","CallerIDNum":"ID400731","CallerIDName":"","ConnectedLineNum":"+31150010003"}, - {"Event":"Newstate","Channel":"Local/ID400731@osvpi_proc_connectab_cmn-000000fd;1","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua1-staging-1512036255.865","Privilege":"call,all","content":"","ConnectedLineName":"","CallerIDNum":"","CallerIDName":"","ConnectedLineNum":""}, - {"Event":"Newstate","Channel":"SIP/voipgrid-siproute-staging-00000167","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512036255.871","Privilege":"call,all","content":"","ConnectedLineName":"Calling...","CallerIDNum":"+31613925xxx","CallerIDName":"","ConnectedLineNum":"+31150010003"}, - {"Event":"Newstate","Channel":"Local/+31613925xxx@world_out-000000ff;2","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512036255.870","Privilege":"call,all","content":"","ConnectedLineName":"","CallerIDNum":"+31150010003","CallerIDName":"Calling...","ConnectedLineNum":"+31613925xxx"}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"SIP/voipgrid-siproute-staging-00000167","Uniqueid":"ua1-staging-1512036255.871","Privilege":"call,all","content":"","OldAccountCode":"15001"}, - {"Event":"Bridge","Channel1":"Local/+31613925xxx@world_out-000000ff;2","Uniqueid1":"ua1-staging-1512036255.870","CallerID1":"+31150010003","Channel2":"SIP/voipgrid-siproute-staging-00000167","Uniqueid2":"ua1-staging-1512036255.871","CallerID2":"+31613925xxx","Privilege":"call,all","Bridgetype":"core","Bridgestate":"Link","content":""}, - {"Event":"Newstate","Channel":"Local/+31613925xxx@world_out-000000ff;1","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512036255.869","Privilege":"call,all","content":"","ConnectedLineName":"Calling...","CallerIDNum":"+31613925xxx","CallerIDName":"","ConnectedLineNum":"+31150010003"}, - {"Event":"Newstate","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-000000fe;2","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512036255.868","Privilege":"call,all","content":"","ConnectedLineName":"","CallerIDNum":"+31150010003","CallerIDName":"Calling...","ConnectedLineNum":"ID400731"}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/+31613925xxx@world_out-000000ff;1","Uniqueid":"ua1-staging-1512036255.869","Privilege":"call,all","content":"","OldAccountCode":"15001"}, - {"Event":"Bridge","Channel1":"Local/+31613925xxx@osvpi_world_call_permittedplus-000000fe;2","Uniqueid1":"ua1-staging-1512036255.868","CallerID1":"+31150010003","Channel2":"Local/+31613925xxx@world_out-000000ff;1","Uniqueid2":"ua1-staging-1512036255.869","CallerID2":"+31613925xxx","Privilege":"call,all","Bridgetype":"core","Bridgestate":"Link","content":""}, - {"Event":"Newstate","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-000000fe;1","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512036255.867","Privilege":"call,all","content":"","ConnectedLineName":"Calling...","CallerIDNum":"ID400731","CallerIDName":"","ConnectedLineNum":"+31150010003"}, - {"Event":"Newstate","Channel":"Local/ID400731@osvpi_proc_connectab_cmn-000000fd;2","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512036255.866","Privilege":"call,all","content":"","ConnectedLineName":"","CallerIDNum":"+31150010003","CallerIDName":"Calling...","ConnectedLineNum":""}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-000000fe;1","Uniqueid":"ua1-staging-1512036255.867","Privilege":"call,all","content":"","OldAccountCode":"15001"}, - {"Event":"Bridge","Channel1":"Local/ID400731@osvpi_proc_connectab_cmn-000000fd;2","Uniqueid1":"ua1-staging-1512036255.866","CallerID1":"+31150010003","Channel2":"Local/+31613925xxx@osvpi_world_call_permittedplus-000000fe;1","Uniqueid2":"ua1-staging-1512036255.867","CallerID2":"ID400731","Privilege":"call,all","Bridgetype":"core","Bridgestate":"Link","content":""}, - {"Event":"Newstate","Channel":"Local/ID400731@osvpi_proc_connectab_cmn-000000fd;1","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512036255.865","Privilege":"call,all","content":"","ConnectedLineName":"","CallerIDNum":"","CallerIDName":"","ConnectedLineNum":""}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/ID400731@osvpi_proc_connectab_cmn-000000fd;1","Uniqueid":"ua1-staging-1512036255.865","Privilege":"call,all","content":"","OldAccountCode":"15001"}, - {"Event":"Masquerade","Privilege":"call,all","Original":"Local/+31613925xxx@world_out-000000ff;1","Clone":"SIP/voipgrid-siproute-staging-00000167","OriginalState":"Up","content":"","CloneState":"Up"}, - {"Event":"Rename","Channel":"SIP/voipgrid-siproute-staging-00000167","Uniqueid":"ua1-staging-1512036255.871","Privilege":"call,all","Newname":"SIP/voipgrid-siproute-staging-00000167","content":""}, - {"Event":"Rename","Channel":"Local/+31613925xxx@world_out-000000ff;1","Uniqueid":"ua1-staging-1512036255.869","Privilege":"call,all","Newname":"SIP/voipgrid-siproute-staging-00000167","content":""}, - {"Event":"Rename","Channel":"SIP/voipgrid-siproute-staging-00000167","Uniqueid":"ua1-staging-1512036255.871","Privilege":"call,all","Newname":"Local/+31613925xxx@world_out-000000ff;1","content":""}, - {"Event":"NewCallerid","Channel":"SIP/voipgrid-siproute-staging-00000167","Uniqueid":"ua1-staging-1512036255.869","Privilege":"call,all","CallerIDName":"","CallerIDNum":"+31613925xxx","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":""}, - {"Event":"Bridge","Channel1":"Local/+31613925xxx@world_out-000000ff;2","Uniqueid1":"ua1-staging-1512036255.870","CallerID1":"+31150010003","Channel2":"Local/+31613925xxx@world_out-000000ff;1","Uniqueid2":"ua1-staging-1512036255.871","CallerID2":"+31613925xxx","Privilege":"call,all","Bridgetype":"core","Bridgestate":"Unlink","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/+31613925xxx@world_out-000000ff;1","Uniqueid":"ua1-staging-1512036255.871","Privilege":"call,all","Cause":"16","CallerIDName":"","ConnectedLineNum":"+31150010003","ConnectedLineName":"Calling...","CallerIDNum":"+31613925xxx","Cause-txt":"Normal Clearing","content":""}, - {"Event":"Masquerade","Privilege":"call,all","Original":"Local/+31613925xxx@osvpi_world_call_permittedplus-000000fe;1","Clone":"SIP/voipgrid-siproute-staging-00000167","OriginalState":"Up","content":"","CloneState":"Up"}, - {"Event":"Rename","Channel":"SIP/voipgrid-siproute-staging-00000167","Uniqueid":"ua1-staging-1512036255.869","Privilege":"call,all","Newname":"SIP/voipgrid-siproute-staging-00000167","content":""}, - {"Event":"Rename","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-000000fe;1","Uniqueid":"ua1-staging-1512036255.867","Privilege":"call,all","Newname":"SIP/voipgrid-siproute-staging-00000167","content":""}, - {"Event":"Rename","Channel":"SIP/voipgrid-siproute-staging-00000167","Uniqueid":"ua1-staging-1512036255.869","Privilege":"call,all","Newname":"Local/+31613925xxx@osvpi_world_call_permittedplus-000000fe;1","content":""}, - {"Event":"NewCallerid","Channel":"SIP/voipgrid-siproute-staging-00000167","Uniqueid":"ua1-staging-1512036255.867","Privilege":"call,all","CallerIDName":"","CallerIDNum":"ID400731","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":""}, - {"Event":"Bridge","Channel1":"Local/+31613925xxx@osvpi_world_call_permittedplus-000000fe;2","Uniqueid1":"ua1-staging-1512036255.868","CallerID1":"+31150010003","Channel2":"Local/+31613925xxx@osvpi_world_call_permittedplus-000000fe;1","Uniqueid2":"ua1-staging-1512036255.869","CallerID2":"+31613925xxx","Privilege":"call,all","Bridgetype":"core","Bridgestate":"Unlink","content":""}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/+31613925xxx@world_out-000000ff;2","UniqueID":"ua1-staging-1512036255.870","Privilege":"call,all","DialStatus":"ANSWER","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/+31613925xxx@world_out-000000ff;2","Uniqueid":"ua1-staging-1512036255.870","Privilege":"call,all","Cause":"16","CallerIDName":"Calling...","ConnectedLineNum":"+31613925xxx","ConnectedLineName":"","CallerIDNum":"+31150010003","Cause-txt":"Normal Clearing","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-000000fe;1","Uniqueid":"ua1-staging-1512036255.869","Privilege":"call,all","Cause":"16","CallerIDName":"","ConnectedLineNum":"+31150010003","ConnectedLineName":"Calling...","CallerIDNum":"+31613925xxx","Cause-txt":"Normal Clearing","content":""}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-000000fe;2","UniqueID":"ua1-staging-1512036255.868","Privilege":"call,all","DialStatus":"ANSWER","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-000000fe;2","Uniqueid":"ua1-staging-1512036255.868","Privilege":"call,all","Cause":"16","CallerIDName":"Calling...","ConnectedLineNum":"ID400731","ConnectedLineName":"","CallerIDNum":"+31150010003","Cause-txt":"Normal Clearing","content":""}, - {"Event":"NewCallerid","Channel":"Local/ID400731@osvpi_proc_connectab_cmn-000000fd;1","Uniqueid":"ua1-staging-1512036255.865","Privilege":"call,all","CallerIDName":"","CallerIDNum":"+31613925xxx","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/+31150010003@osvpi_world_call_permittedplus-00000100;1","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1512036277.872","Privilege":"call,all","CallerIDName":"","Context":"osvpi_world_call_permittedplus","Exten":"+31150010003","CallerIDNum":"","content":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/+31150010003@osvpi_world_call_permittedplus-00000100;2","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"ua1-staging-1512036277.873","Privilege":"call,all","CallerIDName":"","Context":"osvpi_world_call_permittedplus","Exten":"+31150010003","CallerIDNum":"","content":""}, - {"Event":"NewCallerid","Channel":"Local/+31150010003@osvpi_world_call_permittedplus-00000100;1","Uniqueid":"ua1-staging-1512036277.872","Privilege":"call,all","CallerIDName":"","CallerIDNum":"ID400731","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":""}, - {"Event":"LocalBridge","Channel1":"Local/+31150010003@osvpi_world_call_permittedplus-00000100;1","Uniqueid1":"ua1-staging-1512036277.872","Channel2":"Local/+31150010003@osvpi_world_call_permittedplus-00000100;2","Uniqueid2":"ua1-staging-1512036277.873","Privilege":"call,all","Exten":"+31150010003","Context":"osvpi_world_call_permittedplus","LocalOptimization":"Yes","content":""}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/ID400731@osvpi_proc_connectab_cmn-000000fd;1","UniqueID":"ua1-staging-1512036255.865","Privilege":"call,all","DestUniqueID":"ua1-staging-1512036277.872","CallerIDName":"","Dialstring":"+31150010003@osvpi_world_call_permittedplus","ConnectedLineNum":"","ConnectedLineName":"","CallerIDNum":"+31613925xxx","Destination":"Local/+31150010003@osvpi_world_call_permittedplus-00000100;1","content":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/+31150010003@world_out-00000101;1","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1512036277.874","Privilege":"call,all","CallerIDName":"","Context":"world_out","Exten":"+31150010003","CallerIDNum":"","content":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/+31150010003@world_out-00000101;2","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"ua1-staging-1512036277.875","Privilege":"call,all","CallerIDName":"","Context":"world_out","Exten":"+31150010003","CallerIDNum":"","content":""}, - {"Event":"NewCallerid","Channel":"Local/+31150010003@world_out-00000101;1","Uniqueid":"ua1-staging-1512036277.874","Privilege":"call,all","CallerIDName":"","CallerIDNum":"+31150010003","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":""}, - {"Event":"LocalBridge","Channel1":"Local/+31150010003@world_out-00000101;1","Uniqueid1":"ua1-staging-1512036277.874","Channel2":"Local/+31150010003@world_out-00000101;2","Uniqueid2":"ua1-staging-1512036277.875","Privilege":"call,all","Exten":"+31150010003","Context":"world_out","LocalOptimization":"Yes","content":""}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/+31150010003@osvpi_world_call_permittedplus-00000100;2","UniqueID":"ua1-staging-1512036277.873","Privilege":"call,all","DestUniqueID":"ua1-staging-1512036277.874","CallerIDName":"","Dialstring":"+31150010003@world_out","ConnectedLineNum":"ID400731","ConnectedLineName":"","CallerIDNum":"+31613925xxx","Destination":"Local/+31150010003@world_out-00000101;1","content":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"SIP/voipgrid-siproute-staging-00000168","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1512036277.876","Privilege":"call,all","CallerIDName":"","Context":"voipgrid_in","Exten":"","CallerIDNum":"","content":""}, - {"Event":"NewCallerid","Channel":"SIP/voipgrid-siproute-staging-00000168","Uniqueid":"ua1-staging-1512036277.876","Privilege":"call,all","CallerIDName":"","CallerIDNum":"+31150010003","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":""}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/+31150010003@world_out-00000101;2","UniqueID":"ua1-staging-1512036277.875","Privilege":"call,all","DestUniqueID":"ua1-staging-1512036277.876","CallerIDName":"","Dialstring":"+31150010003@voipgrid-siproute-staging","ConnectedLineNum":"+31150010003","ConnectedLineName":"","CallerIDNum":"+31613925xxx","Destination":"SIP/voipgrid-siproute-staging-00000168","content":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"SIP/voipgrid-siproute-staging-00000169","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1512036277.877","Privilege":"call,all","CallerIDName":"","Context":"voipgrid_in","Exten":"+31150010003","CallerIDNum":"+31613925xxx","content":""}, - {"Event":"Newstate","Channel":"SIP/voipgrid-siproute-staging-00000169","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"ua1-staging-1512036277.877","Privilege":"call,all","content":"","ConnectedLineName":"","CallerIDNum":"+31613925xxx","CallerIDName":"","ConnectedLineNum":""}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"SIP/voipgrid-siproute-staging-00000169","Uniqueid":"ua1-staging-1512036277.877","Privilege":"call,all","content":""}, - {"Event":"Newstate","Channel":"SIP/voipgrid-siproute-staging-00000168","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua1-staging-1512036277.876","Privilege":"call,all","content":"","ConnectedLineName":"","CallerIDNum":"+31150010003","CallerIDName":"","ConnectedLineNum":"+31613925xxx"}, - {"Event":"Newstate","Channel":"Local/+31150010003@world_out-00000101;1","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua1-staging-1512036277.874","Privilege":"call,all","content":"","ConnectedLineName":"","CallerIDNum":"+31150010003","CallerIDName":"","ConnectedLineNum":"+31613925xxx"}, - {"Event":"Newstate","Channel":"Local/+31150010003@osvpi_world_call_permittedplus-00000100;1","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua1-staging-1512036277.872","Privilege":"call,all","content":"","ConnectedLineName":"","CallerIDNum":"ID400731","CallerIDName":"","ConnectedLineNum":"+31613925xxx"}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/ID730671@osvpi_route_phoneaccount-00000102;1","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1512036278.878","Privilege":"call,all","CallerIDName":"","Context":"osvpi_route_phoneaccount","Exten":"ID730671","CallerIDNum":"","content":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/ID730671@osvpi_route_phoneaccount-00000102;2","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"ua1-staging-1512036278.879","Privilege":"call,all","CallerIDName":"","Context":"osvpi_route_phoneaccount","Exten":"ID730671","CallerIDNum":"","content":""}, - {"Event":"NewCallerid","Channel":"Local/ID730671@osvpi_route_phoneaccount-00000102;1","Uniqueid":"ua1-staging-1512036278.878","Privilege":"call,all","CallerIDName":"","CallerIDNum":"+31150010003","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":""}, - {"Event":"LocalBridge","Channel1":"Local/ID730671@osvpi_route_phoneaccount-00000102;1","Uniqueid1":"ua1-staging-1512036278.878","Channel2":"Local/ID730671@osvpi_route_phoneaccount-00000102;2","Uniqueid2":"ua1-staging-1512036278.879","Privilege":"call,all","Exten":"ID730671","Context":"osvpi_route_phoneaccount","LocalOptimization":"Yes","content":""}, - {"Event":"Dial","SubEvent":"Begin","Channel":"SIP/voipgrid-siproute-staging-00000169","UniqueID":"ua1-staging-1512036277.877","Privilege":"call,all","DestUniqueID":"ua1-staging-1512036278.878","CallerIDName":"","Dialstring":"ID730671@osvpi_route_phoneaccount","ConnectedLineNum":"","ConnectedLineName":"","CallerIDNum":"+31613925xxx","Destination":"Local/ID730671@osvpi_route_phoneaccount-00000102;1","content":""}, - {"Event":"UserEvent","UserEvent":"NotifyCallstate","AccountCode":"150010003","Uniqueid":"ua1-staging-1512036278.879","Privilege":"user,all","AccountInternalNumber":"203","Provider":"webhook","content":"","WebhookUrls":""}, - {"Event":"Newchannel","AccountCode":"150010003","Channel":"SIP/150010003-0000016a","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1512036278.880","Privilege":"call,all","CallerIDName":"","Context":"osvpi_account","Exten":"","CallerIDNum":"","content":""}, - {"Event":"NewCallerid","Channel":"SIP/150010003-0000016a","Uniqueid":"ua1-staging-1512036278.880","Privilege":"call,all","CallerIDName":"","CallerIDNum":"+31150010003","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":""}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/ID730671@osvpi_route_phoneaccount-00000102;2","UniqueID":"ua1-staging-1512036278.879","Privilege":"call,all","DestUniqueID":"ua1-staging-1512036278.880","CallerIDName":"","Dialstring":"150010003/150010003/195.35.114.93!!0613925245","ConnectedLineNum":"+31150010003","ConnectedLineName":"","CallerIDNum":"+31613925xxx","Destination":"SIP/150010003-0000016a","content":""}, - {"Event":"Newstate","Channel":"SIP/150010003-0000016a","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua1-staging-1512036278.880","Privilege":"call,all","content":"","ConnectedLineName":"","CallerIDNum":"+31150010003","CallerIDName":"","ConnectedLineNum":"+31613925xxx"}, - {"Event":"Newstate","Channel":"Local/ID730671@osvpi_route_phoneaccount-00000102;1","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua1-staging-1512036278.878","Privilege":"call,all","content":"","ConnectedLineName":"","CallerIDNum":"+31150010003","CallerIDName":"","ConnectedLineNum":"+31613925xxx"}, - {"Event":"Newstate","Channel":"SIP/150010003-0000016a","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512036278.880","Privilege":"call,all","content":"","ConnectedLineName":"","CallerIDNum":"+31150010003","CallerIDName":"","ConnectedLineNum":"+31613925xxx"}, - {"Event":"Newstate","Channel":"Local/ID730671@osvpi_route_phoneaccount-00000102;2","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512036278.879","Privilege":"call,all","content":"","ConnectedLineName":"","CallerIDNum":"+31613925xxx","CallerIDName":"","ConnectedLineNum":"+31150010003"}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"SIP/150010003-0000016a","Uniqueid":"ua1-staging-1512036278.880","Privilege":"call,all","content":"","OldAccountCode":"15001"}, - {"Event":"Bridge","Channel1":"Local/ID730671@osvpi_route_phoneaccount-00000102;2","Uniqueid1":"ua1-staging-1512036278.879","CallerID1":"+31613925xxx","Channel2":"SIP/150010003-0000016a","Uniqueid2":"ua1-staging-1512036278.880","CallerID2":"+31150010003","Privilege":"call,all","Bridgetype":"core","Bridgestate":"Link","content":""}, - {"Event":"Newstate","Channel":"Local/ID730671@osvpi_route_phoneaccount-00000102;1","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512036278.878","Privilege":"call,all","content":"","ConnectedLineName":"","CallerIDNum":"+31150010003","CallerIDName":"","ConnectedLineNum":"+31613925xxx"}, - {"Event":"Newstate","Channel":"SIP/voipgrid-siproute-staging-00000169","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512036277.877","Privilege":"call,all","content":"","ConnectedLineName":"","CallerIDNum":"+31613925xxx","CallerIDName":"","ConnectedLineNum":""}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/ID730671@osvpi_route_phoneaccount-00000102;1","Uniqueid":"ua1-staging-1512036278.878","Privilege":"call,all","content":"","OldAccountCode":"15001"}, - {"Event":"Bridge","Channel1":"SIP/voipgrid-siproute-staging-00000169","Uniqueid1":"ua1-staging-1512036277.877","CallerID1":"+31613925xxx","Channel2":"Local/ID730671@osvpi_route_phoneaccount-00000102;1","Uniqueid2":"ua1-staging-1512036278.878","CallerID2":"+31150010003","Privilege":"call,all","Bridgetype":"core","Bridgestate":"Link","content":""}, - {"Event":"Newstate","Channel":"SIP/voipgrid-siproute-staging-00000168","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512036277.876","Privilege":"call,all","content":"","ConnectedLineName":"","CallerIDNum":"+31150010003","CallerIDName":"","ConnectedLineNum":"+31613925xxx"}, - {"Event":"Newstate","Channel":"Local/+31150010003@world_out-00000101;2","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512036277.875","Privilege":"call,all","content":"","ConnectedLineName":"","CallerIDNum":"+31613925xxx","CallerIDName":"","ConnectedLineNum":"+31150010003"}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"SIP/voipgrid-siproute-staging-00000168","Uniqueid":"ua1-staging-1512036277.876","Privilege":"call,all","content":"","OldAccountCode":"15001"}, - {"Event":"Bridge","Channel1":"Local/+31150010003@world_out-00000101;2","Uniqueid1":"ua1-staging-1512036277.875","CallerID1":"+31613925xxx","Channel2":"SIP/voipgrid-siproute-staging-00000168","Uniqueid2":"ua1-staging-1512036277.876","CallerID2":"+31150010003","Privilege":"call,all","Bridgetype":"core","Bridgestate":"Link","content":""}, - {"Event":"Newstate","Channel":"Local/+31150010003@world_out-00000101;1","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512036277.874","Privilege":"call,all","content":"","ConnectedLineName":"","CallerIDNum":"+31150010003","CallerIDName":"","ConnectedLineNum":"+31613925xxx"}, - {"Event":"Newstate","Channel":"Local/+31150010003@osvpi_world_call_permittedplus-00000100;2","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512036277.873","Privilege":"call,all","content":"","ConnectedLineName":"","CallerIDNum":"+31613925xxx","CallerIDName":"","ConnectedLineNum":"ID400731"}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/+31150010003@world_out-00000101;1","Uniqueid":"ua1-staging-1512036277.874","Privilege":"call,all","content":"","OldAccountCode":"15001"}, - {"Event":"Bridge","Channel1":"Local/+31150010003@osvpi_world_call_permittedplus-00000100;2","Uniqueid1":"ua1-staging-1512036277.873","CallerID1":"+31613925xxx","Channel2":"Local/+31150010003@world_out-00000101;1","Uniqueid2":"ua1-staging-1512036277.874","CallerID2":"+31150010003","Privilege":"call,all","Bridgetype":"core","Bridgestate":"Link","content":""}, - {"Event":"Newstate","Channel":"Local/+31150010003@osvpi_world_call_permittedplus-00000100;1","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512036277.872","Privilege":"call,all","content":"","ConnectedLineName":"","CallerIDNum":"ID400731","CallerIDName":"","ConnectedLineNum":"+31613925xxx"}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/+31150010003@osvpi_world_call_permittedplus-00000100;1","Uniqueid":"ua1-staging-1512036277.872","Privilege":"call,all","content":"","OldAccountCode":"15001"}, - {"Event":"Bridge","Channel1":"Local/ID400731@osvpi_proc_connectab_cmn-000000fd;1","Uniqueid1":"ua1-staging-1512036255.865","CallerID1":"+31613925xxx","Channel2":"Local/+31150010003@osvpi_world_call_permittedplus-00000100;1","Uniqueid2":"ua1-staging-1512036277.872","CallerID2":"ID400731","Privilege":"call,all","Bridgetype":"core","Bridgestate":"Link","content":""}, - {"Event":"Masquerade","Privilege":"call,all","Original":"Local/ID730671@osvpi_route_phoneaccount-00000102;1","Clone":"SIP/150010003-0000016a","OriginalState":"Up","content":"","CloneState":"Up"}, - {"Event":"Rename","Channel":"SIP/150010003-0000016a","Uniqueid":"ua1-staging-1512036278.880","Privilege":"call,all","Newname":"SIP/150010003-0000016a","content":""}, - {"Event":"Rename","Channel":"Local/ID730671@osvpi_route_phoneaccount-00000102;1","Uniqueid":"ua1-staging-1512036278.878","Privilege":"call,all","Newname":"SIP/150010003-0000016a","content":""}, - {"Event":"Rename","Channel":"SIP/150010003-0000016a","Uniqueid":"ua1-staging-1512036278.880","Privilege":"call,all","Newname":"Local/ID730671@osvpi_route_phoneaccount-00000102;1","content":""}, - {"Event":"NewCallerid","Channel":"SIP/150010003-0000016a","Uniqueid":"ua1-staging-1512036278.878","Privilege":"call,all","CallerIDName":"","CallerIDNum":"+31150010003","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":""}, - {"Event":"Bridge","Channel1":"Local/ID730671@osvpi_route_phoneaccount-00000102;2","Uniqueid1":"ua1-staging-1512036278.879","CallerID1":"+31613925xxx","Channel2":"Local/ID730671@osvpi_route_phoneaccount-00000102;1","Uniqueid2":"ua1-staging-1512036278.880","CallerID2":"+31150010003","Privilege":"call,all","Bridgetype":"core","Bridgestate":"Unlink","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/ID730671@osvpi_route_phoneaccount-00000102;1","Uniqueid":"ua1-staging-1512036278.880","Privilege":"call,all","Cause":"16","CallerIDName":"","ConnectedLineNum":"+31613925xxx","ConnectedLineName":"","CallerIDNum":"+31150010003","Cause-txt":"Normal Clearing","content":""}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/ID730671@osvpi_route_phoneaccount-00000102;2","UniqueID":"ua1-staging-1512036278.879","Privilege":"call,all","DialStatus":"ANSWER","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/ID730671@osvpi_route_phoneaccount-00000102;2","Uniqueid":"ua1-staging-1512036278.879","Privilege":"call,all","Cause":"16","CallerIDName":"","ConnectedLineNum":"+31150010003","ConnectedLineName":"","CallerIDNum":"+31613925xxx","Cause-txt":"Normal Clearing","content":""}, - {"Event":"Masquerade","Privilege":"call,all","Original":"Local/+31150010003@world_out-00000101;1","Clone":"SIP/voipgrid-siproute-staging-00000168","OriginalState":"Up","content":"","CloneState":"Up"}, - {"Event":"Rename","Channel":"SIP/voipgrid-siproute-staging-00000168","Uniqueid":"ua1-staging-1512036277.876","Privilege":"call,all","Newname":"SIP/voipgrid-siproute-staging-00000168","content":""}, - {"Event":"Rename","Channel":"Local/+31150010003@world_out-00000101;1","Uniqueid":"ua1-staging-1512036277.874","Privilege":"call,all","Newname":"SIP/voipgrid-siproute-staging-00000168","content":""}, - {"Event":"Rename","Channel":"SIP/voipgrid-siproute-staging-00000168","Uniqueid":"ua1-staging-1512036277.876","Privilege":"call,all","Newname":"Local/+31150010003@world_out-00000101;1","content":""}, - {"Event":"NewCallerid","Channel":"SIP/voipgrid-siproute-staging-00000168","Uniqueid":"ua1-staging-1512036277.874","Privilege":"call,all","CallerIDName":"","CallerIDNum":"+31150010003","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":""}, - {"Event":"Bridge","Channel1":"Local/+31150010003@world_out-00000101;2","Uniqueid1":"ua1-staging-1512036277.875","CallerID1":"+31613925xxx","Channel2":"Local/+31150010003@world_out-00000101;1","Uniqueid2":"ua1-staging-1512036277.876","CallerID2":"+31150010003","Privilege":"call,all","Bridgetype":"core","Bridgestate":"Unlink","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/+31150010003@world_out-00000101;1","Uniqueid":"ua1-staging-1512036277.876","Privilege":"call,all","Cause":"16","CallerIDName":"","ConnectedLineNum":"+31613925xxx","ConnectedLineName":"","CallerIDNum":"+31150010003","Cause-txt":"Normal Clearing","content":""}, - {"Event":"Masquerade","Privilege":"call,all","Original":"Local/+31150010003@osvpi_world_call_permittedplus-00000100;1","Clone":"SIP/voipgrid-siproute-staging-00000168","OriginalState":"Up","content":"","CloneState":"Up"}, - {"Event":"Rename","Channel":"SIP/voipgrid-siproute-staging-00000168","Uniqueid":"ua1-staging-1512036277.874","Privilege":"call,all","Newname":"SIP/voipgrid-siproute-staging-00000168","content":""}, - {"Event":"Rename","Channel":"Local/+31150010003@osvpi_world_call_permittedplus-00000100;1","Uniqueid":"ua1-staging-1512036277.872","Privilege":"call,all","Newname":"SIP/voipgrid-siproute-staging-00000168","content":""}, - {"Event":"Rename","Channel":"SIP/voipgrid-siproute-staging-00000168","Uniqueid":"ua1-staging-1512036277.874","Privilege":"call,all","Newname":"Local/+31150010003@osvpi_world_call_permittedplus-00000100;1","content":""}, - {"Event":"NewCallerid","Channel":"SIP/voipgrid-siproute-staging-00000168","Uniqueid":"ua1-staging-1512036277.872","Privilege":"call,all","CallerIDName":"","CallerIDNum":"ID400731","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":""}, - {"Event":"Bridge","Channel1":"Local/+31150010003@osvpi_world_call_permittedplus-00000100;2","Uniqueid1":"ua1-staging-1512036277.873","CallerID1":"+31613925xxx","Channel2":"Local/+31150010003@osvpi_world_call_permittedplus-00000100;1","Uniqueid2":"ua1-staging-1512036277.874","CallerID2":"+31150010003","Privilege":"call,all","Bridgetype":"core","Bridgestate":"Unlink","content":""}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/+31150010003@world_out-00000101;2","UniqueID":"ua1-staging-1512036277.875","Privilege":"call,all","DialStatus":"ANSWER","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/+31150010003@world_out-00000101;2","Uniqueid":"ua1-staging-1512036277.875","Privilege":"call,all","Cause":"16","CallerIDName":"","ConnectedLineNum":"+31150010003","ConnectedLineName":"","CallerIDNum":"+31613925xxx","Cause-txt":"Normal Clearing","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/+31150010003@osvpi_world_call_permittedplus-00000100;1","Uniqueid":"ua1-staging-1512036277.874","Privilege":"call,all","Cause":"16","CallerIDName":"","ConnectedLineNum":"+31613925xxx","ConnectedLineName":"","CallerIDNum":"+31150010003","Cause-txt":"Normal Clearing","content":""}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/+31150010003@osvpi_world_call_permittedplus-00000100;2","UniqueID":"ua1-staging-1512036277.873","Privilege":"call,all","DialStatus":"ANSWER","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/+31150010003@osvpi_world_call_permittedplus-00000100;2","Uniqueid":"ua1-staging-1512036277.873","Privilege":"call,all","Cause":"16","CallerIDName":"","ConnectedLineNum":"ID400731","ConnectedLineName":"","CallerIDNum":"+31613925xxx","Cause-txt":"Normal Clearing","content":""}, - {"Event":"Bridge","Channel1":"SIP/voipgrid-siproute-staging-00000169","Uniqueid1":"ua1-staging-1512036277.877","CallerID1":"+31613925xxx","Channel2":"SIP/150010003-0000016a","Uniqueid2":"ua1-staging-1512036278.878","CallerID2":"+31150010003","Privilege":"call,all","Bridgetype":"core","Bridgestate":"Unlink","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"SIP/150010003-0000016a","Uniqueid":"ua1-staging-1512036278.878","Privilege":"call,all","Cause":"16","CallerIDName":"","ConnectedLineNum":"+31613925xxx","ConnectedLineName":"","CallerIDNum":"+31150010003","Cause-txt":"Normal Clearing","content":""}, - {"Event":"Dial","SubEvent":"End","Channel":"SIP/voipgrid-siproute-staging-00000169","UniqueID":"ua1-staging-1512036277.877","Privilege":"call,all","DialStatus":"ANSWER","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"SIP/voipgrid-siproute-staging-00000169","Uniqueid":"ua1-staging-1512036277.877","Privilege":"call,all","Cause":"16","CallerIDName":"","ConnectedLineNum":"","ConnectedLineName":"","CallerIDNum":"+31613925xxx","Cause-txt":"Normal Clearing","content":""}, - {"Event":"Bridge","Channel1":"Local/ID400731@osvpi_proc_connectab_cmn-000000fd;1","Uniqueid1":"ua1-staging-1512036255.865","CallerID1":"+31613925xxx","Channel2":"SIP/voipgrid-siproute-staging-00000168","Uniqueid2":"ua1-staging-1512036277.872","CallerID2":"ID400731","Privilege":"call,all","Bridgetype":"core","Bridgestate":"Unlink","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"SIP/voipgrid-siproute-staging-00000168","Uniqueid":"ua1-staging-1512036277.872","Privilege":"call,all","Cause":"16","CallerIDName":"","ConnectedLineNum":"+31613925xxx","ConnectedLineName":"","CallerIDNum":"ID400731","Cause-txt":"Normal Clearing","content":""}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/ID400731@osvpi_proc_connectab_cmn-000000fd;1","UniqueID":"ua1-staging-1512036255.865","Privilege":"call,all","DialStatus":"ANSWER","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/ID400731@osvpi_proc_connectab_cmn-000000fd;1","Uniqueid":"ua1-staging-1512036255.865","Privilege":"call,all","Cause":"16","CallerIDName":"","ConnectedLineNum":"","ConnectedLineName":"","CallerIDNum":"+31613925xxx","Cause-txt":"Normal Clearing","content":""}, - {"Event":"Bridge","Channel1":"Local/ID400731@osvpi_proc_connectab_cmn-000000fd;2","Uniqueid1":"ua1-staging-1512036255.866","CallerID1":"+31150010003","Channel2":"SIP/voipgrid-siproute-staging-00000167","Uniqueid2":"ua1-staging-1512036255.867","CallerID2":"ID400731","Privilege":"call,all","Bridgetype":"core","Bridgestate":"Unlink","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"SIP/voipgrid-siproute-staging-00000167","Uniqueid":"ua1-staging-1512036255.867","Privilege":"call,all","Cause":"16","CallerIDName":"","ConnectedLineNum":"+31150010003","ConnectedLineName":"Calling...","CallerIDNum":"ID400731","Cause-txt":"Normal Clearing","content":""}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/ID400731@osvpi_proc_connectab_cmn-000000fd;2","UniqueID":"ua1-staging-1512036255.866","Privilege":"call,all","DialStatus":"ANSWER","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/ID400731@osvpi_proc_connectab_cmn-000000fd;2","Uniqueid":"ua1-staging-1512036255.866","Privilege":"call,all","Cause":"16","CallerIDName":"Calling...","ConnectedLineNum":"","ConnectedLineName":"","CallerIDNum":"+31150010003","Cause-txt":"Normal Clearing","content":""}] diff --git a/tests/fixtures/connectab/ctd-account-account.json b/tests/fixtures/connectab/ctd-account-account.json deleted file mode 100644 index eeb4a9c..0000000 --- a/tests/fixtures/connectab/ctd-account-account.json +++ /dev/null @@ -1,115 +0,0 @@ -[{"Event":"FullyBooted","Privilege":"system,all","Status":"Fully Booted","content":""}, - {"Event":"FullyBooted","Privilege":"system,all","Status":"Fully Booted","content":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/ID400641@osvpi_proc_connectab_ctd-00000059;1","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1511945444.283","Privilege":"call,all","CallerIDNum":"","Context":"osvpi_proc_connectab_ctd","Exten":"ID400641","CallerIDName":"","content":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/ID400641@osvpi_proc_connectab_ctd-00000059;2","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"ua1-staging-1511945444.284","Privilege":"call,all","CallerIDNum":"","Context":"osvpi_proc_connectab_ctd","Exten":"ID400641","CallerIDName":"","content":""}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/ID400641@osvpi_proc_connectab_ctd-00000059;1","Uniqueid":"ua1-staging-1511945444.283","Privilege":"call,all","content":""}, - {"Event":"NewCallerid","Channel":"Local/ID400641@osvpi_proc_connectab_ctd-00000059;1","Uniqueid":"ua1-staging-1511945444.283","Privilege":"call,all","CallerIDName":"","CallerIDNum":"","content":"","CID-CallingPres":"67 (Number Unavailable)"}, - {"Event":"LocalBridge","Channel1":"Local/ID400641@osvpi_proc_connectab_ctd-00000059;1","Uniqueid1":"ua1-staging-1511945444.283","Channel2":"Local/ID400641@osvpi_proc_connectab_ctd-00000059;2","Uniqueid2":"ua1-staging-1511945444.284","Privilege":"call,all","LocalOptimization":"No","Context":"osvpi_proc_connectab_ctd","content":"","Exten":"ID400641"}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/ID400641@osvpi_proc_connectab_ctd-00000059;2","Uniqueid":"ua1-staging-1511945444.284","Privilege":"call,all","OldAccountCode":"15001","content":""}, - {"Event":"NewCallerid","Channel":"Local/ID400641@osvpi_proc_connectab_ctd-00000059;2","Uniqueid":"ua1-staging-1511945444.284","Privilege":"call,all","CallerIDName":"Calling...","CallerIDNum":"","content":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)"}, - {"Event":"NewCallerid","Channel":"Local/ID400641@osvpi_proc_connectab_ctd-00000059;2","Uniqueid":"ua1-staging-1511945444.284","Privilege":"call,all","CallerIDName":"Calling...","CallerIDNum":"203","content":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)"}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/203@osvpi_account_call_int_permitted-0000005a;1","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1511945444.285","Privilege":"call,all","CallerIDNum":"","Context":"osvpi_account_call_int_permitted","Exten":"203","CallerIDName":"","content":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/203@osvpi_account_call_int_permitted-0000005a;2","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"ua1-staging-1511945444.286","Privilege":"call,all","CallerIDNum":"","Context":"osvpi_account_call_int_permitted","Exten":"203","CallerIDName":"","content":""}, - {"Event":"NewCallerid","Channel":"Local/203@osvpi_account_call_int_permitted-0000005a;1","Uniqueid":"ua1-staging-1511945444.285","Privilege":"call,all","CallerIDName":"","CallerIDNum":"ID400641","content":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)"}, - {"Event":"LocalBridge","Channel1":"Local/203@osvpi_account_call_int_permitted-0000005a;1","Uniqueid1":"ua1-staging-1511945444.285","Channel2":"Local/203@osvpi_account_call_int_permitted-0000005a;2","Uniqueid2":"ua1-staging-1511945444.286","Privilege":"call,all","LocalOptimization":"Yes","Context":"osvpi_account_call_int_permitted","content":"","Exten":"203"}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/ID400641@osvpi_proc_connectab_ctd-00000059;2","UniqueID":"ua1-staging-1511945444.284","Privilege":"call,all","Dialstring":"203@osvpi_account_call_int_permitted","CallerIDNum":"203","DestUniqueID":"ua1-staging-1511945444.285","Destination":"Local/203@osvpi_account_call_int_permitted-0000005a;1","ConnectedLineNum":"","CallerIDName":"Calling...","ConnectedLineName":"","content":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/ID730671@osvpi_route_phoneaccount-0000005b;1","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1511945444.287","Privilege":"call,all","CallerIDNum":"","Context":"osvpi_route_phoneaccount","Exten":"ID730671","CallerIDName":"","content":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/ID730671@osvpi_route_phoneaccount-0000005b;2","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"ua1-staging-1511945444.288","Privilege":"call,all","CallerIDNum":"","Context":"osvpi_route_phoneaccount","Exten":"ID730671","CallerIDName":"","content":""}, - {"Event":"NewCallerid","Channel":"Local/ID730671@osvpi_route_phoneaccount-0000005b;1","Uniqueid":"ua1-staging-1511945444.287","Privilege":"call,all","CallerIDName":"","CallerIDNum":"203","content":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)"}, - {"Event":"LocalBridge","Channel1":"Local/ID730671@osvpi_route_phoneaccount-0000005b;1","Uniqueid1":"ua1-staging-1511945444.287","Channel2":"Local/ID730671@osvpi_route_phoneaccount-0000005b;2","Uniqueid2":"ua1-staging-1511945444.288","Privilege":"call,all","LocalOptimization":"Yes","Context":"osvpi_route_phoneaccount","content":"","Exten":"ID730671"}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/203@osvpi_account_call_int_permitted-0000005a;2","UniqueID":"ua1-staging-1511945444.286","Privilege":"call,all","Dialstring":"ID730671@osvpi_route_phoneaccount","CallerIDNum":"203","DestUniqueID":"ua1-staging-1511945444.287","Destination":"Local/ID730671@osvpi_route_phoneaccount-0000005b;1","ConnectedLineNum":"ID400641","CallerIDName":"Calling...","ConnectedLineName":"","content":""}, - {"Event":"UserEvent","UserEvent":"NotifyCallstate","AccountCode":"150010003","Uniqueid":"ua1-staging-1511945444.288","Privilege":"user,all","content":"","AccountInternalNumber":"203","WebhookUrls":"","Provider":"webhook"}, - {"Event":"Newchannel","AccountCode":"150010003","Channel":"SIP/150010003-00000069","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1511945444.289","Privilege":"call,all","CallerIDNum":"","Context":"osvpi_account","Exten":"","CallerIDName":"","content":""}, - {"Event":"NewCallerid","Channel":"SIP/150010003-00000069","Uniqueid":"ua1-staging-1511945444.289","Privilege":"call,all","CallerIDName":"","CallerIDNum":"203","content":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)"}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/ID730671@osvpi_route_phoneaccount-0000005b;2","UniqueID":"ua1-staging-1511945444.288","Privilege":"call,all","Dialstring":"150010003/150010003/195.35.114.93!!203","CallerIDNum":"203","DestUniqueID":"ua1-staging-1511945444.289","Destination":"SIP/150010003-00000069","ConnectedLineNum":"203","CallerIDName":"Calling...","ConnectedLineName":"","content":""}, - {"Event":"Newstate","Channel":"SIP/150010003-00000069","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua1-staging-1511945444.289","Privilege":"call,all","ConnectedLineNum":"203","CallerIDName":"","ConnectedLineName":"Calling...","content":"","CallerIDNum":"203"}, - {"Event":"Newstate","Channel":"Local/ID730671@osvpi_route_phoneaccount-0000005b;1","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua1-staging-1511945444.287","Privilege":"call,all","ConnectedLineNum":"203","CallerIDName":"","ConnectedLineName":"Calling...","content":"","CallerIDNum":"203"}, - {"Event":"Newstate","Channel":"Local/203@osvpi_account_call_int_permitted-0000005a;1","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua1-staging-1511945444.285","Privilege":"call,all","ConnectedLineNum":"203","CallerIDName":"","ConnectedLineName":"Calling...","content":"","CallerIDNum":"ID400641"}, - {"Event":"Newstate","Channel":"Local/ID400641@osvpi_proc_connectab_ctd-00000059;1","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua1-staging-1511945444.283","Privilege":"call,all","ConnectedLineNum":"","CallerIDName":"","ConnectedLineName":"","content":"","CallerIDNum":""}, - {"Event":"Newstate","Channel":"SIP/150010003-00000069","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1511945444.289","Privilege":"call,all","ConnectedLineNum":"203","CallerIDName":"","ConnectedLineName":"Calling...","content":"","CallerIDNum":"203"}, - {"Event":"Newstate","Channel":"Local/ID730671@osvpi_route_phoneaccount-0000005b;2","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1511945444.288","Privilege":"call,all","ConnectedLineNum":"203","CallerIDName":"Calling...","ConnectedLineName":"","content":"","CallerIDNum":"203"}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"SIP/150010003-00000069","Uniqueid":"ua1-staging-1511945444.289","Privilege":"call,all","OldAccountCode":"15001","content":""}, - {"Event":"Bridge","Channel1":"Local/ID730671@osvpi_route_phoneaccount-0000005b;2","Uniqueid1":"ua1-staging-1511945444.288","CallerID1":"203","Channel2":"SIP/150010003-00000069","Uniqueid2":"ua1-staging-1511945444.289","CallerID2":"203","Privilege":"call,all","Bridgetype":"core","Bridgestate":"Link","content":""}, - {"Event":"Newstate","Channel":"Local/ID730671@osvpi_route_phoneaccount-0000005b;1","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1511945444.287","Privilege":"call,all","ConnectedLineNum":"203","CallerIDName":"","ConnectedLineName":"Calling...","content":"","CallerIDNum":"203"}, - {"Event":"Newstate","Channel":"Local/203@osvpi_account_call_int_permitted-0000005a;2","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1511945444.286","Privilege":"call,all","ConnectedLineNum":"ID400641","CallerIDName":"Calling...","ConnectedLineName":"","content":"","CallerIDNum":"203"}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/ID730671@osvpi_route_phoneaccount-0000005b;1","Uniqueid":"ua1-staging-1511945444.287","Privilege":"call,all","OldAccountCode":"15001","content":""}, - {"Event":"Bridge","Channel1":"Local/203@osvpi_account_call_int_permitted-0000005a;2","Uniqueid1":"ua1-staging-1511945444.286","CallerID1":"203","Channel2":"Local/ID730671@osvpi_route_phoneaccount-0000005b;1","Uniqueid2":"ua1-staging-1511945444.287","CallerID2":"203","Privilege":"call,all","Bridgetype":"core","Bridgestate":"Link","content":""}, - {"Event":"Newstate","Channel":"Local/203@osvpi_account_call_int_permitted-0000005a;1","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1511945444.285","Privilege":"call,all","ConnectedLineNum":"203","CallerIDName":"","ConnectedLineName":"Calling...","content":"","CallerIDNum":"ID400641"}, - {"Event":"Newstate","Channel":"Local/ID400641@osvpi_proc_connectab_ctd-00000059;2","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1511945444.284","Privilege":"call,all","ConnectedLineNum":"","CallerIDName":"Calling...","ConnectedLineName":"","content":"","CallerIDNum":"203"}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/203@osvpi_account_call_int_permitted-0000005a;1","Uniqueid":"ua1-staging-1511945444.285","Privilege":"call,all","OldAccountCode":"15001","content":""}, - {"Event":"Bridge","Channel1":"Local/ID400641@osvpi_proc_connectab_ctd-00000059;2","Uniqueid1":"ua1-staging-1511945444.284","CallerID1":"203","Channel2":"Local/203@osvpi_account_call_int_permitted-0000005a;1","Uniqueid2":"ua1-staging-1511945444.285","CallerID2":"ID400641","Privilege":"call,all","Bridgetype":"core","Bridgestate":"Link","content":""}, - {"Event":"Newstate","Channel":"Local/ID400641@osvpi_proc_connectab_ctd-00000059;1","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1511945444.283","Privilege":"call,all","ConnectedLineNum":"","CallerIDName":"","ConnectedLineName":"","content":"","CallerIDNum":""}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/ID400641@osvpi_proc_connectab_ctd-00000059;1","Uniqueid":"ua1-staging-1511945444.283","Privilege":"call,all","OldAccountCode":"15001","content":""}, - {"Event":"Masquerade","Privilege":"call,all","Original":"Local/ID730671@osvpi_route_phoneaccount-0000005b;1","CloneState":"Up","Clone":"SIP/150010003-00000069","OriginalState":"Up","content":""}, - {"Event":"Rename","Channel":"SIP/150010003-00000069","Uniqueid":"ua1-staging-1511945444.289","Privilege":"call,all","content":"","Newname":"SIP/150010003-00000069"}, - {"Event":"Rename","Channel":"Local/ID730671@osvpi_route_phoneaccount-0000005b;1","Uniqueid":"ua1-staging-1511945444.287","Privilege":"call,all","content":"","Newname":"SIP/150010003-00000069"}, - {"Event":"Rename","Channel":"SIP/150010003-00000069","Uniqueid":"ua1-staging-1511945444.289","Privilege":"call,all","content":"","Newname":"Local/ID730671@osvpi_route_phoneaccount-0000005b;1"}, - {"Event":"NewCallerid","Channel":"SIP/150010003-00000069","Uniqueid":"ua1-staging-1511945444.287","Privilege":"call,all","CallerIDName":"","CallerIDNum":"203","content":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)"}, - {"Event":"Bridge","Channel1":"Local/ID730671@osvpi_route_phoneaccount-0000005b;2","Uniqueid1":"ua1-staging-1511945444.288","CallerID1":"203","Channel2":"Local/ID730671@osvpi_route_phoneaccount-0000005b;1","Uniqueid2":"ua1-staging-1511945444.289","CallerID2":"203","Privilege":"call,all","Bridgetype":"core","Bridgestate":"Unlink","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/ID730671@osvpi_route_phoneaccount-0000005b;1","Uniqueid":"ua1-staging-1511945444.289","Privilege":"call,all","CallerIDNum":"203","ConnectedLineNum":"203","Cause":"16","Cause-txt":"Normal Clearing","CallerIDName":"","ConnectedLineName":"Calling...","content":""}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/ID730671@osvpi_route_phoneaccount-0000005b;2","UniqueID":"ua1-staging-1511945444.288","Privilege":"call,all","content":"","DialStatus":"ANSWER"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/ID730671@osvpi_route_phoneaccount-0000005b;2","Uniqueid":"ua1-staging-1511945444.288","Privilege":"call,all","CallerIDNum":"203","ConnectedLineNum":"203","Cause":"16","Cause-txt":"Normal Clearing","CallerIDName":"Calling...","ConnectedLineName":"","content":""}, - {"Event":"Masquerade","Privilege":"call,all","Original":"Local/203@osvpi_account_call_int_permitted-0000005a;1","CloneState":"Up","Clone":"SIP/150010003-00000069","OriginalState":"Up","content":""}, - {"Event":"Rename","Channel":"SIP/150010003-00000069","Uniqueid":"ua1-staging-1511945444.287","Privilege":"call,all","content":"","Newname":"SIP/150010003-00000069"}, - {"Event":"Rename","Channel":"Local/203@osvpi_account_call_int_permitted-0000005a;1","Uniqueid":"ua1-staging-1511945444.285","Privilege":"call,all","content":"","Newname":"SIP/150010003-00000069"}, - {"Event":"Rename","Channel":"SIP/150010003-00000069","Uniqueid":"ua1-staging-1511945444.287","Privilege":"call,all","content":"","Newname":"Local/203@osvpi_account_call_int_permitted-0000005a;1"}, - {"Event":"NewCallerid","Channel":"SIP/150010003-00000069","Uniqueid":"ua1-staging-1511945444.285","Privilege":"call,all","CallerIDName":"","CallerIDNum":"ID400641","content":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)"}, - {"Event":"Bridge","Channel1":"Local/203@osvpi_account_call_int_permitted-0000005a;2","Uniqueid1":"ua1-staging-1511945444.286","CallerID1":"203","Channel2":"Local/203@osvpi_account_call_int_permitted-0000005a;1","Uniqueid2":"ua1-staging-1511945444.287","CallerID2":"203","Privilege":"call,all","Bridgetype":"core","Bridgestate":"Unlink","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/203@osvpi_account_call_int_permitted-0000005a;1","Uniqueid":"ua1-staging-1511945444.287","Privilege":"call,all","CallerIDNum":"203","ConnectedLineNum":"203","Cause":"16","Cause-txt":"Normal Clearing","CallerIDName":"","ConnectedLineName":"Calling...","content":""}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/203@osvpi_account_call_int_permitted-0000005a;2","UniqueID":"ua1-staging-1511945444.286","Privilege":"call,all","content":"","DialStatus":"ANSWER"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/203@osvpi_account_call_int_permitted-0000005a;2","Uniqueid":"ua1-staging-1511945444.286","Privilege":"call,all","CallerIDNum":"203","ConnectedLineNum":"ID400641","Cause":"16","Cause-txt":"Normal Clearing","CallerIDName":"Calling...","ConnectedLineName":"","content":""}, - {"Event":"NewCallerid","Channel":"Local/ID400641@osvpi_proc_connectab_ctd-00000059;1","Uniqueid":"ua1-staging-1511945444.283","Privilege":"call,all","CallerIDName":"","CallerIDNum":"203","content":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)"}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/202@osvpi_account_call_int_permitted-0000005c;1","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1511945445.290","Privilege":"call,all","CallerIDNum":"","Context":"osvpi_account_call_int_permitted","Exten":"202","CallerIDName":"","content":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/202@osvpi_account_call_int_permitted-0000005c;2","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"ua1-staging-1511945445.291","Privilege":"call,all","CallerIDNum":"","Context":"osvpi_account_call_int_permitted","Exten":"202","CallerIDName":"","content":""}, - {"Event":"NewCallerid","Channel":"Local/202@osvpi_account_call_int_permitted-0000005c;1","Uniqueid":"ua1-staging-1511945445.290","Privilege":"call,all","CallerIDName":"","CallerIDNum":"ID400641","content":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)"}, - {"Event":"LocalBridge","Channel1":"Local/202@osvpi_account_call_int_permitted-0000005c;1","Uniqueid1":"ua1-staging-1511945445.290","Channel2":"Local/202@osvpi_account_call_int_permitted-0000005c;2","Uniqueid2":"ua1-staging-1511945445.291","Privilege":"call,all","LocalOptimization":"Yes","Context":"osvpi_account_call_int_permitted","content":"","Exten":"202"}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/ID400641@osvpi_proc_connectab_ctd-00000059;1","UniqueID":"ua1-staging-1511945444.283","Privilege":"call,all","Dialstring":"202@osvpi_account_call_int_permitted","CallerIDNum":"203","DestUniqueID":"ua1-staging-1511945445.290","Destination":"Local/202@osvpi_account_call_int_permitted-0000005c;1","ConnectedLineNum":"","CallerIDName":"","ConnectedLineName":"","content":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/ID730661@osvpi_route_phoneaccount-0000005d;1","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1511945445.292","Privilege":"call,all","CallerIDNum":"","Context":"osvpi_route_phoneaccount","Exten":"ID730661","CallerIDName":"","content":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/ID730661@osvpi_route_phoneaccount-0000005d;2","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"ua1-staging-1511945445.293","Privilege":"call,all","CallerIDNum":"","Context":"osvpi_route_phoneaccount","Exten":"ID730661","CallerIDName":"","content":""}, - {"Event":"NewCallerid","Channel":"Local/ID730661@osvpi_route_phoneaccount-0000005d;1","Uniqueid":"ua1-staging-1511945445.292","Privilege":"call,all","CallerIDName":"","CallerIDNum":"202","content":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)"}, - {"Event":"LocalBridge","Channel1":"Local/ID730661@osvpi_route_phoneaccount-0000005d;1","Uniqueid1":"ua1-staging-1511945445.292","Channel2":"Local/ID730661@osvpi_route_phoneaccount-0000005d;2","Uniqueid2":"ua1-staging-1511945445.293","Privilege":"call,all","LocalOptimization":"Yes","Context":"osvpi_route_phoneaccount","content":"","Exten":"ID730661"}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/202@osvpi_account_call_int_permitted-0000005c;2","UniqueID":"ua1-staging-1511945445.291","Privilege":"call,all","Dialstring":"ID730661@osvpi_route_phoneaccount","CallerIDNum":"203","DestUniqueID":"ua1-staging-1511945445.292","Destination":"Local/ID730661@osvpi_route_phoneaccount-0000005d;1","ConnectedLineNum":"ID400641","CallerIDName":"","ConnectedLineName":"","content":""}, - {"Event":"UserEvent","UserEvent":"NotifyCallstate","AccountCode":"150010002","Uniqueid":"ua1-staging-1511945445.293","Privilege":"user,all","content":"","AccountInternalNumber":"202","WebhookUrls":"","Provider":"webhook"}, - {"Event":"Newchannel","AccountCode":"150010002","Channel":"SIP/150010002-0000006a","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1511945445.294","Privilege":"call,all","CallerIDNum":"","Context":"osvpi_account","Exten":"","CallerIDName":"","content":""}, - {"Event":"NewCallerid","Channel":"SIP/150010002-0000006a","Uniqueid":"ua1-staging-1511945445.294","Privilege":"call,all","CallerIDName":"","CallerIDNum":"202","content":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)"}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/ID730661@osvpi_route_phoneaccount-0000005d;2","UniqueID":"ua1-staging-1511945445.293","Privilege":"call,all","Dialstring":"150010002/150010002/195.35.114.93!!203","CallerIDNum":"203","DestUniqueID":"ua1-staging-1511945445.294","Destination":"SIP/150010002-0000006a","ConnectedLineNum":"202","CallerIDName":"","ConnectedLineName":"","content":""}, - {"Event":"Newstate","Channel":"SIP/150010002-0000006a","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua1-staging-1511945445.294","Privilege":"call,all","ConnectedLineNum":"203","CallerIDName":"","ConnectedLineName":"","content":"","CallerIDNum":"202"}, - {"Event":"Newstate","Channel":"Local/ID730661@osvpi_route_phoneaccount-0000005d;1","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua1-staging-1511945445.292","Privilege":"call,all","ConnectedLineNum":"203","CallerIDName":"","ConnectedLineName":"","content":"","CallerIDNum":"202"}, - {"Event":"Newstate","Channel":"Local/202@osvpi_account_call_int_permitted-0000005c;1","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua1-staging-1511945445.290","Privilege":"call,all","ConnectedLineNum":"203","CallerIDName":"","ConnectedLineName":"","content":"","CallerIDNum":"ID400641"}, - {"Event":"Newstate","Channel":"SIP/150010002-0000006a","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1511945445.294","Privilege":"call,all","ConnectedLineNum":"203","CallerIDName":"","ConnectedLineName":"","content":"","CallerIDNum":"202"}, - {"Event":"Newstate","Channel":"Local/ID730661@osvpi_route_phoneaccount-0000005d;2","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1511945445.293","Privilege":"call,all","ConnectedLineNum":"202","CallerIDName":"","ConnectedLineName":"","content":"","CallerIDNum":"203"}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"SIP/150010002-0000006a","Uniqueid":"ua1-staging-1511945445.294","Privilege":"call,all","OldAccountCode":"15001","content":""}, - {"Event":"Bridge","Channel1":"Local/ID730661@osvpi_route_phoneaccount-0000005d;2","Uniqueid1":"ua1-staging-1511945445.293","CallerID1":"203","Channel2":"SIP/150010002-0000006a","Uniqueid2":"ua1-staging-1511945445.294","CallerID2":"202","Privilege":"call,all","Bridgetype":"core","Bridgestate":"Link","content":""}, - {"Event":"Newstate","Channel":"Local/ID730661@osvpi_route_phoneaccount-0000005d;1","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1511945445.292","Privilege":"call,all","ConnectedLineNum":"203","CallerIDName":"","ConnectedLineName":"","content":"","CallerIDNum":"202"}, - {"Event":"Newstate","Channel":"Local/202@osvpi_account_call_int_permitted-0000005c;2","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1511945445.291","Privilege":"call,all","ConnectedLineNum":"ID400641","CallerIDName":"","ConnectedLineName":"","content":"","CallerIDNum":"203"}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/ID730661@osvpi_route_phoneaccount-0000005d;1","Uniqueid":"ua1-staging-1511945445.292","Privilege":"call,all","OldAccountCode":"15001","content":""}, - {"Event":"Bridge","Channel1":"Local/202@osvpi_account_call_int_permitted-0000005c;2","Uniqueid1":"ua1-staging-1511945445.291","CallerID1":"203","Channel2":"Local/ID730661@osvpi_route_phoneaccount-0000005d;1","Uniqueid2":"ua1-staging-1511945445.292","CallerID2":"202","Privilege":"call,all","Bridgetype":"core","Bridgestate":"Link","content":""}, - {"Event":"Newstate","Channel":"Local/202@osvpi_account_call_int_permitted-0000005c;1","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1511945445.290","Privilege":"call,all","ConnectedLineNum":"203","CallerIDName":"","ConnectedLineName":"","content":"","CallerIDNum":"ID400641"}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/202@osvpi_account_call_int_permitted-0000005c;1","Uniqueid":"ua1-staging-1511945445.290","Privilege":"call,all","OldAccountCode":"15001","content":""}, - {"Event":"Bridge","Channel1":"Local/ID400641@osvpi_proc_connectab_ctd-00000059;1","Uniqueid1":"ua1-staging-1511945444.283","CallerID1":"203","Channel2":"Local/202@osvpi_account_call_int_permitted-0000005c;1","Uniqueid2":"ua1-staging-1511945445.290","CallerID2":"ID400641","Privilege":"call,all","Bridgetype":"core","Bridgestate":"Link","content":""}, - {"Event":"Masquerade","Privilege":"call,all","Original":"Local/ID730661@osvpi_route_phoneaccount-0000005d;1","CloneState":"Up","Clone":"SIP/150010002-0000006a","OriginalState":"Up","content":""}, - {"Event":"Rename","Channel":"SIP/150010002-0000006a","Uniqueid":"ua1-staging-1511945445.294","Privilege":"call,all","content":"","Newname":"SIP/150010002-0000006a"}, - {"Event":"Rename","Channel":"Local/ID730661@osvpi_route_phoneaccount-0000005d;1","Uniqueid":"ua1-staging-1511945445.292","Privilege":"call,all","content":"","Newname":"SIP/150010002-0000006a"}, - {"Event":"Rename","Channel":"SIP/150010002-0000006a","Uniqueid":"ua1-staging-1511945445.294","Privilege":"call,all","content":"","Newname":"Local/ID730661@osvpi_route_phoneaccount-0000005d;1"}, - {"Event":"NewCallerid","Channel":"SIP/150010002-0000006a","Uniqueid":"ua1-staging-1511945445.292","Privilege":"call,all","CallerIDName":"","CallerIDNum":"202","content":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)"}, - {"Event":"Bridge","Channel1":"Local/ID730661@osvpi_route_phoneaccount-0000005d;2","Uniqueid1":"ua1-staging-1511945445.293","CallerID1":"203","Channel2":"Local/ID730661@osvpi_route_phoneaccount-0000005d;1","Uniqueid2":"ua1-staging-1511945445.294","CallerID2":"202","Privilege":"call,all","Bridgetype":"core","Bridgestate":"Unlink","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/ID730661@osvpi_route_phoneaccount-0000005d;1","Uniqueid":"ua1-staging-1511945445.294","Privilege":"call,all","CallerIDNum":"202","ConnectedLineNum":"203","Cause":"16","Cause-txt":"Normal Clearing","CallerIDName":"","ConnectedLineName":"","content":""}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/ID730661@osvpi_route_phoneaccount-0000005d;2","UniqueID":"ua1-staging-1511945445.293","Privilege":"call,all","content":"","DialStatus":"ANSWER"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/ID730661@osvpi_route_phoneaccount-0000005d;2","Uniqueid":"ua1-staging-1511945445.293","Privilege":"call,all","CallerIDNum":"203","ConnectedLineNum":"202","Cause":"16","Cause-txt":"Normal Clearing","CallerIDName":"","ConnectedLineName":"","content":""}, - {"Event":"Masquerade","Privilege":"call,all","Original":"Local/202@osvpi_account_call_int_permitted-0000005c;1","CloneState":"Up","Clone":"SIP/150010002-0000006a","OriginalState":"Up","content":""}, - {"Event":"Rename","Channel":"SIP/150010002-0000006a","Uniqueid":"ua1-staging-1511945445.292","Privilege":"call,all","content":"","Newname":"SIP/150010002-0000006a"}, - {"Event":"Rename","Channel":"Local/202@osvpi_account_call_int_permitted-0000005c;1","Uniqueid":"ua1-staging-1511945445.290","Privilege":"call,all","content":"","Newname":"SIP/150010002-0000006a"}, - {"Event":"Rename","Channel":"SIP/150010002-0000006a","Uniqueid":"ua1-staging-1511945445.292","Privilege":"call,all","content":"","Newname":"Local/202@osvpi_account_call_int_permitted-0000005c;1"}, - {"Event":"NewCallerid","Channel":"SIP/150010002-0000006a","Uniqueid":"ua1-staging-1511945445.290","Privilege":"call,all","CallerIDName":"","CallerIDNum":"ID400641","content":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)"}, - {"Event":"Bridge","Channel1":"Local/202@osvpi_account_call_int_permitted-0000005c;2","Uniqueid1":"ua1-staging-1511945445.291","CallerID1":"203","Channel2":"Local/202@osvpi_account_call_int_permitted-0000005c;1","Uniqueid2":"ua1-staging-1511945445.292","CallerID2":"202","Privilege":"call,all","Bridgetype":"core","Bridgestate":"Unlink","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/202@osvpi_account_call_int_permitted-0000005c;1","Uniqueid":"ua1-staging-1511945445.292","Privilege":"call,all","CallerIDNum":"202","ConnectedLineNum":"203","Cause":"16","Cause-txt":"Normal Clearing","CallerIDName":"","ConnectedLineName":"","content":""}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/202@osvpi_account_call_int_permitted-0000005c;2","UniqueID":"ua1-staging-1511945445.291","Privilege":"call,all","content":"","DialStatus":"ANSWER"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/202@osvpi_account_call_int_permitted-0000005c;2","Uniqueid":"ua1-staging-1511945445.291","Privilege":"call,all","CallerIDNum":"203","ConnectedLineNum":"ID400641","Cause":"16","Cause-txt":"Normal Clearing","CallerIDName":"","ConnectedLineName":"","content":""}, - {"Event":"Bridge","Channel1":"Local/ID400641@osvpi_proc_connectab_ctd-00000059;2","Uniqueid1":"ua1-staging-1511945444.284","CallerID1":"203","Channel2":"SIP/150010003-00000069","Uniqueid2":"ua1-staging-1511945444.285","CallerID2":"ID400641","Privilege":"call,all","Bridgetype":"core","Bridgestate":"Unlink","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"SIP/150010003-00000069","Uniqueid":"ua1-staging-1511945444.285","Privilege":"call,all","CallerIDNum":"ID400641","ConnectedLineNum":"203","Cause":"16","Cause-txt":"Normal Clearing","CallerIDName":"","ConnectedLineName":"Calling...","content":""}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/ID400641@osvpi_proc_connectab_ctd-00000059;2","UniqueID":"ua1-staging-1511945444.284","Privilege":"call,all","content":"","DialStatus":"ANSWER"}, - {"Event":"Bridge","Channel1":"Local/ID400641@osvpi_proc_connectab_ctd-00000059;1","Uniqueid1":"ua1-staging-1511945444.283","CallerID1":"203","Channel2":"SIP/150010002-0000006a","Uniqueid2":"ua1-staging-1511945445.290","CallerID2":"ID400641","Privilege":"call,all","Bridgetype":"core","Bridgestate":"Unlink","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"SIP/150010002-0000006a","Uniqueid":"ua1-staging-1511945445.290","Privilege":"call,all","CallerIDNum":"ID400641","ConnectedLineNum":"203","Cause":"16","Cause-txt":"Normal Clearing","CallerIDName":"","ConnectedLineName":"","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/ID400641@osvpi_proc_connectab_ctd-00000059;2","Uniqueid":"ua1-staging-1511945444.284","Privilege":"call,all","CallerIDNum":"203","ConnectedLineNum":"","Cause":"16","Cause-txt":"Normal Clearing","CallerIDName":"Calling...","ConnectedLineName":"","content":""}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/ID400641@osvpi_proc_connectab_ctd-00000059;1","UniqueID":"ua1-staging-1511945444.283","Privilege":"call,all","content":"","DialStatus":"ANSWER"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/ID400641@osvpi_proc_connectab_ctd-00000059;1","Uniqueid":"ua1-staging-1511945444.283","Privilege":"call,all","CallerIDNum":"203","ConnectedLineNum":"","Cause":"16","Cause-txt":"Normal Clearing","CallerIDName":"","ConnectedLineName":"","content":""}] diff --git a/tests/fixtures/connectab/ctd-account-world-deny_a.json b/tests/fixtures/connectab/ctd-account-world-deny_a.json deleted file mode 100644 index 49059f6..0000000 --- a/tests/fixtures/connectab/ctd-account-world-deny_a.json +++ /dev/null @@ -1,38 +0,0 @@ -[{"Event":"FullyBooted","Privilege":"system,all","content":"","Status":"Fully Booted"}, - {"Event":"FullyBooted","Privilege":"system,all","content":"","Status":"Fully Booted"}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/ID400691@osvpi_proc_connectab_ctd-000000e4;1","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1512029504.791","Privilege":"call,all","CallerIDName":"","content":"","Context":"osvpi_proc_connectab_ctd","CallerIDNum":"","Exten":"ID400691"}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/ID400691@osvpi_proc_connectab_ctd-000000e4;2","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"ua1-staging-1512029504.792","Privilege":"call,all","CallerIDName":"","content":"","Context":"osvpi_proc_connectab_ctd","CallerIDNum":"","Exten":"ID400691"}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/ID400691@osvpi_proc_connectab_ctd-000000e4;1","Uniqueid":"ua1-staging-1512029504.791","Privilege":"call,all","content":""}, - {"Event":"NewCallerid","Channel":"Local/ID400691@osvpi_proc_connectab_ctd-000000e4;1","Uniqueid":"ua1-staging-1512029504.791","Privilege":"call,all","content":"","CallerIDName":"","CID-CallingPres":"67 (Number Unavailable)","CallerIDNum":""}, - {"Event":"LocalBridge","Channel1":"Local/ID400691@osvpi_proc_connectab_ctd-000000e4;1","Uniqueid1":"ua1-staging-1512029504.791","Channel2":"Local/ID400691@osvpi_proc_connectab_ctd-000000e4;2","Uniqueid2":"ua1-staging-1512029504.792","Privilege":"call,all","LocalOptimization":"No","content":"","Context":"osvpi_proc_connectab_ctd","Exten":"ID400691"}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/ID400691@osvpi_proc_connectab_ctd-000000e4;2","Uniqueid":"ua1-staging-1512029504.792","Privilege":"call,all","content":"","OldAccountCode":"15001"}, - {"Event":"NewCallerid","Channel":"Local/ID400691@osvpi_proc_connectab_ctd-000000e4;2","Uniqueid":"ua1-staging-1512029504.792","Privilege":"call,all","content":"","CallerIDName":"Calling...","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDNum":""}, - {"Event":"NewCallerid","Channel":"Local/ID400691@osvpi_proc_connectab_ctd-000000e4;2","Uniqueid":"ua1-staging-1512029504.792","Privilege":"call,all","content":"","CallerIDName":"Calling...","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDNum":"203"}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/203@osvpi_account_call_int_permitted-000000e5;1","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1512029504.793","Privilege":"call,all","CallerIDName":"","content":"","Context":"osvpi_account_call_int_permitted","CallerIDNum":"","Exten":"203"}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/203@osvpi_account_call_int_permitted-000000e5;2","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"ua1-staging-1512029504.794","Privilege":"call,all","CallerIDName":"","content":"","Context":"osvpi_account_call_int_permitted","CallerIDNum":"","Exten":"203"}, - {"Event":"NewCallerid","Channel":"Local/203@osvpi_account_call_int_permitted-000000e5;1","Uniqueid":"ua1-staging-1512029504.793","Privilege":"call,all","content":"","CallerIDName":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDNum":"ID400691"}, - {"Event":"LocalBridge","Channel1":"Local/203@osvpi_account_call_int_permitted-000000e5;1","Uniqueid1":"ua1-staging-1512029504.793","Channel2":"Local/203@osvpi_account_call_int_permitted-000000e5;2","Uniqueid2":"ua1-staging-1512029504.794","Privilege":"call,all","LocalOptimization":"Yes","content":"","Context":"osvpi_account_call_int_permitted","Exten":"203"}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/ID400691@osvpi_proc_connectab_ctd-000000e4;2","UniqueID":"ua1-staging-1512029504.792","Privilege":"call,all","CallerIDName":"Calling...","ConnectedLineName":"","content":"","CallerIDNum":"203","DestUniqueID":"ua1-staging-1512029504.793","Destination":"Local/203@osvpi_account_call_int_permitted-000000e5;1","Dialstring":"203@osvpi_account_call_int_permitted","ConnectedLineNum":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/ID730671@osvpi_route_phoneaccount-000000e6;1","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1512029504.795","Privilege":"call,all","CallerIDName":"","content":"","Context":"osvpi_route_phoneaccount","CallerIDNum":"","Exten":"ID730671"}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/ID730671@osvpi_route_phoneaccount-000000e6;2","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"ua1-staging-1512029504.796","Privilege":"call,all","CallerIDName":"","content":"","Context":"osvpi_route_phoneaccount","CallerIDNum":"","Exten":"ID730671"}, - {"Event":"NewCallerid","Channel":"Local/ID730671@osvpi_route_phoneaccount-000000e6;1","Uniqueid":"ua1-staging-1512029504.795","Privilege":"call,all","content":"","CallerIDName":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDNum":"203"}, - {"Event":"LocalBridge","Channel1":"Local/ID730671@osvpi_route_phoneaccount-000000e6;1","Uniqueid1":"ua1-staging-1512029504.795","Channel2":"Local/ID730671@osvpi_route_phoneaccount-000000e6;2","Uniqueid2":"ua1-staging-1512029504.796","Privilege":"call,all","LocalOptimization":"Yes","content":"","Context":"osvpi_route_phoneaccount","Exten":"ID730671"}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/203@osvpi_account_call_int_permitted-000000e5;2","UniqueID":"ua1-staging-1512029504.794","Privilege":"call,all","CallerIDName":"Calling...","ConnectedLineName":"","content":"","CallerIDNum":"203","DestUniqueID":"ua1-staging-1512029504.795","Destination":"Local/ID730671@osvpi_route_phoneaccount-000000e6;1","Dialstring":"ID730671@osvpi_route_phoneaccount","ConnectedLineNum":"ID400691"}, - {"Event":"UserEvent","UserEvent":"NotifyCallstate","AccountCode":"150010003","Uniqueid":"ua1-staging-1512029504.796","Privilege":"user,all","Provider":"webhook","WebhookUrls":"","content":"","AccountInternalNumber":"203"}, - {"Event":"Newchannel","AccountCode":"150010003","Channel":"SIP/150010003-0000014f","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1512029504.797","Privilege":"call,all","CallerIDName":"","content":"","Context":"osvpi_account","CallerIDNum":"","Exten":""}, - {"Event":"NewCallerid","Channel":"SIP/150010003-0000014f","Uniqueid":"ua1-staging-1512029504.797","Privilege":"call,all","content":"","CallerIDName":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDNum":"203"}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/ID730671@osvpi_route_phoneaccount-000000e6;2","UniqueID":"ua1-staging-1512029504.796","Privilege":"call,all","CallerIDName":"Calling...","ConnectedLineName":"","content":"","CallerIDNum":"203","DestUniqueID":"ua1-staging-1512029504.797","Destination":"SIP/150010003-0000014f","Dialstring":"150010003/150010003/195.35.114.93!!203","ConnectedLineNum":"203"}, - {"Event":"Newstate","Channel":"SIP/150010003-0000014f","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua1-staging-1512029504.797","Privilege":"call,all","CallerIDNum":"203","CallerIDName":"","ConnectedLineNum":"203","content":"","ConnectedLineName":"Calling..."}, - {"Event":"Newstate","Channel":"Local/ID730671@osvpi_route_phoneaccount-000000e6;1","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua1-staging-1512029504.795","Privilege":"call,all","CallerIDNum":"203","CallerIDName":"","ConnectedLineNum":"203","content":"","ConnectedLineName":"Calling..."}, - {"Event":"Newstate","Channel":"Local/203@osvpi_account_call_int_permitted-000000e5;1","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua1-staging-1512029504.793","Privilege":"call,all","CallerIDNum":"ID400691","CallerIDName":"","ConnectedLineNum":"203","content":"","ConnectedLineName":"Calling..."}, - {"Event":"Newstate","Channel":"Local/ID400691@osvpi_proc_connectab_ctd-000000e4;1","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua1-staging-1512029504.791","Privilege":"call,all","CallerIDNum":"","CallerIDName":"","ConnectedLineNum":"","content":"","ConnectedLineName":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"SIP/150010003-0000014f","Uniqueid":"ua1-staging-1512029504.797","Privilege":"call,all","Cause-txt":"User busy","CallerIDName":"","ConnectedLineName":"Calling...","content":"","CallerIDNum":"203","Cause":"17","ConnectedLineNum":"203"}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/ID730671@osvpi_route_phoneaccount-000000e6;2","UniqueID":"ua1-staging-1512029504.796","Privilege":"call,all","content":"","DialStatus":"BUSY"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/ID730671@osvpi_route_phoneaccount-000000e6;2","Uniqueid":"ua1-staging-1512029504.796","Privilege":"call,all","Cause-txt":"User busy","CallerIDName":"Calling...","ConnectedLineName":"","content":"","CallerIDNum":"203","Cause":"17","ConnectedLineNum":"203"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/ID730671@osvpi_route_phoneaccount-000000e6;1","Uniqueid":"ua1-staging-1512029504.795","Privilege":"call,all","Cause-txt":"User busy","CallerIDName":"","ConnectedLineName":"Calling...","content":"","CallerIDNum":"203","Cause":"17","ConnectedLineNum":"203"}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/203@osvpi_account_call_int_permitted-000000e5;2","UniqueID":"ua1-staging-1512029504.794","Privilege":"call,all","content":"","DialStatus":"BUSY"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/203@osvpi_account_call_int_permitted-000000e5;2","Uniqueid":"ua1-staging-1512029504.794","Privilege":"call,all","Cause-txt":"User busy","CallerIDName":"Calling...","ConnectedLineName":"","content":"","CallerIDNum":"203","Cause":"17","ConnectedLineNum":"ID400691"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/203@osvpi_account_call_int_permitted-000000e5;1","Uniqueid":"ua1-staging-1512029504.793","Privilege":"call,all","Cause-txt":"User busy","CallerIDName":"","ConnectedLineName":"Calling...","content":"","CallerIDNum":"ID400691","Cause":"17","ConnectedLineNum":"203"}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/ID400691@osvpi_proc_connectab_ctd-000000e4;2","UniqueID":"ua1-staging-1512029504.792","Privilege":"call,all","content":"","DialStatus":"BUSY"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/ID400691@osvpi_proc_connectab_ctd-000000e4;2","Uniqueid":"ua1-staging-1512029504.792","Privilege":"call,all","Cause-txt":"User busy","CallerIDName":"Calling...","ConnectedLineName":"","content":"","CallerIDNum":"203","Cause":"17","ConnectedLineNum":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/ID400691@osvpi_proc_connectab_ctd-000000e4;1","Uniqueid":"ua1-staging-1512029504.791","Privilege":"call,all","Cause-txt":"User busy","CallerIDName":"","ConnectedLineName":"","content":"","CallerIDNum":"","Cause":"17","ConnectedLineNum":""}] diff --git a/tests/fixtures/connectab/ctd-account-world-deny_b.json b/tests/fixtures/connectab/ctd-account-world-deny_b.json deleted file mode 100644 index 217680a..0000000 --- a/tests/fixtures/connectab/ctd-account-world-deny_b.json +++ /dev/null @@ -1,90 +0,0 @@ -[ - {"Event":"FullyBooted","Privilege":"system,all","Status":"Fully Booted","content":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/ID400711@osvpi_proc_connectab_ctd-000000f5;1","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1512032862.846","Privilege":"call,all","Context":"osvpi_proc_connectab_ctd","content":"","Exten":"ID400711","CallerIDName":"","CallerIDNum":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/ID400711@osvpi_proc_connectab_ctd-000000f5;2","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"ua1-staging-1512032862.847","Privilege":"call,all","Context":"osvpi_proc_connectab_ctd","content":"","Exten":"ID400711","CallerIDName":"","CallerIDNum":""}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/ID400711@osvpi_proc_connectab_ctd-000000f5;1","Uniqueid":"ua1-staging-1512032862.846","Privilege":"call,all","content":""}, - {"Event":"NewCallerid","Channel":"Local/ID400711@osvpi_proc_connectab_ctd-000000f5;1","Uniqueid":"ua1-staging-1512032862.846","Privilege":"call,all","CID-CallingPres":"67 (Number Unavailable)","content":"","CallerIDNum":"","CallerIDName":""}, - {"Event":"LocalBridge","Channel1":"Local/ID400711@osvpi_proc_connectab_ctd-000000f5;1","Uniqueid1":"ua1-staging-1512032862.846","Channel2":"Local/ID400711@osvpi_proc_connectab_ctd-000000f5;2","Uniqueid2":"ua1-staging-1512032862.847","Privilege":"call,all","Context":"osvpi_proc_connectab_ctd","content":"","Exten":"ID400711","LocalOptimization":"No"}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/ID400711@osvpi_proc_connectab_ctd-000000f5;2","Uniqueid":"ua1-staging-1512032862.847","Privilege":"call,all","content":"","OldAccountCode":"15001"}, - {"Event":"NewCallerid","Channel":"Local/ID400711@osvpi_proc_connectab_ctd-000000f5;2","Uniqueid":"ua1-staging-1512032862.847","Privilege":"call,all","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":"","CallerIDNum":"","CallerIDName":"Calling..."}, - {"Event":"NewCallerid","Channel":"Local/ID400711@osvpi_proc_connectab_ctd-000000f5;2","Uniqueid":"ua1-staging-1512032862.847","Privilege":"call,all","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":"","CallerIDNum":"203","CallerIDName":"Calling..."}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/203@osvpi_account_call_int_permitted-000000f6;1","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1512032862.848","Privilege":"call,all","Context":"osvpi_account_call_int_permitted","content":"","Exten":"203","CallerIDName":"","CallerIDNum":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/203@osvpi_account_call_int_permitted-000000f6;2","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"ua1-staging-1512032862.849","Privilege":"call,all","Context":"osvpi_account_call_int_permitted","content":"","Exten":"203","CallerIDName":"","CallerIDNum":""}, - {"Event":"NewCallerid","Channel":"Local/203@osvpi_account_call_int_permitted-000000f6;1","Uniqueid":"ua1-staging-1512032862.848","Privilege":"call,all","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":"","CallerIDNum":"ID400711","CallerIDName":""}, - {"Event":"LocalBridge","Channel1":"Local/203@osvpi_account_call_int_permitted-000000f6;1","Uniqueid1":"ua1-staging-1512032862.848","Channel2":"Local/203@osvpi_account_call_int_permitted-000000f6;2","Uniqueid2":"ua1-staging-1512032862.849","Privilege":"call,all","Context":"osvpi_account_call_int_permitted","content":"","Exten":"203","LocalOptimization":"Yes"}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/ID400711@osvpi_proc_connectab_ctd-000000f5;2","UniqueID":"ua1-staging-1512032862.847","Privilege":"call,all","ConnectedLineNum":"","content":"","Destination":"Local/203@osvpi_account_call_int_permitted-000000f6;1","CallerIDName":"Calling...","DestUniqueID":"ua1-staging-1512032862.848","Dialstring":"203@osvpi_account_call_int_permitted","ConnectedLineName":"","CallerIDNum":"203"}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/ID730671@osvpi_route_phoneaccount-000000f7;1","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1512032862.850","Privilege":"call,all","Context":"osvpi_route_phoneaccount","content":"","Exten":"ID730671","CallerIDName":"","CallerIDNum":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/ID730671@osvpi_route_phoneaccount-000000f7;2","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"ua1-staging-1512032862.851","Privilege":"call,all","Context":"osvpi_route_phoneaccount","content":"","Exten":"ID730671","CallerIDName":"","CallerIDNum":""}, - {"Event":"NewCallerid","Channel":"Local/ID730671@osvpi_route_phoneaccount-000000f7;1","Uniqueid":"ua1-staging-1512032862.850","Privilege":"call,all","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":"","CallerIDNum":"203","CallerIDName":""}, - {"Event":"LocalBridge","Channel1":"Local/ID730671@osvpi_route_phoneaccount-000000f7;1","Uniqueid1":"ua1-staging-1512032862.850","Channel2":"Local/ID730671@osvpi_route_phoneaccount-000000f7;2","Uniqueid2":"ua1-staging-1512032862.851","Privilege":"call,all","Context":"osvpi_route_phoneaccount","content":"","Exten":"ID730671","LocalOptimization":"Yes"}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/203@osvpi_account_call_int_permitted-000000f6;2","UniqueID":"ua1-staging-1512032862.849","Privilege":"call,all","ConnectedLineNum":"ID400711","content":"","Destination":"Local/ID730671@osvpi_route_phoneaccount-000000f7;1","CallerIDName":"Calling...","DestUniqueID":"ua1-staging-1512032862.850","Dialstring":"ID730671@osvpi_route_phoneaccount","ConnectedLineName":"","CallerIDNum":"203"}, - {"Event":"UserEvent","UserEvent":"NotifyCallstate","AccountCode":"150010003","Uniqueid":"ua1-staging-1512032862.851","Privilege":"user,all","content":"","AccountInternalNumber":"203","Provider":"webhook","WebhookUrls":""}, - {"Event":"Newchannel","AccountCode":"150010003","Channel":"SIP/150010003-00000164","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1512032863.852","Privilege":"call,all","Context":"osvpi_account","content":"","Exten":"","CallerIDName":"","CallerIDNum":""}, - {"Event":"NewCallerid","Channel":"SIP/150010003-00000164","Uniqueid":"ua1-staging-1512032863.852","Privilege":"call,all","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":"","CallerIDNum":"203","CallerIDName":""}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/ID730671@osvpi_route_phoneaccount-000000f7;2","UniqueID":"ua1-staging-1512032862.851","Privilege":"call,all","ConnectedLineNum":"203","content":"","Destination":"SIP/150010003-00000164","CallerIDName":"Calling...","DestUniqueID":"ua1-staging-1512032863.852","Dialstring":"150010003/150010003/195.35.114.93!!203","ConnectedLineName":"","CallerIDNum":"203"}, - {"Event":"Newstate","Channel":"SIP/150010003-00000164","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua1-staging-1512032863.852","Privilege":"call,all","ConnectedLineNum":"203","content":"","ConnectedLineName":"Calling...","CallerIDName":"","CallerIDNum":"203"}, - {"Event":"Newstate","Channel":"Local/ID730671@osvpi_route_phoneaccount-000000f7;1","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua1-staging-1512032862.850","Privilege":"call,all","ConnectedLineNum":"203","content":"","ConnectedLineName":"Calling...","CallerIDName":"","CallerIDNum":"203"}, - {"Event":"Newstate","Channel":"Local/203@osvpi_account_call_int_permitted-000000f6;1","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua1-staging-1512032862.848","Privilege":"call,all","ConnectedLineNum":"203","content":"","ConnectedLineName":"Calling...","CallerIDName":"","CallerIDNum":"ID400711"}, - {"Event":"Newstate","Channel":"Local/ID400711@osvpi_proc_connectab_ctd-000000f5;1","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua1-staging-1512032862.846","Privilege":"call,all","ConnectedLineNum":"","content":"","ConnectedLineName":"","CallerIDName":"","CallerIDNum":""}, - {"Event":"Newstate","Channel":"SIP/150010003-00000164","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512032863.852","Privilege":"call,all","ConnectedLineNum":"203","content":"","ConnectedLineName":"Calling...","CallerIDName":"","CallerIDNum":"203"}, - {"Event":"Newstate","Channel":"Local/ID730671@osvpi_route_phoneaccount-000000f7;2","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512032862.851","Privilege":"call,all","ConnectedLineNum":"203","content":"","ConnectedLineName":"","CallerIDName":"Calling...","CallerIDNum":"203"}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"SIP/150010003-00000164","Uniqueid":"ua1-staging-1512032863.852","Privilege":"call,all","content":"","OldAccountCode":"15001"}, - {"Event":"Bridge","Channel1":"Local/ID730671@osvpi_route_phoneaccount-000000f7;2","Uniqueid1":"ua1-staging-1512032862.851","CallerID1":"203","Channel2":"SIP/150010003-00000164","Uniqueid2":"ua1-staging-1512032863.852","CallerID2":"203","Privilege":"call,all","content":"","Bridgetype":"core","Bridgestate":"Link"}, - {"Event":"Newstate","Channel":"Local/ID730671@osvpi_route_phoneaccount-000000f7;1","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512032862.850","Privilege":"call,all","ConnectedLineNum":"203","content":"","ConnectedLineName":"Calling...","CallerIDName":"","CallerIDNum":"203"}, - {"Event":"Newstate","Channel":"Local/203@osvpi_account_call_int_permitted-000000f6;2","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512032862.849","Privilege":"call,all","ConnectedLineNum":"ID400711","content":"","ConnectedLineName":"","CallerIDName":"Calling...","CallerIDNum":"203"}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/ID730671@osvpi_route_phoneaccount-000000f7;1","Uniqueid":"ua1-staging-1512032862.850","Privilege":"call,all","content":"","OldAccountCode":"15001"}, - {"Event":"Bridge","Channel1":"Local/203@osvpi_account_call_int_permitted-000000f6;2","Uniqueid1":"ua1-staging-1512032862.849","CallerID1":"203","Channel2":"Local/ID730671@osvpi_route_phoneaccount-000000f7;1","Uniqueid2":"ua1-staging-1512032862.850","CallerID2":"203","Privilege":"call,all","content":"","Bridgetype":"core","Bridgestate":"Link"}, - {"Event":"Newstate","Channel":"Local/203@osvpi_account_call_int_permitted-000000f6;1","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512032862.848","Privilege":"call,all","ConnectedLineNum":"203","content":"","ConnectedLineName":"Calling...","CallerIDName":"","CallerIDNum":"ID400711"}, - {"Event":"Newstate","Channel":"Local/ID400711@osvpi_proc_connectab_ctd-000000f5;2","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512032862.847","Privilege":"call,all","ConnectedLineNum":"","content":"","ConnectedLineName":"","CallerIDName":"Calling...","CallerIDNum":"203"}, - {"Event":"Newstate","Channel":"Local/ID400711@osvpi_proc_connectab_ctd-000000f5;1","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512032862.846","Privilege":"call,all","ConnectedLineNum":"","content":"","ConnectedLineName":"","CallerIDName":"","CallerIDNum":""}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/203@osvpi_account_call_int_permitted-000000f6;1","Uniqueid":"ua1-staging-1512032862.848","Privilege":"call,all","content":"","OldAccountCode":"15001"}, - {"Event":"Bridge","Channel1":"Local/ID400711@osvpi_proc_connectab_ctd-000000f5;2","Uniqueid1":"ua1-staging-1512032862.847","CallerID1":"203","Channel2":"Local/203@osvpi_account_call_int_permitted-000000f6;1","Uniqueid2":"ua1-staging-1512032862.848","CallerID2":"ID400711","Privilege":"call,all","content":"","Bridgetype":"core","Bridgestate":"Link"}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/ID400711@osvpi_proc_connectab_ctd-000000f5;1","Uniqueid":"ua1-staging-1512032862.846","Privilege":"call,all","content":"","OldAccountCode":"15001"}, - {"Event":"Masquerade","Privilege":"call,all","Original":"Local/ID730671@osvpi_route_phoneaccount-000000f7;1","content":"","Clone":"SIP/150010003-00000164","CloneState":"Up","OriginalState":"Up"}, - {"Event":"Rename","Channel":"SIP/150010003-00000164","Uniqueid":"ua1-staging-1512032863.852","Privilege":"call,all","content":"","Newname":"SIP/150010003-00000164"}, - {"Event":"Rename","Channel":"Local/ID730671@osvpi_route_phoneaccount-000000f7;1","Uniqueid":"ua1-staging-1512032862.850","Privilege":"call,all","content":"","Newname":"SIP/150010003-00000164"}, - {"Event":"Rename","Channel":"SIP/150010003-00000164","Uniqueid":"ua1-staging-1512032863.852","Privilege":"call,all","content":"","Newname":"Local/ID730671@osvpi_route_phoneaccount-000000f7;1"}, - {"Event":"NewCallerid","Channel":"SIP/150010003-00000164","Uniqueid":"ua1-staging-1512032862.850","Privilege":"call,all","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":"","CallerIDNum":"203","CallerIDName":""}, - {"Event":"Bridge","Channel1":"Local/ID730671@osvpi_route_phoneaccount-000000f7;2","Uniqueid1":"ua1-staging-1512032862.851","CallerID1":"203","Channel2":"Local/ID730671@osvpi_route_phoneaccount-000000f7;1","Uniqueid2":"ua1-staging-1512032863.852","CallerID2":"203","Privilege":"call,all","content":"","Bridgetype":"core","Bridgestate":"Unlink"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/ID730671@osvpi_route_phoneaccount-000000f7;1","Uniqueid":"ua1-staging-1512032863.852","Privilege":"call,all","ConnectedLineNum":"203","Cause-txt":"Normal Clearing","content":"","CallerIDName":"","Cause":"16","ConnectedLineName":"Calling...","CallerIDNum":"203"}, - {"Event":"Masquerade","Privilege":"call,all","Original":"Local/203@osvpi_account_call_int_permitted-000000f6;1","content":"","Clone":"SIP/150010003-00000164","CloneState":"Up","OriginalState":"Up"}, - {"Event":"Rename","Channel":"SIP/150010003-00000164","Uniqueid":"ua1-staging-1512032862.850","Privilege":"call,all","content":"","Newname":"SIP/150010003-00000164"}, - {"Event":"Rename","Channel":"Local/203@osvpi_account_call_int_permitted-000000f6;1","Uniqueid":"ua1-staging-1512032862.848","Privilege":"call,all","content":"","Newname":"SIP/150010003-00000164"}, - {"Event":"Rename","Channel":"SIP/150010003-00000164","Uniqueid":"ua1-staging-1512032862.850","Privilege":"call,all","content":"","Newname":"Local/203@osvpi_account_call_int_permitted-000000f6;1"}, - {"Event":"NewCallerid","Channel":"SIP/150010003-00000164","Uniqueid":"ua1-staging-1512032862.848","Privilege":"call,all","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":"","CallerIDNum":"ID400711","CallerIDName":""}, - {"Event":"Bridge","Channel1":"Local/203@osvpi_account_call_int_permitted-000000f6;2","Uniqueid1":"ua1-staging-1512032862.849","CallerID1":"203","Channel2":"Local/203@osvpi_account_call_int_permitted-000000f6;1","Uniqueid2":"ua1-staging-1512032862.850","CallerID2":"203","Privilege":"call,all","content":"","Bridgetype":"core","Bridgestate":"Unlink"}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/ID730671@osvpi_route_phoneaccount-000000f7;2","UniqueID":"ua1-staging-1512032862.851","Privilege":"call,all","content":"","DialStatus":"ANSWER"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/ID730671@osvpi_route_phoneaccount-000000f7;2","Uniqueid":"ua1-staging-1512032862.851","Privilege":"call,all","ConnectedLineNum":"203","Cause-txt":"Normal Clearing","content":"","CallerIDName":"Calling...","Cause":"16","ConnectedLineName":"","CallerIDNum":"203"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/203@osvpi_account_call_int_permitted-000000f6;1","Uniqueid":"ua1-staging-1512032862.850","Privilege":"call,all","ConnectedLineNum":"203","Cause-txt":"Normal Clearing","content":"","CallerIDName":"","Cause":"16","ConnectedLineName":"Calling...","CallerIDNum":"203"}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/203@osvpi_account_call_int_permitted-000000f6;2","UniqueID":"ua1-staging-1512032862.849","Privilege":"call,all","content":"","DialStatus":"ANSWER"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/203@osvpi_account_call_int_permitted-000000f6;2","Uniqueid":"ua1-staging-1512032862.849","Privilege":"call,all","ConnectedLineNum":"ID400711","Cause-txt":"Normal Clearing","content":"","CallerIDName":"Calling...","Cause":"16","ConnectedLineName":"","CallerIDNum":"203"}, - {"Event":"NewCallerid","Channel":"Local/ID400711@osvpi_proc_connectab_ctd-000000f5;1","Uniqueid":"ua1-staging-1512032862.846","Privilege":"call,all","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":"","CallerIDNum":"+31150010001","CallerIDName":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-000000f8;1","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1512032865.853","Privilege":"call,all","Context":"osvpi_world_call_permittedplus","content":"","Exten":"+31613925xxx","CallerIDName":"","CallerIDNum":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-000000f8;2","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"ua1-staging-1512032865.854","Privilege":"call,all","Context":"osvpi_world_call_permittedplus","content":"","Exten":"+31613925xxx","CallerIDName":"","CallerIDNum":""}, - {"Event":"NewCallerid","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-000000f8;1","Uniqueid":"ua1-staging-1512032865.853","Privilege":"call,all","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":"","CallerIDNum":"ID400711","CallerIDName":""}, - {"Event":"LocalBridge","Channel1":"Local/+31613925xxx@osvpi_world_call_permittedplus-000000f8;1","Uniqueid1":"ua1-staging-1512032865.853","Channel2":"Local/+31613925xxx@osvpi_world_call_permittedplus-000000f8;2","Uniqueid2":"ua1-staging-1512032865.854","Privilege":"call,all","Context":"osvpi_world_call_permittedplus","content":"","Exten":"+31613925xxx","LocalOptimization":"Yes"}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/ID400711@osvpi_proc_connectab_ctd-000000f5;1","UniqueID":"ua1-staging-1512032862.846","Privilege":"call,all","ConnectedLineNum":"","content":"","Destination":"Local/+31613925xxx@osvpi_world_call_permittedplus-000000f8;1","CallerIDName":"","DestUniqueID":"ua1-staging-1512032865.853","Dialstring":"+31613925xxx@osvpi_world_call_permittedplus","ConnectedLineName":"","CallerIDNum":"+31150010001"}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/+31613925xxx@world_out-000000f9;1","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1512032865.855","Privilege":"call,all","Context":"world_out","content":"","Exten":"+31613925xxx","CallerIDName":"","CallerIDNum":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/+31613925xxx@world_out-000000f9;2","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"ua1-staging-1512032865.856","Privilege":"call,all","Context":"world_out","content":"","Exten":"+31613925xxx","CallerIDName":"","CallerIDNum":""}, - {"Event":"NewCallerid","Channel":"Local/+31613925xxx@world_out-000000f9;1","Uniqueid":"ua1-staging-1512032865.855","Privilege":"call,all","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":"","CallerIDNum":"+31613925xxx","CallerIDName":""}, - {"Event":"LocalBridge","Channel1":"Local/+31613925xxx@world_out-000000f9;1","Uniqueid1":"ua1-staging-1512032865.855","Channel2":"Local/+31613925xxx@world_out-000000f9;2","Uniqueid2":"ua1-staging-1512032865.856","Privilege":"call,all","Context":"world_out","content":"","Exten":"+31613925xxx","LocalOptimization":"Yes"}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-000000f8;2","UniqueID":"ua1-staging-1512032865.854","Privilege":"call,all","ConnectedLineNum":"ID400711","content":"","Destination":"Local/+31613925xxx@world_out-000000f9;1","CallerIDName":"","DestUniqueID":"ua1-staging-1512032865.855","Dialstring":"+31613925xxx@world_out","ConnectedLineName":"","CallerIDNum":"+31150010001"}, - {"Event":"Newchannel","AccountCode":"","Channel":"SIP/voipgrid-siproute-staging-00000165","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1512032865.857","Privilege":"call,all","Context":"voipgrid_in","content":"","Exten":"","CallerIDName":"","CallerIDNum":""}, - {"Event":"NewCallerid","Channel":"SIP/voipgrid-siproute-staging-00000165","Uniqueid":"ua1-staging-1512032865.857","Privilege":"call,all","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":"","CallerIDNum":"+31613925xxx","CallerIDName":""}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/+31613925xxx@world_out-000000f9;2","UniqueID":"ua1-staging-1512032865.856","Privilege":"call,all","ConnectedLineNum":"+31613925xxx","content":"","Destination":"SIP/voipgrid-siproute-staging-00000165","CallerIDName":"","DestUniqueID":"ua1-staging-1512032865.857","Dialstring":"+31613925xxx@voipgrid-siproute-staging","ConnectedLineName":"","CallerIDNum":"+31150010001"}, - {"Event":"Newstate","Channel":"SIP/voipgrid-siproute-staging-00000165","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua1-staging-1512032865.857","Privilege":"call,all","ConnectedLineNum":"+31150010001","content":"","ConnectedLineName":"","CallerIDName":"","CallerIDNum":"+31613925xxx"}, - {"Event":"Newstate","Channel":"Local/+31613925xxx@world_out-000000f9;1","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua1-staging-1512032865.855","Privilege":"call,all","ConnectedLineNum":"+31150010001","content":"","ConnectedLineName":"","CallerIDName":"","CallerIDNum":"+31613925xxx"}, - {"Event":"Newstate","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-000000f8;1","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua1-staging-1512032865.853","Privilege":"call,all","ConnectedLineNum":"+31150010001","content":"","ConnectedLineName":"","CallerIDName":"","CallerIDNum":"ID400711"}, - {"Event":"Bridge","Channel1":"Local/ID400711@osvpi_proc_connectab_ctd-000000f5;2","Uniqueid1":"ua1-staging-1512032862.847","CallerID1":"203","Channel2":"SIP/150010003-00000164","Uniqueid2":"ua1-staging-1512032862.848","CallerID2":"ID400711","Privilege":"call,all","content":"","Bridgetype":"core","Bridgestate":"Unlink"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"SIP/150010003-00000164","Uniqueid":"ua1-staging-1512032862.848","Privilege":"call,all","ConnectedLineNum":"203","Cause-txt":"Normal Clearing","content":"","CallerIDName":"","Cause":"16","ConnectedLineName":"Calling...","CallerIDNum":"ID400711"}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/ID400711@osvpi_proc_connectab_ctd-000000f5;2","UniqueID":"ua1-staging-1512032862.847","Privilege":"call,all","content":"","DialStatus":"ANSWER"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/ID400711@osvpi_proc_connectab_ctd-000000f5;2","Uniqueid":"ua1-staging-1512032862.847","Privilege":"call,all","ConnectedLineNum":"","Cause-txt":"Normal Clearing","content":"","CallerIDName":"Calling...","Cause":"16","ConnectedLineName":"","CallerIDNum":"203"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-000000f8;1","Uniqueid":"ua1-staging-1512032865.853","Privilege":"call,all","ConnectedLineNum":"+31150010001","Cause-txt":"Unknown","content":"","CallerIDName":"","Cause":"0","ConnectedLineName":"","CallerIDNum":"ID400711"}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/ID400711@osvpi_proc_connectab_ctd-000000f5;1","UniqueID":"ua1-staging-1512032862.846","Privilege":"call,all","content":"","DialStatus":"CANCEL"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/ID400711@osvpi_proc_connectab_ctd-000000f5;1","Uniqueid":"ua1-staging-1512032862.846","Privilege":"call,all","ConnectedLineNum":"","Cause-txt":"Normal Clearing","content":"","CallerIDName":"","Cause":"16","ConnectedLineName":"","CallerIDNum":"+31150010001"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/+31613925xxx@world_out-000000f9;1","Uniqueid":"ua1-staging-1512032865.855","Privilege":"call,all","ConnectedLineNum":"+31150010001","Cause-txt":"Unknown","content":"","CallerIDName":"","Cause":"0","ConnectedLineName":"","CallerIDNum":"+31613925xxx"}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-000000f8;2","UniqueID":"ua1-staging-1512032865.854","Privilege":"call,all","content":"","DialStatus":"CANCEL"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-000000f8;2","Uniqueid":"ua1-staging-1512032865.854","Privilege":"call,all","ConnectedLineNum":"ID400711","Cause-txt":"Unknown","content":"","CallerIDName":"","Cause":"0","ConnectedLineName":"","CallerIDNum":"+31150010001"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"SIP/voipgrid-siproute-staging-00000165","Uniqueid":"ua1-staging-1512032865.857","Privilege":"call,all","ConnectedLineNum":"+31150010001","Cause-txt":"Normal Clearing","content":"","CallerIDName":"","Cause":"16","ConnectedLineName":"","CallerIDNum":"+31613925xxx"}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/+31613925xxx@world_out-000000f9;2","UniqueID":"ua1-staging-1512032865.856","Privilege":"call,all","content":"","DialStatus":"CANCEL"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/+31613925xxx@world_out-000000f9;2","Uniqueid":"ua1-staging-1512032865.856","Privilege":"call,all","ConnectedLineNum":"+31613925xxx","Cause-txt":"Unknown","content":"","CallerIDName":"","Cause":"0","ConnectedLineName":"","CallerIDNum":"+31150010001"}] diff --git a/tests/fixtures/connectab/ctd-account-world-fail2.json b/tests/fixtures/connectab/ctd-account-world-fail2.json deleted file mode 100644 index ec914d3..0000000 --- a/tests/fixtures/connectab/ctd-account-world-fail2.json +++ /dev/null @@ -1,87 +0,0 @@ -[{"Event":"FullyBooted","Privilege":"system,all","content":"","Status":"Fully Booted"}, - {"Event":"FullyBooted","Privilege":"system,all","content":"","Status":"Fully Booted"}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/ID400701@osvpi_proc_connectab_ctd-000000e7;1","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1512029541.798","Privilege":"call,all","CallerIDName":"","content":"","Context":"osvpi_proc_connectab_ctd","Exten":"ID400701","CallerIDNum":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/ID400701@osvpi_proc_connectab_ctd-000000e7;2","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"ua1-staging-1512029541.799","Privilege":"call,all","CallerIDName":"","content":"","Context":"osvpi_proc_connectab_ctd","Exten":"ID400701","CallerIDNum":""}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/ID400701@osvpi_proc_connectab_ctd-000000e7;1","Uniqueid":"ua1-staging-1512029541.798","Privilege":"call,all","content":""}, - {"Event":"NewCallerid","Channel":"Local/ID400701@osvpi_proc_connectab_ctd-000000e7;1","Uniqueid":"ua1-staging-1512029541.798","Privilege":"call,all","CallerIDName":"","content":"","CID-CallingPres":"67 (Number Unavailable)","CallerIDNum":""}, - {"Event":"LocalBridge","Channel1":"Local/ID400701@osvpi_proc_connectab_ctd-000000e7;1","Uniqueid1":"ua1-staging-1512029541.798","Channel2":"Local/ID400701@osvpi_proc_connectab_ctd-000000e7;2","Uniqueid2":"ua1-staging-1512029541.799","Privilege":"call,all","content":"","Context":"osvpi_proc_connectab_ctd","Exten":"ID400701","LocalOptimization":"No"}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/ID400701@osvpi_proc_connectab_ctd-000000e7;2","Uniqueid":"ua1-staging-1512029541.799","Privilege":"call,all","content":"","OldAccountCode":"15001"}, - {"Event":"NewCallerid","Channel":"Local/ID400701@osvpi_proc_connectab_ctd-000000e7;2","Uniqueid":"ua1-staging-1512029541.799","Privilege":"call,all","CallerIDName":"Calling...","content":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDNum":""}, - {"Event":"NewCallerid","Channel":"Local/ID400701@osvpi_proc_connectab_ctd-000000e7;2","Uniqueid":"ua1-staging-1512029541.799","Privilege":"call,all","CallerIDName":"Calling...","content":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDNum":"203"}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/203@osvpi_account_call_int_permitted-000000e8;1","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1512029541.800","Privilege":"call,all","CallerIDName":"","content":"","Context":"osvpi_account_call_int_permitted","Exten":"203","CallerIDNum":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/203@osvpi_account_call_int_permitted-000000e8;2","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"ua1-staging-1512029541.801","Privilege":"call,all","CallerIDName":"","content":"","Context":"osvpi_account_call_int_permitted","Exten":"203","CallerIDNum":""}, - {"Event":"NewCallerid","Channel":"Local/203@osvpi_account_call_int_permitted-000000e8;1","Uniqueid":"ua1-staging-1512029541.800","Privilege":"call,all","CallerIDName":"","content":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDNum":"ID400701"}, - {"Event":"LocalBridge","Channel1":"Local/203@osvpi_account_call_int_permitted-000000e8;1","Uniqueid1":"ua1-staging-1512029541.800","Channel2":"Local/203@osvpi_account_call_int_permitted-000000e8;2","Uniqueid2":"ua1-staging-1512029541.801","Privilege":"call,all","content":"","Context":"osvpi_account_call_int_permitted","Exten":"203","LocalOptimization":"Yes"}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/ID400701@osvpi_proc_connectab_ctd-000000e7;2","UniqueID":"ua1-staging-1512029541.799","Privilege":"call,all","CallerIDName":"Calling...","content":"","Dialstring":"203@osvpi_account_call_int_permitted","CallerIDNum":"203","ConnectedLineName":"","ConnectedLineNum":"","Destination":"Local/203@osvpi_account_call_int_permitted-000000e8;1","DestUniqueID":"ua1-staging-1512029541.800"}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/ID730671@osvpi_route_phoneaccount-000000e9;1","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1512029541.802","Privilege":"call,all","CallerIDName":"","content":"","Context":"osvpi_route_phoneaccount","Exten":"ID730671","CallerIDNum":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/ID730671@osvpi_route_phoneaccount-000000e9;2","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"ua1-staging-1512029541.803","Privilege":"call,all","CallerIDName":"","content":"","Context":"osvpi_route_phoneaccount","Exten":"ID730671","CallerIDNum":""}, - {"Event":"NewCallerid","Channel":"Local/ID730671@osvpi_route_phoneaccount-000000e9;1","Uniqueid":"ua1-staging-1512029541.802","Privilege":"call,all","CallerIDName":"","content":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDNum":"203"}, - {"Event":"LocalBridge","Channel1":"Local/ID730671@osvpi_route_phoneaccount-000000e9;1","Uniqueid1":"ua1-staging-1512029541.802","Channel2":"Local/ID730671@osvpi_route_phoneaccount-000000e9;2","Uniqueid2":"ua1-staging-1512029541.803","Privilege":"call,all","content":"","Context":"osvpi_route_phoneaccount","Exten":"ID730671","LocalOptimization":"Yes"}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/203@osvpi_account_call_int_permitted-000000e8;2","UniqueID":"ua1-staging-1512029541.801","Privilege":"call,all","CallerIDName":"Calling...","content":"","Dialstring":"ID730671@osvpi_route_phoneaccount","CallerIDNum":"203","ConnectedLineName":"","ConnectedLineNum":"ID400701","Destination":"Local/ID730671@osvpi_route_phoneaccount-000000e9;1","DestUniqueID":"ua1-staging-1512029541.802"}, - {"Event":"UserEvent","UserEvent":"NotifyCallstate","AccountCode":"150010003","Uniqueid":"ua1-staging-1512029541.803","Privilege":"user,all","Provider":"webhook","WebhookUrls":"","AccountInternalNumber":"203","content":""}, - {"Event":"Newchannel","AccountCode":"150010003","Channel":"SIP/150010003-00000150","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1512029541.804","Privilege":"call,all","CallerIDName":"","content":"","Context":"osvpi_account","Exten":"","CallerIDNum":""}, - {"Event":"NewCallerid","Channel":"SIP/150010003-00000150","Uniqueid":"ua1-staging-1512029541.804","Privilege":"call,all","CallerIDName":"","content":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDNum":"203"}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/ID730671@osvpi_route_phoneaccount-000000e9;2","UniqueID":"ua1-staging-1512029541.803","Privilege":"call,all","CallerIDName":"Calling...","content":"","Dialstring":"150010003/150010003/195.35.114.93!!203","CallerIDNum":"203","ConnectedLineName":"","ConnectedLineNum":"203","Destination":"SIP/150010003-00000150","DestUniqueID":"ua1-staging-1512029541.804"}, - {"Event":"Newstate","Channel":"SIP/150010003-00000150","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua1-staging-1512029541.804","Privilege":"call,all","ConnectedLineNum":"203","CallerIDName":"","content":"","ConnectedLineName":"Calling...","CallerIDNum":"203"}, - {"Event":"Newstate","Channel":"Local/ID730671@osvpi_route_phoneaccount-000000e9;1","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua1-staging-1512029541.802","Privilege":"call,all","ConnectedLineNum":"203","CallerIDName":"","content":"","ConnectedLineName":"Calling...","CallerIDNum":"203"}, - {"Event":"Newstate","Channel":"Local/203@osvpi_account_call_int_permitted-000000e8;1","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua1-staging-1512029541.800","Privilege":"call,all","ConnectedLineNum":"203","CallerIDName":"","content":"","ConnectedLineName":"Calling...","CallerIDNum":"ID400701"}, - {"Event":"Newstate","Channel":"Local/ID400701@osvpi_proc_connectab_ctd-000000e7;1","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua1-staging-1512029541.798","Privilege":"call,all","ConnectedLineNum":"","CallerIDName":"","content":"","ConnectedLineName":"","CallerIDNum":""}, - {"Event":"Newstate","Channel":"SIP/150010003-00000150","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512029541.804","Privilege":"call,all","ConnectedLineNum":"203","CallerIDName":"","content":"","ConnectedLineName":"Calling...","CallerIDNum":"203"}, - {"Event":"Newstate","Channel":"Local/ID730671@osvpi_route_phoneaccount-000000e9;2","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512029541.803","Privilege":"call,all","ConnectedLineNum":"203","CallerIDName":"Calling...","content":"","ConnectedLineName":"","CallerIDNum":"203"}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"SIP/150010003-00000150","Uniqueid":"ua1-staging-1512029541.804","Privilege":"call,all","content":"","OldAccountCode":"15001"}, - {"Event":"Bridge","Channel1":"Local/ID730671@osvpi_route_phoneaccount-000000e9;2","Uniqueid1":"ua1-staging-1512029541.803","CallerID1":"203","Channel2":"SIP/150010003-00000150","Uniqueid2":"ua1-staging-1512029541.804","CallerID2":"203","Privilege":"call,all","Bridgestate":"Link","Bridgetype":"core","content":""}, - {"Event":"Newstate","Channel":"Local/ID730671@osvpi_route_phoneaccount-000000e9;1","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512029541.802","Privilege":"call,all","ConnectedLineNum":"203","CallerIDName":"","content":"","ConnectedLineName":"Calling...","CallerIDNum":"203"}, - {"Event":"Newstate","Channel":"Local/203@osvpi_account_call_int_permitted-000000e8;2","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512029541.801","Privilege":"call,all","ConnectedLineNum":"ID400701","CallerIDName":"Calling...","content":"","ConnectedLineName":"","CallerIDNum":"203"}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/ID730671@osvpi_route_phoneaccount-000000e9;1","Uniqueid":"ua1-staging-1512029541.802","Privilege":"call,all","content":"","OldAccountCode":"15001"}, - {"Event":"Bridge","Channel1":"Local/203@osvpi_account_call_int_permitted-000000e8;2","Uniqueid1":"ua1-staging-1512029541.801","CallerID1":"203","Channel2":"Local/ID730671@osvpi_route_phoneaccount-000000e9;1","Uniqueid2":"ua1-staging-1512029541.802","CallerID2":"203","Privilege":"call,all","Bridgestate":"Link","Bridgetype":"core","content":""}, - {"Event":"Newstate","Channel":"Local/203@osvpi_account_call_int_permitted-000000e8;1","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512029541.800","Privilege":"call,all","ConnectedLineNum":"203","CallerIDName":"","content":"","ConnectedLineName":"Calling...","CallerIDNum":"ID400701"}, - {"Event":"Newstate","Channel":"Local/ID400701@osvpi_proc_connectab_ctd-000000e7;2","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512029541.799","Privilege":"call,all","ConnectedLineNum":"","CallerIDName":"Calling...","content":"","ConnectedLineName":"","CallerIDNum":"203"}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/203@osvpi_account_call_int_permitted-000000e8;1","Uniqueid":"ua1-staging-1512029541.800","Privilege":"call,all","content":"","OldAccountCode":"15001"}, - {"Event":"Bridge","Channel1":"Local/ID400701@osvpi_proc_connectab_ctd-000000e7;2","Uniqueid1":"ua1-staging-1512029541.799","CallerID1":"203","Channel2":"Local/203@osvpi_account_call_int_permitted-000000e8;1","Uniqueid2":"ua1-staging-1512029541.800","CallerID2":"ID400701","Privilege":"call,all","Bridgestate":"Link","Bridgetype":"core","content":""}, - {"Event":"Newstate","Channel":"Local/ID400701@osvpi_proc_connectab_ctd-000000e7;1","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua1-staging-1512029541.798","Privilege":"call,all","ConnectedLineNum":"","CallerIDName":"","content":"","ConnectedLineName":"","CallerIDNum":""}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/ID400701@osvpi_proc_connectab_ctd-000000e7;1","Uniqueid":"ua1-staging-1512029541.798","Privilege":"call,all","content":"","OldAccountCode":"15001"}, - {"Event":"Masquerade","Privilege":"call,all","Clone":"SIP/150010003-00000150","content":"","OriginalState":"Up","Original":"Local/ID730671@osvpi_route_phoneaccount-000000e9;1","CloneState":"Up"}, - {"Event":"Rename","Channel":"SIP/150010003-00000150","Uniqueid":"ua1-staging-1512029541.804","Privilege":"call,all","Newname":"SIP/150010003-00000150","content":""}, - {"Event":"Rename","Channel":"Local/ID730671@osvpi_route_phoneaccount-000000e9;1","Uniqueid":"ua1-staging-1512029541.802","Privilege":"call,all","Newname":"SIP/150010003-00000150","content":""}, - {"Event":"Rename","Channel":"SIP/150010003-00000150","Uniqueid":"ua1-staging-1512029541.804","Privilege":"call,all","Newname":"Local/ID730671@osvpi_route_phoneaccount-000000e9;1","content":""}, - {"Event":"NewCallerid","Channel":"SIP/150010003-00000150","Uniqueid":"ua1-staging-1512029541.802","Privilege":"call,all","CallerIDName":"","content":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDNum":"203"}, - {"Event":"Bridge","Channel1":"Local/ID730671@osvpi_route_phoneaccount-000000e9;2","Uniqueid1":"ua1-staging-1512029541.803","CallerID1":"203","Channel2":"Local/ID730671@osvpi_route_phoneaccount-000000e9;1","Uniqueid2":"ua1-staging-1512029541.804","CallerID2":"203","Privilege":"call,all","Bridgestate":"Unlink","Bridgetype":"core","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/ID730671@osvpi_route_phoneaccount-000000e9;1","Uniqueid":"ua1-staging-1512029541.804","Privilege":"call,all","CallerIDName":"","content":"","CallerIDNum":"203","ConnectedLineNum":"203","ConnectedLineName":"Calling...","Cause":"16","Cause-txt":"Normal Clearing"}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/ID730671@osvpi_route_phoneaccount-000000e9;2","UniqueID":"ua1-staging-1512029541.803","Privilege":"call,all","DialStatus":"ANSWER","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/ID730671@osvpi_route_phoneaccount-000000e9;2","Uniqueid":"ua1-staging-1512029541.803","Privilege":"call,all","CallerIDName":"Calling...","content":"","CallerIDNum":"203","ConnectedLineNum":"203","ConnectedLineName":"","Cause":"16","Cause-txt":"Normal Clearing"}, - {"Event":"Masquerade","Privilege":"call,all","Clone":"SIP/150010003-00000150","content":"","OriginalState":"Up","Original":"Local/203@osvpi_account_call_int_permitted-000000e8;1","CloneState":"Up"}, - {"Event":"Rename","Channel":"SIP/150010003-00000150","Uniqueid":"ua1-staging-1512029541.802","Privilege":"call,all","Newname":"SIP/150010003-00000150","content":""}, - {"Event":"Rename","Channel":"Local/203@osvpi_account_call_int_permitted-000000e8;1","Uniqueid":"ua1-staging-1512029541.800","Privilege":"call,all","Newname":"SIP/150010003-00000150","content":""}, - {"Event":"Rename","Channel":"SIP/150010003-00000150","Uniqueid":"ua1-staging-1512029541.802","Privilege":"call,all","Newname":"Local/203@osvpi_account_call_int_permitted-000000e8;1","content":""}, - {"Event":"NewCallerid","Channel":"SIP/150010003-00000150","Uniqueid":"ua1-staging-1512029541.800","Privilege":"call,all","CallerIDName":"","content":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDNum":"ID400701"}, - {"Event":"Bridge","Channel1":"Local/203@osvpi_account_call_int_permitted-000000e8;2","Uniqueid1":"ua1-staging-1512029541.801","CallerID1":"203","Channel2":"Local/203@osvpi_account_call_int_permitted-000000e8;1","Uniqueid2":"ua1-staging-1512029541.802","CallerID2":"203","Privilege":"call,all","Bridgestate":"Unlink","Bridgetype":"core","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/203@osvpi_account_call_int_permitted-000000e8;1","Uniqueid":"ua1-staging-1512029541.802","Privilege":"call,all","CallerIDName":"","content":"","CallerIDNum":"203","ConnectedLineNum":"203","ConnectedLineName":"Calling...","Cause":"16","Cause-txt":"Normal Clearing"}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/203@osvpi_account_call_int_permitted-000000e8;2","UniqueID":"ua1-staging-1512029541.801","Privilege":"call,all","DialStatus":"ANSWER","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/203@osvpi_account_call_int_permitted-000000e8;2","Uniqueid":"ua1-staging-1512029541.801","Privilege":"call,all","CallerIDName":"Calling...","content":"","CallerIDNum":"203","ConnectedLineNum":"ID400701","ConnectedLineName":"","Cause":"16","Cause-txt":"Normal Clearing"}, - {"Event":"NewCallerid","Channel":"Local/ID400701@osvpi_proc_connectab_ctd-000000e7;1","Uniqueid":"ua1-staging-1512029541.798","Privilege":"call,all","CallerIDName":"","content":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDNum":"+31150010001"}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-000000ea;1","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1512029543.805","Privilege":"call,all","CallerIDName":"","content":"","Context":"osvpi_world_call_permittedplus","Exten":"+31613925xxx","CallerIDNum":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-000000ea;2","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"ua1-staging-1512029543.806","Privilege":"call,all","CallerIDName":"","content":"","Context":"osvpi_world_call_permittedplus","Exten":"+31613925xxx","CallerIDNum":""}, - {"Event":"NewCallerid","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-000000ea;1","Uniqueid":"ua1-staging-1512029543.805","Privilege":"call,all","CallerIDName":"","content":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDNum":"ID400701"}, - {"Event":"LocalBridge","Channel1":"Local/+31613925xxx@osvpi_world_call_permittedplus-000000ea;1","Uniqueid1":"ua1-staging-1512029543.805","Channel2":"Local/+31613925xxx@osvpi_world_call_permittedplus-000000ea;2","Uniqueid2":"ua1-staging-1512029543.806","Privilege":"call,all","content":"","Context":"osvpi_world_call_permittedplus","Exten":"+31613925xxx","LocalOptimization":"Yes"}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/ID400701@osvpi_proc_connectab_ctd-000000e7;1","UniqueID":"ua1-staging-1512029541.798","Privilege":"call,all","CallerIDName":"","content":"","Dialstring":"+31613925xxx@osvpi_world_call_permittedplus","CallerIDNum":"+31150010001","ConnectedLineName":"","ConnectedLineNum":"","Destination":"Local/+31613925xxx@osvpi_world_call_permittedplus-000000ea;1","DestUniqueID":"ua1-staging-1512029543.805"}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/+31613925xxx@world_out-000000eb;1","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1512029543.807","Privilege":"call,all","CallerIDName":"","content":"","Context":"world_out","Exten":"+31613925xxx","CallerIDNum":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/+31613925xxx@world_out-000000eb;2","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"ua1-staging-1512029543.808","Privilege":"call,all","CallerIDName":"","content":"","Context":"world_out","Exten":"+31613925xxx","CallerIDNum":""}, - {"Event":"NewCallerid","Channel":"Local/+31613925xxx@world_out-000000eb;1","Uniqueid":"ua1-staging-1512029543.807","Privilege":"call,all","CallerIDName":"","content":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDNum":"+31613925xxx"}, - {"Event":"LocalBridge","Channel1":"Local/+31613925xxx@world_out-000000eb;1","Uniqueid1":"ua1-staging-1512029543.807","Channel2":"Local/+31613925xxx@world_out-000000eb;2","Uniqueid2":"ua1-staging-1512029543.808","Privilege":"call,all","content":"","Context":"world_out","Exten":"+31613925xxx","LocalOptimization":"Yes"}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-000000ea;2","UniqueID":"ua1-staging-1512029543.806","Privilege":"call,all","CallerIDName":"","content":"","Dialstring":"+31613925xxx@world_out","CallerIDNum":"+31150010001","ConnectedLineName":"","ConnectedLineNum":"ID400701","Destination":"Local/+31613925xxx@world_out-000000eb;1","DestUniqueID":"ua1-staging-1512029543.807"}, - {"Event":"Newchannel","AccountCode":"","Channel":"SIP/voipgrid-siproute-staging-00000151","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua1-staging-1512029543.809","Privilege":"call,all","CallerIDName":"","content":"","Context":"voipgrid_in","Exten":"","CallerIDNum":""}, - {"Event":"NewCallerid","Channel":"SIP/voipgrid-siproute-staging-00000151","Uniqueid":"ua1-staging-1512029543.809","Privilege":"call,all","CallerIDName":"","content":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDNum":"+31613925xxx"}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/+31613925xxx@world_out-000000eb;2","UniqueID":"ua1-staging-1512029543.808","Privilege":"call,all","CallerIDName":"","content":"","Dialstring":"+31613925xxx@voipgrid-siproute-staging","CallerIDNum":"+31150010001","ConnectedLineName":"","ConnectedLineNum":"+31613925xxx","Destination":"SIP/voipgrid-siproute-staging-00000151","DestUniqueID":"ua1-staging-1512029543.809"}, - {"Event":"Bridge","Channel1":"Local/ID400701@osvpi_proc_connectab_ctd-000000e7;2","Uniqueid1":"ua1-staging-1512029541.799","CallerID1":"203","Channel2":"SIP/150010003-00000150","Uniqueid2":"ua1-staging-1512029541.800","CallerID2":"ID400701","Privilege":"call,all","Bridgestate":"Unlink","Bridgetype":"core","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"SIP/150010003-00000150","Uniqueid":"ua1-staging-1512029541.800","Privilege":"call,all","CallerIDName":"","content":"","CallerIDNum":"ID400701","ConnectedLineNum":"203","ConnectedLineName":"Calling...","Cause":"16","Cause-txt":"Normal Clearing"}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/ID400701@osvpi_proc_connectab_ctd-000000e7;2","UniqueID":"ua1-staging-1512029541.799","Privilege":"call,all","DialStatus":"ANSWER","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/ID400701@osvpi_proc_connectab_ctd-000000e7;2","Uniqueid":"ua1-staging-1512029541.799","Privilege":"call,all","CallerIDName":"Calling...","content":"","CallerIDNum":"203","ConnectedLineNum":"","ConnectedLineName":"","Cause":"16","Cause-txt":"Normal Clearing"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-000000ea;1","Uniqueid":"ua1-staging-1512029543.805","Privilege":"call,all","CallerIDName":"","content":"","CallerIDNum":"ID400701","ConnectedLineNum":"+31150010001","ConnectedLineName":"","Cause":"0","Cause-txt":"Unknown"}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/ID400701@osvpi_proc_connectab_ctd-000000e7;1","UniqueID":"ua1-staging-1512029541.798","Privilege":"call,all","DialStatus":"CANCEL","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/ID400701@osvpi_proc_connectab_ctd-000000e7;1","Uniqueid":"ua1-staging-1512029541.798","Privilege":"call,all","CallerIDName":"","content":"","CallerIDNum":"+31150010001","ConnectedLineNum":"","ConnectedLineName":"","Cause":"16","Cause-txt":"Normal Clearing"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/+31613925xxx@world_out-000000eb;1","Uniqueid":"ua1-staging-1512029543.807","Privilege":"call,all","CallerIDName":"","content":"","CallerIDNum":"+31613925xxx","ConnectedLineNum":"+31150010001","ConnectedLineName":"","Cause":"0","Cause-txt":"Unknown"}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-000000ea;2","UniqueID":"ua1-staging-1512029543.806","Privilege":"call,all","DialStatus":"CANCEL","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-000000ea;2","Uniqueid":"ua1-staging-1512029543.806","Privilege":"call,all","CallerIDName":"","content":"","CallerIDNum":"+31150010001","ConnectedLineNum":"ID400701","ConnectedLineName":"","Cause":"0","Cause-txt":"Unknown"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"SIP/voipgrid-siproute-staging-00000151","Uniqueid":"ua1-staging-1512029543.809","Privilege":"call,all","CallerIDName":"","content":"","CallerIDNum":"+31613925xxx","ConnectedLineNum":"+31150010001","ConnectedLineName":"","Cause":"16","Cause-txt":"Normal Clearing"}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/+31613925xxx@world_out-000000eb;2","UniqueID":"ua1-staging-1512029543.808","Privilege":"call,all","DialStatus":"CANCEL","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/+31613925xxx@world_out-000000eb;2","Uniqueid":"ua1-staging-1512029543.808","Privilege":"call,all","CallerIDName":"","content":"","CallerIDNum":"+31150010001","ConnectedLineNum":"+31613925xxx","ConnectedLineName":"","Cause":"0","Cause-txt":"Unknown"}] diff --git a/tests/fixtures/connectab/ctd-account-world.json b/tests/fixtures/connectab/ctd-account-world.json deleted file mode 100644 index 12c675e..0000000 --- a/tests/fixtures/connectab/ctd-account-world.json +++ /dev/null @@ -1,140 +0,0 @@ -[{"Event":"FullyBooted","Privilege":"system,all","content":"","Status":"Fully Booted"}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/ID400581@osvpi_proc_connectab_ctd-00000033;1","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua0-acc-1511536963.146","Privilege":"call,all","CallerIDName":"","content":"","CallerIDNum":"","Context":"osvpi_proc_connectab_ctd","Exten":"ID400581"}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/ID400581@osvpi_proc_connectab_ctd-00000033;2","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"ua0-acc-1511536963.147","Privilege":"call,all","CallerIDName":"","content":"","CallerIDNum":"","Context":"osvpi_proc_connectab_ctd","Exten":"ID400581"}, - {"Event":"NewAccountCode","AccountCode":"12668","Channel":"Local/ID400581@osvpi_proc_connectab_ctd-00000033;1","Uniqueid":"ua0-acc-1511536963.146","Privilege":"call,all","content":""}, - {"Event":"NewCallerid","Channel":"Local/ID400581@osvpi_proc_connectab_ctd-00000033;1","Uniqueid":"ua0-acc-1511536963.146","Privilege":"call,all","CallerIDName":"","CID-CallingPres":"67 (Number Unavailable)","content":"","CallerIDNum":""}, - { - "Event": "LocalBridge", - "Channel1": "Local/ID400581@osvpi_proc_connectab_ctd-00000033;1", - "Uniqueid1": "ua0-acc-1511536963.146", - "Channel2": "Local/ID400581@osvpi_proc_connectab_ctd-00000033;2", - "Uniqueid2": "ua0-acc-1511536963.147", - "Privilege": "call,all", - "content": "", - "LocalOptimization": "No", - "Exten": "ID400581", - "Context": "osvpi_proc_connectab_ctd" - }, {"Event":"NewAccountCode","AccountCode":"12668","Channel":"Local/ID400581@osvpi_proc_connectab_ctd-00000033;2","Uniqueid":"ua0-acc-1511536963.147","Privilege":"call,all","content":"","OldAccountCode":"12668"}, - {"Event":"NewCallerid","Channel":"Local/ID400581@osvpi_proc_connectab_ctd-00000033;2","Uniqueid":"ua0-acc-1511536963.147","Privilege":"call,all","CallerIDName":"Calling...","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":"","CallerIDNum":""}, - {"Event":"NewCallerid","Channel":"Local/ID400581@osvpi_proc_connectab_ctd-00000033;2","Uniqueid":"ua0-acc-1511536963.147","Privilege":"call,all","CallerIDName":"Calling...","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":"","CallerIDNum":"217"}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/217@osvpi_account_call_int_permitted-00000034;1","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua0-acc-1511536963.148","Privilege":"call,all","CallerIDName":"","content":"","CallerIDNum":"","Context":"osvpi_account_call_int_permitted","Exten":"217"}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/217@osvpi_account_call_int_permitted-00000034;2","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"ua0-acc-1511536963.149","Privilege":"call,all","CallerIDName":"","content":"","CallerIDNum":"","Context":"osvpi_account_call_int_permitted","Exten":"217"}, - {"Event":"NewCallerid","Channel":"Local/217@osvpi_account_call_int_permitted-00000034;1","Uniqueid":"ua0-acc-1511536963.148","Privilege":"call,all","CallerIDName":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":"","CallerIDNum":"ID400581"}, - {"Event":"LocalBridge","Channel1":"Local/217@osvpi_account_call_int_permitted-00000034;1","Uniqueid1":"ua0-acc-1511536963.148","Channel2":"Local/217@osvpi_account_call_int_permitted-00000034;2","Uniqueid2":"ua0-acc-1511536963.149","Privilege":"call,all","content":"","LocalOptimization":"Yes","Exten":"217","Context":"osvpi_account_call_int_permitted"}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/ID400581@osvpi_proc_connectab_ctd-00000033;2","UniqueID":"ua0-acc-1511536963.147","Privilege":"call,all","CallerIDName":"Calling...","DestUniqueID":"ua0-acc-1511536963.148","ConnectedLineNum":"","Destination":"Local/217@osvpi_account_call_int_permitted-00000034;1","content":"","CallerIDNum":"217","Dialstring":"217@osvpi_account_call_int_permitted","ConnectedLineName":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/ID730651@osvpi_route_phoneaccount-00000035;1","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua0-acc-1511536963.150","Privilege":"call,all","CallerIDName":"","content":"","CallerIDNum":"","Context":"osvpi_route_phoneaccount","Exten":"ID730651"}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/ID730651@osvpi_route_phoneaccount-00000035;2","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"ua0-acc-1511536963.151","Privilege":"call,all","CallerIDName":"","content":"","CallerIDNum":"","Context":"osvpi_route_phoneaccount","Exten":"ID730651"}, - {"Event":"NewCallerid","Channel":"Local/ID730651@osvpi_route_phoneaccount-00000035;1","Uniqueid":"ua0-acc-1511536963.150","Privilege":"call,all","CallerIDName":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":"","CallerIDNum":"217"}, - {"Event":"LocalBridge","Channel1":"Local/ID730651@osvpi_route_phoneaccount-00000035;1","Uniqueid1":"ua0-acc-1511536963.150","Channel2":"Local/ID730651@osvpi_route_phoneaccount-00000035;2","Uniqueid2":"ua0-acc-1511536963.151","Privilege":"call,all","content":"","LocalOptimization":"Yes","Exten":"ID730651","Context":"osvpi_route_phoneaccount"}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/217@osvpi_account_call_int_permitted-00000034;2","UniqueID":"ua0-acc-1511536963.149","Privilege":"call,all","CallerIDName":"Calling...","DestUniqueID":"ua0-acc-1511536963.150","ConnectedLineNum":"ID400581","Destination":"Local/ID730651@osvpi_route_phoneaccount-00000035;1","content":"","CallerIDNum":"217","Dialstring":"ID730651@osvpi_route_phoneaccount","ConnectedLineName":""}, - {"Event":"UserEvent","UserEvent":"NotifyCallstate","AccountCode":"126680005","Uniqueid":"ua0-acc-1511536963.151","Privilege":"user,all","content":"","Provider":"webhook","AccountInternalNumber":"217","WebhookUrls":""}, - {"Event":"Newchannel","AccountCode":"126680005","Channel":"SIP/126680005-0000002c","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua0-acc-1511536963.152","Privilege":"call,all","CallerIDName":"","content":"","CallerIDNum":"","Context":"osvpi_account","Exten":""}, - {"Event":"NewCallerid","Channel":"SIP/126680005-0000002c","Uniqueid":"ua0-acc-1511536963.152","Privilege":"call,all","CallerIDName":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":"","CallerIDNum":"217"}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/ID730651@osvpi_route_phoneaccount-00000035;2","UniqueID":"ua0-acc-1511536963.151","Privilege":"call,all","CallerIDName":"Calling...","DestUniqueID":"ua0-acc-1511536963.152","ConnectedLineNum":"217","Destination":"SIP/126680005-0000002c","content":"","CallerIDNum":"217","Dialstring":"126680005/126680005/195.35.115.203!!217","ConnectedLineName":""}, - {"Event":"Newstate","Channel":"SIP/126680005-0000002c","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua0-acc-1511536963.152","Privilege":"call,all","CallerIDName":"","content":"","ConnectedLineName":"Calling...","ConnectedLineNum":"217","CallerIDNum":"217"}, - {"Event":"Newstate","Channel":"Local/ID730651@osvpi_route_phoneaccount-00000035;1","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua0-acc-1511536963.150","Privilege":"call,all","CallerIDName":"","content":"","ConnectedLineName":"Calling...","ConnectedLineNum":"217","CallerIDNum":"217"}, - {"Event":"Newstate","Channel":"Local/217@osvpi_account_call_int_permitted-00000034;1","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua0-acc-1511536963.148","Privilege":"call,all","CallerIDName":"","content":"","ConnectedLineName":"Calling...","ConnectedLineNum":"217","CallerIDNum":"ID400581"}, - {"Event":"Newstate","Channel":"Local/ID400581@osvpi_proc_connectab_ctd-00000033;1","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua0-acc-1511536963.146","Privilege":"call,all","CallerIDName":"","content":"","ConnectedLineName":"","ConnectedLineNum":"","CallerIDNum":""}, - {"Event":"Newstate","Channel":"SIP/126680005-0000002c","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua0-acc-1511536963.152","Privilege":"call,all","CallerIDName":"","content":"","ConnectedLineName":"Calling...","ConnectedLineNum":"217","CallerIDNum":"217"}, - {"Event":"Newstate","Channel":"Local/ID730651@osvpi_route_phoneaccount-00000035;2","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua0-acc-1511536963.151","Privilege":"call,all","CallerIDName":"Calling...","content":"","ConnectedLineName":"","ConnectedLineNum":"217","CallerIDNum":"217"}, - {"Event":"NewAccountCode","AccountCode":"12668","Channel":"SIP/126680005-0000002c","Uniqueid":"ua0-acc-1511536963.152","Privilege":"call,all","content":"","OldAccountCode":"12668"}, - {"Event":"Bridge","Channel1":"Local/ID730651@osvpi_route_phoneaccount-00000035;2","Uniqueid1":"ua0-acc-1511536963.151","CallerID1":"217","Channel2":"SIP/126680005-0000002c","Uniqueid2":"ua0-acc-1511536963.152","CallerID2":"217","Privilege":"call,all","Bridgestate":"Link","content":"","Bridgetype":"core"}, - {"Event":"Newstate","Channel":"Local/ID730651@osvpi_route_phoneaccount-00000035;1","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua0-acc-1511536963.150","Privilege":"call,all","CallerIDName":"","content":"","ConnectedLineName":"Calling...","ConnectedLineNum":"217","CallerIDNum":"217"}, - {"Event":"Newstate","Channel":"Local/217@osvpi_account_call_int_permitted-00000034;2","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua0-acc-1511536963.149","Privilege":"call,all","CallerIDName":"Calling...","content":"","ConnectedLineName":"","ConnectedLineNum":"ID400581","CallerIDNum":"217"}, - {"Event":"NewAccountCode","AccountCode":"12668","Channel":"Local/ID730651@osvpi_route_phoneaccount-00000035;1","Uniqueid":"ua0-acc-1511536963.150","Privilege":"call,all","content":"","OldAccountCode":"12668"}, - {"Event":"Bridge","Channel1":"Local/217@osvpi_account_call_int_permitted-00000034;2","Uniqueid1":"ua0-acc-1511536963.149","CallerID1":"217","Channel2":"Local/ID730651@osvpi_route_phoneaccount-00000035;1","Uniqueid2":"ua0-acc-1511536963.150","CallerID2":"217","Privilege":"call,all","Bridgestate":"Link","content":"","Bridgetype":"core"}, - {"Event":"Newstate","Channel":"Local/217@osvpi_account_call_int_permitted-00000034;1","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua0-acc-1511536963.148","Privilege":"call,all","CallerIDName":"","content":"","ConnectedLineName":"Calling...","ConnectedLineNum":"217","CallerIDNum":"ID400581"}, - {"Event":"Newstate","Channel":"Local/ID400581@osvpi_proc_connectab_ctd-00000033;2","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua0-acc-1511536963.147","Privilege":"call,all","CallerIDName":"Calling...","content":"","ConnectedLineName":"","ConnectedLineNum":"","CallerIDNum":"217"}, - {"Event":"NewAccountCode","AccountCode":"12668","Channel":"Local/217@osvpi_account_call_int_permitted-00000034;1","Uniqueid":"ua0-acc-1511536963.148","Privilege":"call,all","content":"","OldAccountCode":"12668"}, - {"Event":"Bridge","Channel1":"Local/ID400581@osvpi_proc_connectab_ctd-00000033;2","Uniqueid1":"ua0-acc-1511536963.147","CallerID1":"217","Channel2":"Local/217@osvpi_account_call_int_permitted-00000034;1","Uniqueid2":"ua0-acc-1511536963.148","CallerID2":"ID400581","Privilege":"call,all","Bridgestate":"Link","content":"","Bridgetype":"core"}, - {"Event":"Newstate","Channel":"Local/ID400581@osvpi_proc_connectab_ctd-00000033;1","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua0-acc-1511536963.146","Privilege":"call,all","CallerIDName":"","content":"","ConnectedLineName":"","ConnectedLineNum":"","CallerIDNum":""}, - {"Event":"NewAccountCode","AccountCode":"12668","Channel":"Local/ID400581@osvpi_proc_connectab_ctd-00000033;1","Uniqueid":"ua0-acc-1511536963.146","Privilege":"call,all","content":"","OldAccountCode":"12668"}, - {"Event":"NewCallerid","Channel":"Local/ID400581@osvpi_proc_connectab_ctd-00000033;1","Uniqueid":"ua0-acc-1511536963.146","Privilege":"call,all","CallerIDName":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":"","CallerIDNum":"+31853030900"}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000036;1","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua0-acc-1511536965.153","Privilege":"call,all","CallerIDName":"","content":"","CallerIDNum":"","Context":"osvpi_world_call_permittedplus","Exten":"+31613925xxx"}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000036;2","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"ua0-acc-1511536965.154","Privilege":"call,all","CallerIDName":"","content":"","CallerIDNum":"","Context":"osvpi_world_call_permittedplus","Exten":"+31613925xxx"}, - {"Event":"NewCallerid","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000036;1","Uniqueid":"ua0-acc-1511536965.153","Privilege":"call,all","CallerIDName":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":"","CallerIDNum":"ID400581"}, - {"Event":"LocalBridge","Channel1":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000036;1","Uniqueid1":"ua0-acc-1511536965.153","Channel2":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000036;2","Uniqueid2":"ua0-acc-1511536965.154","Privilege":"call,all","content":"","LocalOptimization":"Yes","Exten":"+31613925xxx","Context":"osvpi_world_call_permittedplus"}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/ID400581@osvpi_proc_connectab_ctd-00000033;1","UniqueID":"ua0-acc-1511536963.146","Privilege":"call,all","CallerIDName":"","DestUniqueID":"ua0-acc-1511536965.153","ConnectedLineNum":"","Destination":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000036;1","content":"","CallerIDNum":"+31853030900","Dialstring":"+31613925xxx@osvpi_world_call_permittedplus","ConnectedLineName":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/+31613925xxx@world_out-00000037;1","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua0-acc-1511536965.155","Privilege":"call,all","CallerIDName":"","content":"","CallerIDNum":"","Context":"world_out","Exten":"+31613925xxx"}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/+31613925xxx@world_out-00000037;2","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"ua0-acc-1511536965.156","Privilege":"call,all","CallerIDName":"","content":"","CallerIDNum":"","Context":"world_out","Exten":"+31613925xxx"}, - {"Event":"NewCallerid","Channel":"Local/+31613925xxx@world_out-00000037;1","Uniqueid":"ua0-acc-1511536965.155","Privilege":"call,all","CallerIDName":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":"","CallerIDNum":"+31613925xxx"}, - {"Event":"LocalBridge","Channel1":"Local/+31613925xxx@world_out-00000037;1","Uniqueid1":"ua0-acc-1511536965.155","Channel2":"Local/+31613925xxx@world_out-00000037;2","Uniqueid2":"ua0-acc-1511536965.156","Privilege":"call,all","content":"","LocalOptimization":"Yes","Exten":"+31613925xxx","Context":"world_out"}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000036;2","UniqueID":"ua0-acc-1511536965.154","Privilege":"call,all","CallerIDName":"","DestUniqueID":"ua0-acc-1511536965.155","ConnectedLineNum":"ID400581","Destination":"Local/+31613925xxx@world_out-00000037;1","content":"","CallerIDNum":"+31853030900","Dialstring":"+31613925xxx@world_out","ConnectedLineName":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"SIP/voipgrid-siproute-dev-0000002d","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"ua0-acc-1511536965.157","Privilege":"call,all","CallerIDName":"","content":"","CallerIDNum":"","Context":"voipgrid_in","Exten":""}, - {"Event":"NewCallerid","Channel":"SIP/voipgrid-siproute-dev-0000002d","Uniqueid":"ua0-acc-1511536965.157","Privilege":"call,all","CallerIDName":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":"","CallerIDNum":"+31613925xxx"}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/+31613925xxx@world_out-00000037;2","UniqueID":"ua0-acc-1511536965.156","Privilege":"call,all","CallerIDName":"","DestUniqueID":"ua0-acc-1511536965.157","ConnectedLineNum":"+31613925xxx","Destination":"SIP/voipgrid-siproute-dev-0000002d","content":"","CallerIDNum":"+31853030900","Dialstring":"+31613925xxx@voipgrid-siproute-dev","ConnectedLineName":""}, - {"Event":"Masquerade","Privilege":"call,all","Original":"Local/ID730651@osvpi_route_phoneaccount-00000035;1","content":"","OriginalState":"Up","Clone":"SIP/126680005-0000002c","CloneState":"Up"}, - {"Event":"Rename","Channel":"SIP/126680005-0000002c","Uniqueid":"ua0-acc-1511536963.152","Privilege":"call,all","content":"","Newname":"SIP/126680005-0000002c"}, - {"Event":"Rename","Channel":"Local/ID730651@osvpi_route_phoneaccount-00000035;1","Uniqueid":"ua0-acc-1511536963.150","Privilege":"call,all","content":"","Newname":"SIP/126680005-0000002c"}, - {"Event":"Rename","Channel":"SIP/126680005-0000002c","Uniqueid":"ua0-acc-1511536963.152","Privilege":"call,all","content":"","Newname":"Local/ID730651@osvpi_route_phoneaccount-00000035;1"}, - {"Event":"NewCallerid","Channel":"SIP/126680005-0000002c","Uniqueid":"ua0-acc-1511536963.150","Privilege":"call,all","CallerIDName":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":"","CallerIDNum":"217"}, - {"Event":"Bridge","Channel1":"Local/ID730651@osvpi_route_phoneaccount-00000035;2","Uniqueid1":"ua0-acc-1511536963.151","CallerID1":"217","Channel2":"Local/ID730651@osvpi_route_phoneaccount-00000035;1","Uniqueid2":"ua0-acc-1511536963.152","CallerID2":"217","Privilege":"call,all","Bridgestate":"Unlink","content":"","Bridgetype":"core"}, - {"Event":"Masquerade","Privilege":"call,all","Original":"Local/217@osvpi_account_call_int_permitted-00000034;1","content":"","OriginalState":"Up","Clone":"SIP/126680005-0000002c","CloneState":"Up"}, - {"Event":"Rename","Channel":"SIP/126680005-0000002c","Uniqueid":"ua0-acc-1511536963.150","Privilege":"call,all","content":"","Newname":"SIP/126680005-0000002c"}, - {"Event":"Rename","Channel":"Local/217@osvpi_account_call_int_permitted-00000034;1","Uniqueid":"ua0-acc-1511536963.148","Privilege":"call,all","content":"","Newname":"SIP/126680005-0000002c"}, - {"Event":"Rename","Channel":"SIP/126680005-0000002c","Uniqueid":"ua0-acc-1511536963.150","Privilege":"call,all","content":"","Newname":"Local/217@osvpi_account_call_int_permitted-00000034;1"}, - {"Event":"NewCallerid","Channel":"SIP/126680005-0000002c","Uniqueid":"ua0-acc-1511536963.148","Privilege":"call,all","CallerIDName":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":"","CallerIDNum":"ID400581"}, - {"Event":"Bridge","Channel1":"Local/217@osvpi_account_call_int_permitted-00000034;2","Uniqueid1":"ua0-acc-1511536963.149","CallerID1":"217","Channel2":"Local/217@osvpi_account_call_int_permitted-00000034;1","Uniqueid2":"ua0-acc-1511536963.150","CallerID2":"217","Privilege":"call,all","Bridgestate":"Unlink","content":"","Bridgetype":"core"}, - {"Event":"HangupRequest","Channel":"Local/ID730651@osvpi_route_phoneaccount-00000035;2","Uniqueid":"ua0-acc-1511536963.151","Privilege":"call,all","content":""}, - {"Event":"Hangup","AccountCode":"12668","Channel":"Local/ID730651@osvpi_route_phoneaccount-00000035;1","Uniqueid":"ua0-acc-1511536963.152","Privilege":"call,all","CallerIDName":"","content":"","ConnectedLineNum":"217","CallerIDNum":"217","Cause-txt":"Normal Clearing","ConnectedLineName":"Calling...","Cause":"16"}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/ID730651@osvpi_route_phoneaccount-00000035;2","UniqueID":"ua0-acc-1511536963.151","Privilege":"call,all","content":"","DialStatus":"ANSWER"}, - {"Event":"SoftHangupRequest","Channel":"Local/ID730651@osvpi_route_phoneaccount-00000035;2","Uniqueid":"ua0-acc-1511536963.151","Privilege":"call,all","content":"","Cause":"16"}, - {"Event":"Hangup","AccountCode":"12668","Channel":"Local/ID730651@osvpi_route_phoneaccount-00000035;2","Uniqueid":"ua0-acc-1511536963.151","Privilege":"call,all","CallerIDName":"Calling...","content":"","ConnectedLineNum":"217","CallerIDNum":"217","Cause-txt":"Normal Clearing","ConnectedLineName":"","Cause":"16"}, - {"Event":"HangupRequest","Channel":"Local/217@osvpi_account_call_int_permitted-00000034;2","Uniqueid":"ua0-acc-1511536963.149","Privilege":"call,all","content":""}, - {"Event":"Hangup","AccountCode":"12668","Channel":"Local/217@osvpi_account_call_int_permitted-00000034;1","Uniqueid":"ua0-acc-1511536963.150","Privilege":"call,all","CallerIDName":"","content":"","ConnectedLineNum":"217","CallerIDNum":"217","Cause-txt":"Normal Clearing","ConnectedLineName":"Calling...","Cause":"16"}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/217@osvpi_account_call_int_permitted-00000034;2","UniqueID":"ua0-acc-1511536963.149","Privilege":"call,all","content":"","DialStatus":"ANSWER"}, - {"Event":"SoftHangupRequest","Channel":"Local/217@osvpi_account_call_int_permitted-00000034;2","Uniqueid":"ua0-acc-1511536963.149","Privilege":"call,all","content":"","Cause":"16"}, - {"Event":"Hangup","AccountCode":"12668","Channel":"Local/217@osvpi_account_call_int_permitted-00000034;2","Uniqueid":"ua0-acc-1511536963.149","Privilege":"call,all","CallerIDName":"Calling...","content":"","ConnectedLineNum":"ID400581","CallerIDNum":"217","Cause-txt":"Normal Clearing","ConnectedLineName":"","Cause":"16"}, - {"Event":"Newstate","Channel":"SIP/voipgrid-siproute-dev-0000002d","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua0-acc-1511536965.157","Privilege":"call,all","CallerIDName":"","content":"","ConnectedLineName":"","ConnectedLineNum":"+31853030900","CallerIDNum":"+31613925xxx"}, - {"Event":"Newstate","Channel":"Local/+31613925xxx@world_out-00000037;1","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua0-acc-1511536965.155","Privilege":"call,all","CallerIDName":"","content":"","ConnectedLineName":"","ConnectedLineNum":"+31853030900","CallerIDNum":"+31613925xxx"}, - {"Event":"Newstate","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000036;1","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"ua0-acc-1511536965.153","Privilege":"call,all","CallerIDName":"","content":"","ConnectedLineName":"","ConnectedLineNum":"+31853030900","CallerIDNum":"ID400581"}, - {"Event":"RTCPSent","Privilege":"reporting,all","content":"","To":"217.21.195.34:5005","CumulativeLoss":"0","DLSR":"14671.2400 (sec)","IAJitter":"0.0022","SentPackets":"86","FractionLost":"0","SentOctets":"13760","OurSSRC":"416723453","SentNTP":"1511536975.0986787840","SentRTP":"13760","TheirLastSR":"0"}, - {"Event":"Newstate","Channel":"SIP/voipgrid-siproute-dev-0000002d","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua0-acc-1511536965.157","Privilege":"call,all","CallerIDName":"","content":"","ConnectedLineName":"","ConnectedLineNum":"+31853030900","CallerIDNum":"+31613925xxx"}, - {"Event":"Newstate","Channel":"Local/+31613925xxx@world_out-00000037;2","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua0-acc-1511536965.156","Privilege":"call,all","CallerIDName":"","content":"","ConnectedLineName":"","ConnectedLineNum":"+31613925xxx","CallerIDNum":"+31853030900"}, - {"Event":"NewAccountCode","AccountCode":"12668","Channel":"SIP/voipgrid-siproute-dev-0000002d","Uniqueid":"ua0-acc-1511536965.157","Privilege":"call,all","content":"","OldAccountCode":"12668"}, - {"Event":"Bridge","Channel1":"Local/+31613925xxx@world_out-00000037;2","Uniqueid1":"ua0-acc-1511536965.156","CallerID1":"+31853030900","Channel2":"SIP/voipgrid-siproute-dev-0000002d","Uniqueid2":"ua0-acc-1511536965.157","CallerID2":"+31613925xxx","Privilege":"call,all","Bridgestate":"Link","content":"","Bridgetype":"core"}, - {"Event":"Newstate","Channel":"Local/+31613925xxx@world_out-00000037;1","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua0-acc-1511536965.155","Privilege":"call,all","CallerIDName":"","content":"","ConnectedLineName":"","ConnectedLineNum":"+31853030900","CallerIDNum":"+31613925xxx"}, - {"Event":"Newstate","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000036;2","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua0-acc-1511536965.154","Privilege":"call,all","CallerIDName":"","content":"","ConnectedLineName":"","ConnectedLineNum":"ID400581","CallerIDNum":"+31853030900"}, - {"Event":"NewAccountCode","AccountCode":"12668","Channel":"Local/+31613925xxx@world_out-00000037;1","Uniqueid":"ua0-acc-1511536965.155","Privilege":"call,all","content":"","OldAccountCode":"12668"}, - {"Event":"Bridge","Channel1":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000036;2","Uniqueid1":"ua0-acc-1511536965.154","CallerID1":"+31853030900","Channel2":"Local/+31613925xxx@world_out-00000037;1","Uniqueid2":"ua0-acc-1511536965.155","CallerID2":"+31613925xxx","Privilege":"call,all","Bridgestate":"Link","content":"","Bridgetype":"core"}, - {"Event":"Newstate","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000036;1","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"ua0-acc-1511536965.153","Privilege":"call,all","CallerIDName":"","content":"","ConnectedLineName":"","ConnectedLineNum":"+31853030900","CallerIDNum":"ID400581"}, - {"Event":"NewAccountCode","AccountCode":"12668","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000036;1","Uniqueid":"ua0-acc-1511536965.153","Privilege":"call,all","content":"","OldAccountCode":"12668"}, - {"Event":"Bridge","Channel1":"Local/ID400581@osvpi_proc_connectab_ctd-00000033;1","Uniqueid1":"ua0-acc-1511536963.146","CallerID1":"+31853030900","Channel2":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000036;1","Uniqueid2":"ua0-acc-1511536965.153","CallerID2":"ID400581","Privilege":"call,all","Bridgestate":"Link","content":"","Bridgetype":"core"}, - {"Event":"Masquerade","Privilege":"call,all","Original":"Local/+31613925xxx@world_out-00000037;1","content":"","OriginalState":"Up","Clone":"SIP/voipgrid-siproute-dev-0000002d","CloneState":"Up"}, - {"Event":"Rename","Channel":"SIP/voipgrid-siproute-dev-0000002d","Uniqueid":"ua0-acc-1511536965.157","Privilege":"call,all","content":"","Newname":"SIP/voipgrid-siproute-dev-0000002d"}, - {"Event":"Rename","Channel":"Local/+31613925xxx@world_out-00000037;1","Uniqueid":"ua0-acc-1511536965.155","Privilege":"call,all","content":"","Newname":"SIP/voipgrid-siproute-dev-0000002d"}, - {"Event":"Rename","Channel":"SIP/voipgrid-siproute-dev-0000002d","Uniqueid":"ua0-acc-1511536965.157","Privilege":"call,all","content":"","Newname":"Local/+31613925xxx@world_out-00000037;1"}, - {"Event":"NewCallerid","Channel":"SIP/voipgrid-siproute-dev-0000002d","Uniqueid":"ua0-acc-1511536965.155","Privilege":"call,all","CallerIDName":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":"","CallerIDNum":"+31613925xxx"}, - {"Event":"Bridge","Channel1":"Local/+31613925xxx@world_out-00000037;2","Uniqueid1":"ua0-acc-1511536965.156","CallerID1":"+31853030900","Channel2":"Local/+31613925xxx@world_out-00000037;1","Uniqueid2":"ua0-acc-1511536965.157","CallerID2":"+31613925xxx","Privilege":"call,all","Bridgestate":"Unlink","content":"","Bridgetype":"core"}, - {"Event":"Masquerade","Privilege":"call,all","Original":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000036;1","content":"","OriginalState":"Up","Clone":"SIP/voipgrid-siproute-dev-0000002d","CloneState":"Up"}, - {"Event":"Rename","Channel":"SIP/voipgrid-siproute-dev-0000002d","Uniqueid":"ua0-acc-1511536965.155","Privilege":"call,all","content":"","Newname":"SIP/voipgrid-siproute-dev-0000002d"}, - {"Event":"Rename","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000036;1","Uniqueid":"ua0-acc-1511536965.153","Privilege":"call,all","content":"","Newname":"SIP/voipgrid-siproute-dev-0000002d"}, - {"Event":"Rename","Channel":"SIP/voipgrid-siproute-dev-0000002d","Uniqueid":"ua0-acc-1511536965.155","Privilege":"call,all","content":"","Newname":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000036;1"}, - {"Event":"NewCallerid","Channel":"SIP/voipgrid-siproute-dev-0000002d","Uniqueid":"ua0-acc-1511536965.153","Privilege":"call,all","CallerIDName":"","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":"","CallerIDNum":"ID400581"}, - {"Event":"Bridge","Channel1":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000036;2","Uniqueid1":"ua0-acc-1511536965.154","CallerID1":"+31853030900","Channel2":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000036;1","Uniqueid2":"ua0-acc-1511536965.155","CallerID2":"+31613925xxx","Privilege":"call,all","Bridgestate":"Unlink","content":"","Bridgetype":"core"}, - {"Event":"HangupRequest","Channel":"Local/+31613925xxx@world_out-00000037;2","Uniqueid":"ua0-acc-1511536965.156","Privilege":"call,all","content":""}, - {"Event":"Hangup","AccountCode":"12668","Channel":"Local/+31613925xxx@world_out-00000037;1","Uniqueid":"ua0-acc-1511536965.157","Privilege":"call,all","CallerIDName":"","content":"","ConnectedLineNum":"+31853030900","CallerIDNum":"+31613925xxx","Cause-txt":"Normal Clearing","ConnectedLineName":"","Cause":"16"}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/+31613925xxx@world_out-00000037;2","UniqueID":"ua0-acc-1511536965.156","Privilege":"call,all","content":"","DialStatus":"ANSWER"}, - {"Event":"SoftHangupRequest","Channel":"Local/+31613925xxx@world_out-00000037;2","Uniqueid":"ua0-acc-1511536965.156","Privilege":"call,all","content":"","Cause":"16"}, - {"Event":"Hangup","AccountCode":"12668","Channel":"Local/+31613925xxx@world_out-00000037;2","Uniqueid":"ua0-acc-1511536965.156","Privilege":"call,all","CallerIDName":"","content":"","ConnectedLineNum":"+31613925xxx","CallerIDNum":"+31853030900","Cause-txt":"Normal Clearing","ConnectedLineName":"","Cause":"16"}, - {"Event":"HangupRequest","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000036;2","Uniqueid":"ua0-acc-1511536965.154","Privilege":"call,all","content":""}, - {"Event":"Hangup","AccountCode":"12668","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000036;1","Uniqueid":"ua0-acc-1511536965.155","Privilege":"call,all","CallerIDName":"","content":"","ConnectedLineNum":"+31853030900","CallerIDNum":"+31613925xxx","Cause-txt":"Normal Clearing","ConnectedLineName":"","Cause":"16"}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000036;2","UniqueID":"ua0-acc-1511536965.154","Privilege":"call,all","content":"","DialStatus":"ANSWER"}, - {"Event":"SoftHangupRequest","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000036;2","Uniqueid":"ua0-acc-1511536965.154","Privilege":"call,all","content":"","Cause":"16"}, - {"Event":"Hangup","AccountCode":"12668","Channel":"Local/+31613925xxx@osvpi_world_call_permittedplus-00000036;2","Uniqueid":"ua0-acc-1511536965.154","Privilege":"call,all","CallerIDName":"","content":"","ConnectedLineNum":"ID400581","CallerIDNum":"+31853030900","Cause-txt":"Normal Clearing","ConnectedLineName":"","Cause":"16"}, - {"Event":"RTCPSent","Privilege":"reporting,all","content":"","To":"217.21.195.34:5005","CumulativeLoss":"0","DLSR":"14676.2400 (sec)","IAJitter":"0.0021","SentPackets":"334","FractionLost":"0","SentOctets":"53440","OurSSRC":"767355108","SentNTP":"1511536980.0983085056","SentRTP":"2113514960","TheirLastSR":"0"}, - {"Event":"RTCPSent","Privilege":"reporting,all","content":"","To":"62.180.246.11:39733","CumulativeLoss":"0","DLSR":"14679.8200 (sec)","IAJitter":"0.0005","SentPackets":"251","FractionLost":"0","SentOctets":"40160","OurSSRC":"265539484","SentNTP":"1511536983.3362594816","SentRTP":"571200","TheirLastSR":"0"}, - {"Event":"RTCPSent","Privilege":"reporting,all","content":"","To":"217.21.195.34:5005","CumulativeLoss":"0","DLSR":"14681.2400 (sec)","IAJitter":"0.0020","SentPackets":"584","FractionLost":"0","SentOctets":"93440","OurSSRC":"767355108","SentNTP":"1511536985.0985235456","SentRTP":"2113554960","TheirLastSR":"0"}, - {"Event":"RTCPReceived","Privilege":"reporting,all","ReceptionReports":"1","content":"","LastSR":"47063.827955493904318464","DLSR":"1.8670(sec)","RTT":"12(sec)","From":"62.180.246.11:39733","FractionLost":"0","IAJitter":"16","PT":"200(Sender Report)","PacketsLost":"0","HighestSequence":"14315","SenderSSRC":"0","SequenceNumberCycles":"0"}, - {"Event":"HangupRequest","Channel":"SIP/voipgrid-siproute-dev-0000002d","Uniqueid":"ua0-acc-1511536965.153","Privilege":"call,all","content":""}, - {"Event":"Bridge","Channel1":"Local/ID400581@osvpi_proc_connectab_ctd-00000033;1","Uniqueid1":"ua0-acc-1511536963.146","CallerID1":"+31853030900","Channel2":"SIP/voipgrid-siproute-dev-0000002d","Uniqueid2":"ua0-acc-1511536965.153","CallerID2":"ID400581","Privilege":"call,all","Bridgestate":"Unlink","content":"","Bridgetype":"core"}, - {"Event":"Hangup","AccountCode":"12668","Channel":"SIP/voipgrid-siproute-dev-0000002d","Uniqueid":"ua0-acc-1511536965.153","Privilege":"call,all","CallerIDName":"","content":"","ConnectedLineNum":"+31853030900","CallerIDNum":"ID400581","Cause-txt":"Normal Clearing","ConnectedLineName":"","Cause":"16"}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/ID400581@osvpi_proc_connectab_ctd-00000033;1","UniqueID":"ua0-acc-1511536963.146","Privilege":"call,all","content":"","DialStatus":"ANSWER"}, - {"Event":"SoftHangupRequest","Channel":"Local/ID400581@osvpi_proc_connectab_ctd-00000033;1","Uniqueid":"ua0-acc-1511536963.146","Privilege":"call,all","content":"","Cause":"16"}, - {"Event":"HangupRequest","Channel":"Local/ID400581@osvpi_proc_connectab_ctd-00000033;2","Uniqueid":"ua0-acc-1511536963.147","Privilege":"call,all","content":""}, - {"Event":"Hangup","AccountCode":"12668","Channel":"Local/ID400581@osvpi_proc_connectab_ctd-00000033;1","Uniqueid":"ua0-acc-1511536963.146","Privilege":"call,all","CallerIDName":"","content":"","ConnectedLineNum":"","CallerIDNum":"+31853030900","Cause-txt":"Normal Clearing","ConnectedLineName":"","Cause":"16"}, - {"Event":"Bridge","Channel1":"Local/ID400581@osvpi_proc_connectab_ctd-00000033;2","Uniqueid1":"ua0-acc-1511536963.147","CallerID1":"217","Channel2":"SIP/126680005-0000002c","Uniqueid2":"ua0-acc-1511536963.148","CallerID2":"ID400581","Privilege":"call,all","Bridgestate":"Unlink","content":"","Bridgetype":"core"}, - {"Event":"Hangup","AccountCode":"12668","Channel":"SIP/126680005-0000002c","Uniqueid":"ua0-acc-1511536963.148","Privilege":"call,all","CallerIDName":"","content":"","ConnectedLineNum":"217","CallerIDNum":"ID400581","Cause-txt":"Normal Clearing","ConnectedLineName":"Calling...","Cause":"16"}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/ID400581@osvpi_proc_connectab_ctd-00000033;2","UniqueID":"ua0-acc-1511536963.147","Privilege":"call,all","content":"","DialStatus":"ANSWER"}, - {"Event":"SoftHangupRequest","Channel":"Local/ID400581@osvpi_proc_connectab_ctd-00000033;2","Uniqueid":"ua0-acc-1511536963.147","Privilege":"call,all","content":"","Cause":"16"}, - {"Event":"Hangup","AccountCode":"12668","Channel":"Local/ID400581@osvpi_proc_connectab_ctd-00000033;2","Uniqueid":"ua0-acc-1511536963.147","Privilege":"call,all","CallerIDName":"Calling...","content":"","ConnectedLineNum":"","CallerIDNum":"217","Cause-txt":"Normal Clearing","ConnectedLineName":"","Cause":"16"}] diff --git a/tests/fixtures/connectab/ctd-attn-xfer.json b/tests/fixtures/connectab/ctd-attn-xfer.json deleted file mode 100644 index d34521d..0000000 --- a/tests/fixtures/connectab/ctd-attn-xfer.json +++ /dev/null @@ -1,160 +0,0 @@ -[ - {"Event": "FullyBooted", "Privilege": "system,all", "content": "", "Status": "Fully Booted"}, - {"Event": "FullyBooted", "Privilege": "system,all", "content": "", "Status": "Fully Booted"}, - {"Privilege": "call,all", "Event": "Newchannel", "Channel": "Local/ID400681@osvpi_proc_connectab_ctd-000002b9;1", "Exten": "ID400681", "CallerIDNum": "", "ChannelState": "0", "CallerIDName": "", "Context": "osvpi_proc_connectab_ctd", "ChannelStateDesc": "Down", "Uniqueid": "ua0-acc-1513778720.1900", "AccountCode": "", "content": ""}, - {"Privilege": "call,all", "Event": "Newchannel", "Channel": "Local/ID400681@osvpi_proc_connectab_ctd-000002b9;2", "Exten": "ID400681", "CallerIDNum": "", "ChannelState": "4", "CallerIDName": "", "Context": "osvpi_proc_connectab_ctd", "ChannelStateDesc": "Ring", "Uniqueid": "ua0-acc-1513778720.1901", "AccountCode": "", "content": ""}, - {"Privilege": "call,all", "Event": "NewAccountCode", "Uniqueid": "ua0-acc-1513778720.1900", "AccountCode": "12668", "Channel": "Local/ID400681@osvpi_proc_connectab_ctd-000002b9;1", "content": ""}, - {"Privilege": "call,all", "Event": "NewCallerid", "Uniqueid": "ua0-acc-1513778720.1900", "CallerIDName": "", "Channel": "Local/ID400681@osvpi_proc_connectab_ctd-000002b9;1", "CallerIDNum": "", "content": "", "CID-CallingPres": "67 (Number Unavailable)"}, - {"Privilege": "call,all", "Event": "LocalBridge", "Uniqueid1": "ua0-acc-1513778720.1900", "Uniqueid2": "ua0-acc-1513778720.1901", "Exten": "ID400681", "Channel2": "Local/ID400681@osvpi_proc_connectab_ctd-000002b9;2", "Channel1": "Local/ID400681@osvpi_proc_connectab_ctd-000002b9;1", "LocalOptimization": "No", "content": "", "Context": "osvpi_proc_connectab_ctd"}, - {"Privilege": "call,all", "Event": "NewAccountCode", "Uniqueid": "ua0-acc-1513778720.1901", "OldAccountCode": "12668", "Channel": "Local/ID400681@osvpi_proc_connectab_ctd-000002b9;2", "content": "", "AccountCode": "12668"}, - {"Privilege": "call,all", "Event": "NewCallerid", "Uniqueid": "ua0-acc-1513778720.1901", "CallerIDName": "Calling...", "Channel": "Local/ID400681@osvpi_proc_connectab_ctd-000002b9;2", "CallerIDNum": "", "content": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"Privilege": "call,all", "Event": "NewCallerid", "Uniqueid": "ua0-acc-1513778720.1901", "CallerIDName": "Calling...", "Channel": "Local/ID400681@osvpi_proc_connectab_ctd-000002b9;2", "CallerIDNum": "217", "content": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"Privilege": "call,all", "Event": "Newchannel", "Channel": "Local/217@osvpi_account_call_int_permitted-000002ba;1", "Exten": "217", "CallerIDNum": "", "ChannelState": "0", "CallerIDName": "", "Context": "osvpi_account_call_int_permitted", "ChannelStateDesc": "Down", "Uniqueid": "ua0-acc-1513778720.1902", "AccountCode": "", "content": ""}, - {"Privilege": "call,all", "Event": "Newchannel", "Channel": "Local/217@osvpi_account_call_int_permitted-000002ba;2", "Exten": "217", "CallerIDNum": "", "ChannelState": "4", "CallerIDName": "", "Context": "osvpi_account_call_int_permitted", "ChannelStateDesc": "Ring", "Uniqueid": "ua0-acc-1513778720.1903", "AccountCode": "", "content": ""}, - {"Privilege": "call,all", "Event": "NewCallerid", "Uniqueid": "ua0-acc-1513778720.1902", "CallerIDName": "", "Channel": "Local/217@osvpi_account_call_int_permitted-000002ba;1", "CallerIDNum": "ID400681", "content": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"Privilege": "call,all", "Event": "LocalBridge", "Uniqueid1": "ua0-acc-1513778720.1902", "Uniqueid2": "ua0-acc-1513778720.1903", "Exten": "217", "Channel2": "Local/217@osvpi_account_call_int_permitted-000002ba;2", "Channel1": "Local/217@osvpi_account_call_int_permitted-000002ba;1", "LocalOptimization": "Yes", "content": "", "Context": "osvpi_account_call_int_permitted"}, - {"Privilege": "call,all", "Event": "Dial", "ConnectedLineNum": "", "CallerIDNum": "217", "Dialstring": "217@osvpi_account_call_int_permitted", "Channel": "Local/ID400681@osvpi_proc_connectab_ctd-000002b9;2", "CallerIDName": "Calling...", "DestUniqueID": "ua0-acc-1513778720.1902", "Destination": "Local/217@osvpi_account_call_int_permitted-000002ba;1", "content": "", "ConnectedLineName": "", "UniqueID": "ua0-acc-1513778720.1901", "SubEvent": "Begin"}, - {"Privilege": "call,all", "Event": "Newchannel", "Channel": "Local/ID730651@osvpi_route_phoneaccount-000002bb;1", "Exten": "ID730651", "CallerIDNum": "", "ChannelState": "0", "CallerIDName": "", "Context": "osvpi_route_phoneaccount", "ChannelStateDesc": "Down", "Uniqueid": "ua0-acc-1513778720.1904", "AccountCode": "", "content": ""}, - {"Privilege": "call,all", "Event": "Newchannel", "Channel": "Local/ID730651@osvpi_route_phoneaccount-000002bb;2", "Exten": "ID730651", "CallerIDNum": "", "ChannelState": "4", "CallerIDName": "", "Context": "osvpi_route_phoneaccount", "ChannelStateDesc": "Ring", "Uniqueid": "ua0-acc-1513778720.1905", "AccountCode": "", "content": ""}, - {"Privilege": "call,all", "Event": "NewCallerid", "Uniqueid": "ua0-acc-1513778720.1904", "CallerIDName": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-000002bb;1", "CallerIDNum": "217", "content": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"Privilege": "call,all", "Event": "LocalBridge", "Uniqueid1": "ua0-acc-1513778720.1904", "Uniqueid2": "ua0-acc-1513778720.1905", "Exten": "ID730651", "Channel2": "Local/ID730651@osvpi_route_phoneaccount-000002bb;2", "Channel1": "Local/ID730651@osvpi_route_phoneaccount-000002bb;1", "LocalOptimization": "Yes", "content": "", "Context": "osvpi_route_phoneaccount"}, - {"Privilege": "call,all", "Event": "Dial", "ConnectedLineNum": "ID400681", "CallerIDNum": "217", "Dialstring": "ID730651@osvpi_route_phoneaccount", "Channel": "Local/217@osvpi_account_call_int_permitted-000002ba;2", "CallerIDName": "Calling...", "DestUniqueID": "ua0-acc-1513778720.1904", "Destination": "Local/ID730651@osvpi_route_phoneaccount-000002bb;1", "content": "", "ConnectedLineName": "", "UniqueID": "ua0-acc-1513778720.1903", "SubEvent": "Begin"}, - {"Privilege": "call,all", "Event": "Newchannel", "Channel": "SIP/126680005-000001fa", "Exten": "", "CallerIDNum": "", "ChannelState": "0", "CallerIDName": "", "Context": "osvpi_account", "ChannelStateDesc": "Down", "Uniqueid": "ua0-acc-1513778720.1906", "AccountCode": "126680005", "content": ""}, - {"Privilege": "call,all", "Event": "NewCallerid", "Uniqueid": "ua0-acc-1513778720.1906", "CallerIDName": "", "Channel": "SIP/126680005-000001fa", "CallerIDNum": "217", "content": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"Privilege": "call,all", "Event": "Dial", "ConnectedLineNum": "217", "CallerIDNum": "217", "Dialstring": "126680005/126680005/195.35.115.203!!217", "Channel": "Local/ID730651@osvpi_route_phoneaccount-000002bb;2", "CallerIDName": "Calling...", "DestUniqueID": "ua0-acc-1513778720.1906", "Destination": "SIP/126680005-000001fa", "content": "", "ConnectedLineName": "", "UniqueID": "ua0-acc-1513778720.1905", "SubEvent": "Begin"}, - {"Privilege": "call,all", "Event": "Newstate", "ConnectedLineNum": "217", "ChannelState": "5", "Uniqueid": "ua0-acc-1513778720.1906", "content": "", "ConnectedLineName": "Calling...", "CallerIDName": "", "Channel": "SIP/126680005-000001fa", "CallerIDNum": "217", "ChannelStateDesc": "Ringing"}, - {"Privilege": "call,all", "Event": "Newstate", "ConnectedLineNum": "217", "ChannelState": "5", "Uniqueid": "ua0-acc-1513778720.1904", "content": "", "ConnectedLineName": "Calling...", "CallerIDName": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-000002bb;1", "CallerIDNum": "217", "ChannelStateDesc": "Ringing"}, - {"Privilege": "call,all", "Event": "Newstate", "ConnectedLineNum": "217", "ChannelState": "5", "Uniqueid": "ua0-acc-1513778720.1902", "content": "", "ConnectedLineName": "Calling...", "CallerIDName": "", "Channel": "Local/217@osvpi_account_call_int_permitted-000002ba;1", "CallerIDNum": "ID400681", "ChannelStateDesc": "Ringing"}, - {"Privilege": "call,all", "Event": "Newstate", "ConnectedLineNum": "", "ChannelState": "5", "Uniqueid": "ua0-acc-1513778720.1900", "content": "", "ConnectedLineName": "", "CallerIDName": "", "Channel": "Local/ID400681@osvpi_proc_connectab_ctd-000002b9;1", "CallerIDNum": "", "ChannelStateDesc": "Ringing"}, - {"Privilege": "call,all", "Event": "Newstate", "ConnectedLineNum": "217", "ChannelState": "6", "Uniqueid": "ua0-acc-1513778720.1906", "content": "", "ConnectedLineName": "Calling...", "CallerIDName": "", "Channel": "SIP/126680005-000001fa", "CallerIDNum": "217", "ChannelStateDesc": "Up"}, - {"Privilege": "call,all", "Event": "Newstate", "ConnectedLineNum": "217", "ChannelState": "6", "Uniqueid": "ua0-acc-1513778720.1905", "content": "", "ConnectedLineName": "", "CallerIDName": "Calling...", "Channel": "Local/ID730651@osvpi_route_phoneaccount-000002bb;2", "CallerIDNum": "217", "ChannelStateDesc": "Up"}, - {"Privilege": "call,all", "Event": "NewAccountCode", "Uniqueid": "ua0-acc-1513778720.1906", "OldAccountCode": "12668", "Channel": "SIP/126680005-000001fa", "content": "", "AccountCode": "12668"}, - {"Privilege": "call,all", "Event": "Bridge", "Uniqueid1": "ua0-acc-1513778720.1905", "CallerID2": "217", "Uniqueid2": "ua0-acc-1513778720.1906", "CallerID1": "217", "Channel2": "SIP/126680005-000001fa", "Channel1": "Local/ID730651@osvpi_route_phoneaccount-000002bb;2", "Bridgetype": "core", "Bridgestate": "Link", "content": ""}, - {"Privilege": "call,all", "Event": "Newstate", "ConnectedLineNum": "217", "ChannelState": "6", "Uniqueid": "ua0-acc-1513778720.1904", "content": "", "ConnectedLineName": "Calling...", "CallerIDName": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-000002bb;1", "CallerIDNum": "217", "ChannelStateDesc": "Up"}, - {"Privilege": "call,all", "Event": "Newstate", "ConnectedLineNum": "ID400681", "ChannelState": "6", "Uniqueid": "ua0-acc-1513778720.1903", "content": "", "ConnectedLineName": "", "CallerIDName": "Calling...", "Channel": "Local/217@osvpi_account_call_int_permitted-000002ba;2", "CallerIDNum": "217", "ChannelStateDesc": "Up"}, - {"Privilege": "call,all", "Event": "NewAccountCode", "Uniqueid": "ua0-acc-1513778720.1904", "OldAccountCode": "12668", "Channel": "Local/ID730651@osvpi_route_phoneaccount-000002bb;1", "content": "", "AccountCode": "12668"}, - {"Privilege": "call,all", "Event": "Bridge", "Uniqueid1": "ua0-acc-1513778720.1903", "CallerID2": "217", "Uniqueid2": "ua0-acc-1513778720.1904", "CallerID1": "217", "Channel2": "Local/ID730651@osvpi_route_phoneaccount-000002bb;1", "Channel1": "Local/217@osvpi_account_call_int_permitted-000002ba;2", "Bridgetype": "core", "Bridgestate": "Link", "content": ""}, - {"Privilege": "call,all", "Event": "Newstate", "ConnectedLineNum": "217", "ChannelState": "6", "Uniqueid": "ua0-acc-1513778720.1902", "content": "", "ConnectedLineName": "Calling...", "CallerIDName": "", "Channel": "Local/217@osvpi_account_call_int_permitted-000002ba;1", "CallerIDNum": "ID400681", "ChannelStateDesc": "Up"}, - {"Privilege": "call,all", "Event": "Newstate", "ConnectedLineNum": "", "ChannelState": "6", "Uniqueid": "ua0-acc-1513778720.1901", "content": "", "ConnectedLineName": "", "CallerIDName": "Calling...", "Channel": "Local/ID400681@osvpi_proc_connectab_ctd-000002b9;2", "CallerIDNum": "217", "ChannelStateDesc": "Up"}, - {"Privilege": "call,all", "Event": "NewAccountCode", "Uniqueid": "ua0-acc-1513778720.1902", "OldAccountCode": "12668", "Channel": "Local/217@osvpi_account_call_int_permitted-000002ba;1", "content": "", "AccountCode": "12668"}, - {"Privilege": "call,all", "Event": "Bridge", "Uniqueid1": "ua0-acc-1513778720.1901", "CallerID2": "ID400681", "Uniqueid2": "ua0-acc-1513778720.1902", "CallerID1": "217", "Channel2": "Local/217@osvpi_account_call_int_permitted-000002ba;1", "Channel1": "Local/ID400681@osvpi_proc_connectab_ctd-000002b9;2", "Bridgetype": "core", "Bridgestate": "Link", "content": ""}, - {"Privilege": "call,all", "Event": "Newstate", "ConnectedLineNum": "", "ChannelState": "6", "Uniqueid": "ua0-acc-1513778720.1900", "content": "", "ConnectedLineName": "", "CallerIDName": "", "Channel": "Local/ID400681@osvpi_proc_connectab_ctd-000002b9;1", "CallerIDNum": "", "ChannelStateDesc": "Up"}, - {"Privilege": "call,all", "Event": "NewAccountCode", "Uniqueid": "ua0-acc-1513778720.1900", "OldAccountCode": "12668", "Channel": "Local/ID400681@osvpi_proc_connectab_ctd-000002b9;1", "content": "", "AccountCode": "12668"}, - {"Privilege": "call,all", "Event": "Masquerade", "Clone": "SIP/126680005-000001fa", "CloneState": "Up", "OriginalState": "Up", "content": "", "Original": "Local/ID730651@osvpi_route_phoneaccount-000002bb;1"}, - {"Privilege": "call,all", "Event": "Rename", "Uniqueid": "ua0-acc-1513778720.1906", "Newname": "SIP/126680005-000001fa", "Channel": "SIP/126680005-000001fa", "content": ""}, - {"Privilege": "call,all", "Event": "Rename", "Uniqueid": "ua0-acc-1513778720.1904", "Newname": "SIP/126680005-000001fa", "Channel": "Local/ID730651@osvpi_route_phoneaccount-000002bb;1", "content": ""}, - {"Privilege": "call,all", "Event": "Rename", "Uniqueid": "ua0-acc-1513778720.1906", "Newname": "Local/ID730651@osvpi_route_phoneaccount-000002bb;1", "Channel": "SIP/126680005-000001fa", "content": ""}, - {"Privilege": "call,all", "Event": "NewCallerid", "Uniqueid": "ua0-acc-1513778720.1904", "CallerIDName": "", "Channel": "SIP/126680005-000001fa", "CallerIDNum": "217", "content": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"Privilege": "call,all", "Event": "Bridge", "Uniqueid1": "ua0-acc-1513778720.1905", "CallerID2": "217", "Uniqueid2": "ua0-acc-1513778720.1906", "CallerID1": "217", "Channel2": "Local/ID730651@osvpi_route_phoneaccount-000002bb;1", "Channel1": "Local/ID730651@osvpi_route_phoneaccount-000002bb;2", "Bridgetype": "core", "Bridgestate": "Unlink", "content": ""}, - {"Privilege": "call,all", "Event": "Masquerade", "Clone": "SIP/126680005-000001fa", "CloneState": "Up", "OriginalState": "Up", "content": "", "Original": "Local/217@osvpi_account_call_int_permitted-000002ba;1"}, - {"Privilege": "call,all", "Event": "Rename", "Uniqueid": "ua0-acc-1513778720.1904", "Newname": "SIP/126680005-000001fa", "Channel": "SIP/126680005-000001fa", "content": ""}, - {"Privilege": "call,all", "Event": "Rename", "Uniqueid": "ua0-acc-1513778720.1902", "Newname": "SIP/126680005-000001fa", "Channel": "Local/217@osvpi_account_call_int_permitted-000002ba;1", "content": ""}, - {"Privilege": "call,all", "Event": "Rename", "Uniqueid": "ua0-acc-1513778720.1904", "Newname": "Local/217@osvpi_account_call_int_permitted-000002ba;1", "Channel": "SIP/126680005-000001fa", "content": ""}, - {"Privilege": "call,all", "Event": "NewCallerid", "Uniqueid": "ua0-acc-1513778720.1902", "CallerIDName": "", "Channel": "SIP/126680005-000001fa", "CallerIDNum": "ID400681", "content": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"Privilege": "call,all", "Event": "Bridge", "Uniqueid1": "ua0-acc-1513778720.1903", "CallerID2": "217", "Uniqueid2": "ua0-acc-1513778720.1904", "CallerID1": "217", "Channel2": "Local/217@osvpi_account_call_int_permitted-000002ba;1", "Channel1": "Local/217@osvpi_account_call_int_permitted-000002ba;2", "Bridgetype": "core", "Bridgestate": "Unlink", "content": ""}, - {"Privilege": "call,all", "Event": "Hangup", "ConnectedLineNum": "217", "CallerIDNum": "217", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730651@osvpi_route_phoneaccount-000002bb;1", "CallerIDName": "", "ConnectedLineName": "Calling...", "Uniqueid": "ua0-acc-1513778720.1906", "AccountCode": "12668", "Cause": "16", "content": ""}, - {"Privilege": "call,all", "Event": "Dial", "DialStatus": "ANSWER", "Channel": "Local/ID730651@osvpi_route_phoneaccount-000002bb;2", "SubEvent": "End", "UniqueID": "ua0-acc-1513778720.1905", "content": ""}, - {"Privilege": "call,all", "Event": "Hangup", "ConnectedLineNum": "217", "CallerIDNum": "217", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730651@osvpi_route_phoneaccount-000002bb;2", "CallerIDName": "Calling...", "ConnectedLineName": "", "Uniqueid": "ua0-acc-1513778720.1905", "AccountCode": "12668", "Cause": "16", "content": ""}, - {"Privilege": "call,all", "Event": "Hangup", "ConnectedLineNum": "217", "CallerIDNum": "217", "Cause-txt": "Normal Clearing", "Channel": "Local/217@osvpi_account_call_int_permitted-000002ba;1", "CallerIDName": "", "ConnectedLineName": "Calling...", "Uniqueid": "ua0-acc-1513778720.1904", "AccountCode": "12668", "Cause": "16", "content": ""}, - {"Privilege": "call,all", "Event": "Dial", "DialStatus": "ANSWER", "Channel": "Local/217@osvpi_account_call_int_permitted-000002ba;2", "SubEvent": "End", "UniqueID": "ua0-acc-1513778720.1903", "content": ""}, - {"Privilege": "call,all", "Event": "Hangup", "ConnectedLineNum": "ID400681", "CallerIDNum": "217", "Cause-txt": "Normal Clearing", "Channel": "Local/217@osvpi_account_call_int_permitted-000002ba;2", "CallerIDName": "Calling...", "ConnectedLineName": "", "Uniqueid": "ua0-acc-1513778720.1903", "AccountCode": "12668", "Cause": "16", "content": ""}, - {"Privilege": "call,all", "Event": "NewCallerid", "Uniqueid": "ua0-acc-1513778720.1900", "CallerIDName": "", "Channel": "Local/ID400681@osvpi_proc_connectab_ctd-000002b9;1", "CallerIDNum": "217", "content": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"Privilege": "call,all", "Event": "Newchannel", "Channel": "Local/218@osvpi_account_call_int_permitted-000002bc;1", "Exten": "218", "CallerIDNum": "", "ChannelState": "0", "CallerIDName": "", "Context": "osvpi_account_call_int_permitted", "ChannelStateDesc": "Down", "Uniqueid": "ua0-acc-1513778722.1907", "AccountCode": "", "content": ""}, - {"Privilege": "call,all", "Event": "Newchannel", "Channel": "Local/218@osvpi_account_call_int_permitted-000002bc;2", "Exten": "218", "CallerIDNum": "", "ChannelState": "4", "CallerIDName": "", "Context": "osvpi_account_call_int_permitted", "ChannelStateDesc": "Ring", "Uniqueid": "ua0-acc-1513778722.1908", "AccountCode": "", "content": ""}, - {"Privilege": "call,all", "Event": "NewCallerid", "Uniqueid": "ua0-acc-1513778722.1907", "CallerIDName": "", "Channel": "Local/218@osvpi_account_call_int_permitted-000002bc;1", "CallerIDNum": "ID400681", "content": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"Privilege": "call,all", "Event": "LocalBridge", "Uniqueid1": "ua0-acc-1513778722.1907", "Uniqueid2": "ua0-acc-1513778722.1908", "Exten": "218", "Channel2": "Local/218@osvpi_account_call_int_permitted-000002bc;2", "Channel1": "Local/218@osvpi_account_call_int_permitted-000002bc;1", "LocalOptimization": "Yes", "content": "", "Context": "osvpi_account_call_int_permitted"}, - {"Privilege": "call,all", "Event": "Dial", "ConnectedLineNum": "", "CallerIDNum": "217", "Dialstring": "218@osvpi_account_call_int_permitted", "Channel": "Local/ID400681@osvpi_proc_connectab_ctd-000002b9;1", "CallerIDName": "", "DestUniqueID": "ua0-acc-1513778722.1907", "Destination": "Local/218@osvpi_account_call_int_permitted-000002bc;1", "content": "", "ConnectedLineName": "", "UniqueID": "ua0-acc-1513778720.1900", "SubEvent": "Begin"}, - {"Privilege": "call,all", "Event": "Newchannel", "Channel": "Local/ID730661@osvpi_route_phoneaccount-000002bd;1", "Exten": "ID730661", "CallerIDNum": "", "ChannelState": "0", "CallerIDName": "", "Context": "osvpi_route_phoneaccount", "ChannelStateDesc": "Down", "Uniqueid": "ua0-acc-1513778722.1909", "AccountCode": "", "content": ""}, - {"Privilege": "call,all", "Event": "Newchannel", "Channel": "Local/ID730661@osvpi_route_phoneaccount-000002bd;2", "Exten": "ID730661", "CallerIDNum": "", "ChannelState": "4", "CallerIDName": "", "Context": "osvpi_route_phoneaccount", "ChannelStateDesc": "Ring", "Uniqueid": "ua0-acc-1513778722.1910", "AccountCode": "", "content": ""}, - {"Privilege": "call,all", "Event": "NewCallerid", "Uniqueid": "ua0-acc-1513778722.1909", "CallerIDName": "", "Channel": "Local/ID730661@osvpi_route_phoneaccount-000002bd;1", "CallerIDNum": "218", "content": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"Privilege": "call,all", "Event": "LocalBridge", "Uniqueid1": "ua0-acc-1513778722.1909", "Uniqueid2": "ua0-acc-1513778722.1910", "Exten": "ID730661", "Channel2": "Local/ID730661@osvpi_route_phoneaccount-000002bd;2", "Channel1": "Local/ID730661@osvpi_route_phoneaccount-000002bd;1", "LocalOptimization": "Yes", "content": "", "Context": "osvpi_route_phoneaccount"}, - {"Privilege": "call,all", "Event": "Dial", "ConnectedLineNum": "ID400681", "CallerIDNum": "217", "Dialstring": "ID730661@osvpi_route_phoneaccount", "Channel": "Local/218@osvpi_account_call_int_permitted-000002bc;2", "CallerIDName": "", "DestUniqueID": "ua0-acc-1513778722.1909", "Destination": "Local/ID730661@osvpi_route_phoneaccount-000002bd;1", "content": "", "ConnectedLineName": "", "UniqueID": "ua0-acc-1513778722.1908", "SubEvent": "Begin"}, - {"Privilege": "call,all", "Event": "Newchannel", "Channel": "SIP/126680010-000001fb", "Exten": "", "CallerIDNum": "", "ChannelState": "0", "CallerIDName": "", "Context": "osvpi_account", "ChannelStateDesc": "Down", "Uniqueid": "ua0-acc-1513778723.1911", "AccountCode": "126680010", "content": ""}, - {"Privilege": "call,all", "Event": "NewCallerid", "Uniqueid": "ua0-acc-1513778723.1911", "CallerIDName": "", "Channel": "SIP/126680010-000001fb", "CallerIDNum": "218", "content": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"Privilege": "call,all", "Event": "Dial", "ConnectedLineNum": "218", "CallerIDNum": "217", "Dialstring": "126680010/126680010/195.35.115.203!!217", "Channel": "Local/ID730661@osvpi_route_phoneaccount-000002bd;2", "CallerIDName": "", "DestUniqueID": "ua0-acc-1513778723.1911", "Destination": "SIP/126680010-000001fb", "content": "", "ConnectedLineName": "", "UniqueID": "ua0-acc-1513778722.1910", "SubEvent": "Begin"}, - {"Privilege": "call,all", "Event": "Newstate", "ConnectedLineNum": "217", "ChannelState": "5", "Uniqueid": "ua0-acc-1513778723.1911", "content": "", "ConnectedLineName": "", "CallerIDName": "", "Channel": "SIP/126680010-000001fb", "CallerIDNum": "218", "ChannelStateDesc": "Ringing"}, - {"Privilege": "call,all", "Event": "Newstate", "ConnectedLineNum": "217", "ChannelState": "5", "Uniqueid": "ua0-acc-1513778722.1909", "content": "", "ConnectedLineName": "", "CallerIDName": "", "Channel": "Local/ID730661@osvpi_route_phoneaccount-000002bd;1", "CallerIDNum": "218", "ChannelStateDesc": "Ringing"}, - {"Privilege": "call,all", "Event": "Newstate", "ConnectedLineNum": "217", "ChannelState": "5", "Uniqueid": "ua0-acc-1513778722.1907", "content": "", "ConnectedLineName": "", "CallerIDName": "", "Channel": "Local/218@osvpi_account_call_int_permitted-000002bc;1", "CallerIDNum": "ID400681", "ChannelStateDesc": "Ringing"}, - {"Privilege": "call,all", "Event": "Newstate", "ConnectedLineNum": "217", "ChannelState": "6", "Uniqueid": "ua0-acc-1513778723.1911", "content": "", "ConnectedLineName": "", "CallerIDName": "", "Channel": "SIP/126680010-000001fb", "CallerIDNum": "218", "ChannelStateDesc": "Up"}, - {"Privilege": "call,all", "Event": "Newstate", "ConnectedLineNum": "218", "ChannelState": "6", "Uniqueid": "ua0-acc-1513778722.1910", "content": "", "ConnectedLineName": "", "CallerIDName": "", "Channel": "Local/ID730661@osvpi_route_phoneaccount-000002bd;2", "CallerIDNum": "217", "ChannelStateDesc": "Up"}, - {"Privilege": "call,all", "Event": "NewAccountCode", "Uniqueid": "ua0-acc-1513778723.1911", "OldAccountCode": "12668", "Channel": "SIP/126680010-000001fb", "content": "", "AccountCode": "12668"}, - {"Privilege": "call,all", "Event": "Bridge", "Uniqueid1": "ua0-acc-1513778722.1910", "CallerID2": "218", "Uniqueid2": "ua0-acc-1513778723.1911", "CallerID1": "217", "Channel2": "SIP/126680010-000001fb", "Channel1": "Local/ID730661@osvpi_route_phoneaccount-000002bd;2", "Bridgetype": "core", "Bridgestate": "Link", "content": ""}, - {"Privilege": "call,all", "Event": "Newstate", "ConnectedLineNum": "217", "ChannelState": "6", "Uniqueid": "ua0-acc-1513778722.1909", "content": "", "ConnectedLineName": "", "CallerIDName": "", "Channel": "Local/ID730661@osvpi_route_phoneaccount-000002bd;1", "CallerIDNum": "218", "ChannelStateDesc": "Up"}, - {"Privilege": "call,all", "Event": "Newstate", "ConnectedLineNum": "ID400681", "ChannelState": "6", "Uniqueid": "ua0-acc-1513778722.1908", "content": "", "ConnectedLineName": "", "CallerIDName": "", "Channel": "Local/218@osvpi_account_call_int_permitted-000002bc;2", "CallerIDNum": "217", "ChannelStateDesc": "Up"}, - {"Privilege": "call,all", "Event": "NewAccountCode", "Uniqueid": "ua0-acc-1513778722.1909", "OldAccountCode": "12668", "Channel": "Local/ID730661@osvpi_route_phoneaccount-000002bd;1", "content": "", "AccountCode": "12668"}, - {"Privilege": "call,all", "Event": "Bridge", "Uniqueid1": "ua0-acc-1513778722.1908", "CallerID2": "218", "Uniqueid2": "ua0-acc-1513778722.1909", "CallerID1": "217", "Channel2": "Local/ID730661@osvpi_route_phoneaccount-000002bd;1", "Channel1": "Local/218@osvpi_account_call_int_permitted-000002bc;2", "Bridgetype": "core", "Bridgestate": "Link", "content": ""}, - {"Privilege": "call,all", "Event": "Newstate", "ConnectedLineNum": "217", "ChannelState": "6", "Uniqueid": "ua0-acc-1513778722.1907", "content": "", "ConnectedLineName": "", "CallerIDName": "", "Channel": "Local/218@osvpi_account_call_int_permitted-000002bc;1", "CallerIDNum": "ID400681", "ChannelStateDesc": "Up"}, - {"Privilege": "call,all", "Event": "NewAccountCode", "Uniqueid": "ua0-acc-1513778722.1907", "OldAccountCode": "12668", "Channel": "Local/218@osvpi_account_call_int_permitted-000002bc;1", "content": "", "AccountCode": "12668"}, - {"Privilege": "call,all", "Event": "Bridge", "Uniqueid1": "ua0-acc-1513778720.1900", "CallerID2": "ID400681", "Uniqueid2": "ua0-acc-1513778722.1907", "CallerID1": "217", "Channel2": "Local/218@osvpi_account_call_int_permitted-000002bc;1", "Channel1": "Local/ID400681@osvpi_proc_connectab_ctd-000002b9;1", "Bridgetype": "core", "Bridgestate": "Link", "content": ""}, - {"Privilege": "call,all", "Event": "Masquerade", "Clone": "SIP/126680010-000001fb", "CloneState": "Up", "OriginalState": "Up", "content": "", "Original": "Local/ID730661@osvpi_route_phoneaccount-000002bd;1"}, - {"Privilege": "call,all", "Event": "Rename", "Uniqueid": "ua0-acc-1513778723.1911", "Newname": "SIP/126680010-000001fb", "Channel": "SIP/126680010-000001fb", "content": ""}, - {"Privilege": "call,all", "Event": "Rename", "Uniqueid": "ua0-acc-1513778722.1909", "Newname": "SIP/126680010-000001fb", "Channel": "Local/ID730661@osvpi_route_phoneaccount-000002bd;1", "content": ""}, - {"Privilege": "call,all", "Event": "Rename", "Uniqueid": "ua0-acc-1513778723.1911", "Newname": "Local/ID730661@osvpi_route_phoneaccount-000002bd;1", "Channel": "SIP/126680010-000001fb", "content": ""}, - {"Privilege": "call,all", "Event": "NewCallerid", "Uniqueid": "ua0-acc-1513778722.1909", "CallerIDName": "", "Channel": "SIP/126680010-000001fb", "CallerIDNum": "218", "content": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"Privilege": "call,all", "Event": "Bridge", "Uniqueid1": "ua0-acc-1513778722.1910", "CallerID2": "218", "Uniqueid2": "ua0-acc-1513778723.1911", "CallerID1": "217", "Channel2": "Local/ID730661@osvpi_route_phoneaccount-000002bd;1", "Channel1": "Local/ID730661@osvpi_route_phoneaccount-000002bd;2", "Bridgetype": "core", "Bridgestate": "Unlink", "content": ""}, - {"Privilege": "call,all", "Event": "Masquerade", "Clone": "SIP/126680010-000001fb", "CloneState": "Up", "OriginalState": "Up", "content": "", "Original": "Local/218@osvpi_account_call_int_permitted-000002bc;1"}, - {"Privilege": "call,all", "Event": "Rename", "Uniqueid": "ua0-acc-1513778722.1909", "Newname": "SIP/126680010-000001fb", "Channel": "SIP/126680010-000001fb", "content": ""}, - {"Privilege": "call,all", "Event": "Rename", "Uniqueid": "ua0-acc-1513778722.1907", "Newname": "SIP/126680010-000001fb", "Channel": "Local/218@osvpi_account_call_int_permitted-000002bc;1", "content": ""}, - {"Privilege": "call,all", "Event": "Rename", "Uniqueid": "ua0-acc-1513778722.1909", "Newname": "Local/218@osvpi_account_call_int_permitted-000002bc;1", "Channel": "SIP/126680010-000001fb", "content": ""}, - {"Privilege": "call,all", "Event": "NewCallerid", "Uniqueid": "ua0-acc-1513778722.1907", "CallerIDName": "", "Channel": "SIP/126680010-000001fb", "CallerIDNum": "ID400681", "content": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"Privilege": "call,all", "Event": "Bridge", "Uniqueid1": "ua0-acc-1513778722.1908", "CallerID2": "218", "Uniqueid2": "ua0-acc-1513778722.1909", "CallerID1": "217", "Channel2": "Local/218@osvpi_account_call_int_permitted-000002bc;1", "Channel1": "Local/218@osvpi_account_call_int_permitted-000002bc;2", "Bridgetype": "core", "Bridgestate": "Unlink", "content": ""}, - {"Privilege": "call,all", "Event": "Hangup", "ConnectedLineNum": "217", "CallerIDNum": "218", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730661@osvpi_route_phoneaccount-000002bd;1", "CallerIDName": "", "ConnectedLineName": "", "Uniqueid": "ua0-acc-1513778723.1911", "AccountCode": "12668", "Cause": "16", "content": ""}, - {"Privilege": "call,all", "Event": "Dial", "DialStatus": "ANSWER", "Channel": "Local/ID730661@osvpi_route_phoneaccount-000002bd;2", "SubEvent": "End", "UniqueID": "ua0-acc-1513778722.1910", "content": ""}, - {"Privilege": "call,all", "Event": "Hangup", "ConnectedLineNum": "218", "CallerIDNum": "217", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730661@osvpi_route_phoneaccount-000002bd;2", "CallerIDName": "", "ConnectedLineName": "", "Uniqueid": "ua0-acc-1513778722.1910", "AccountCode": "12668", "Cause": "16", "content": ""}, - {"Privilege": "call,all", "Event": "Hangup", "ConnectedLineNum": "217", "CallerIDNum": "218", "Cause-txt": "Normal Clearing", "Channel": "Local/218@osvpi_account_call_int_permitted-000002bc;1", "CallerIDName": "", "ConnectedLineName": "", "Uniqueid": "ua0-acc-1513778722.1909", "AccountCode": "12668", "Cause": "16", "content": ""}, - {"Privilege": "call,all", "Event": "Dial", "DialStatus": "ANSWER", "Channel": "Local/218@osvpi_account_call_int_permitted-000002bc;2", "SubEvent": "End", "UniqueID": "ua0-acc-1513778722.1908", "content": ""}, - {"Privilege": "call,all", "Event": "Hangup", "ConnectedLineNum": "ID400681", "CallerIDNum": "217", "Cause-txt": "Normal Clearing", "Channel": "Local/218@osvpi_account_call_int_permitted-000002bc;2", "CallerIDName": "", "ConnectedLineName": "", "Uniqueid": "ua0-acc-1513778722.1908", "AccountCode": "12668", "Cause": "16", "content": ""}, - {"Privilege": "call,all", "Event": "Bridge", "Uniqueid1": "ua0-acc-1513778720.1901", "CallerID2": "ID400681", "Uniqueid2": "ua0-acc-1513778720.1902", "CallerID1": "217", "Channel2": "SIP/126680005-000001fa", "Channel1": "Local/ID400681@osvpi_proc_connectab_ctd-000002b9;2", "Bridgetype": "core", "Bridgestate": "Unlink", "content": ""}, - {"Privilege": "call,all", "Event": "Bridge", "Uniqueid1": "ua0-acc-1513778720.1901", "CallerID2": "ID400681", "Uniqueid2": "ua0-acc-1513778720.1902", "CallerID1": "217", "Channel2": "SIP/126680005-000001fa", "Channel1": "Local/ID400681@osvpi_proc_connectab_ctd-000002b9;2", "Bridgetype": "core", "Bridgestate": "Link", "content": ""}, - {"Privilege": "call,all", "Event": "Newchannel", "Channel": "SIP/126680005-000001fc", "Exten": "0612345678", "CallerIDNum": "126680005", "ChannelState": "0", "CallerIDName": "Test SPA 1", "Context": "osvpi_account", "ChannelStateDesc": "Down", "Uniqueid": "ua0-acc-1513778732.1912", "AccountCode": "126680005", "content": ""}, - {"Privilege": "call,all", "Event": "Newstate", "ConnectedLineNum": "", "ChannelState": "4", "Uniqueid": "ua0-acc-1513778732.1912", "content": "", "ConnectedLineName": "", "CallerIDName": "Test SPA 1", "Channel": "SIP/126680005-000001fc", "CallerIDNum": "126680005", "ChannelStateDesc": "Ring"}, - {"Privilege": "call,all", "Event": "NewCallerid", "Uniqueid": "ua0-acc-1513778732.1912", "CallerIDName": "Test SPA 1", "Channel": "SIP/126680005-000001fc", "CallerIDNum": "+31853030900", "content": "", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)"}, - {"Privilege": "call,all", "Event": "NewCallerid", "Uniqueid": "ua0-acc-1513778732.1912", "CallerIDName": "", "Channel": "SIP/126680005-000001fc", "CallerIDNum": "+31853030900", "content": "", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)"}, - {"Privilege": "call,all", "Event": "Newchannel", "Channel": "Local/+31612345678@world_out-000002be;1", "Exten": "+31612345678", "CallerIDNum": "", "ChannelState": "0", "CallerIDName": "", "Context": "world_out", "ChannelStateDesc": "Down", "Uniqueid": "ua0-acc-1513778732.1913", "AccountCode": "", "content": ""}, - {"Privilege": "call,all", "Event": "Newchannel", "Channel": "Local/+31612345678@world_out-000002be;2", "Exten": "+31612345678", "CallerIDNum": "", "ChannelState": "4", "CallerIDName": "", "Context": "world_out", "ChannelStateDesc": "Ring", "Uniqueid": "ua0-acc-1513778732.1914", "AccountCode": "", "content": ""}, - {"Privilege": "call,all", "Event": "NewCallerid", "Uniqueid": "ua0-acc-1513778732.1913", "CallerIDName": "", "Channel": "Local/+31612345678@world_out-000002be;1", "CallerIDNum": "+31612345678", "content": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"Privilege": "call,all", "Event": "LocalBridge", "Uniqueid1": "ua0-acc-1513778732.1913", "Uniqueid2": "ua0-acc-1513778732.1914", "Exten": "+31612345678", "Channel2": "Local/+31612345678@world_out-000002be;2", "Channel1": "Local/+31612345678@world_out-000002be;1", "LocalOptimization": "Yes", "content": "", "Context": "world_out"}, - {"Privilege": "call,all", "Event": "Dial", "ConnectedLineNum": "", "CallerIDNum": "+31853030900", "Dialstring": "+31612345678@world_out", "Channel": "SIP/126680005-000001fc", "CallerIDName": "", "DestUniqueID": "ua0-acc-1513778732.1913", "Destination": "Local/+31612345678@world_out-000002be;1", "content": "", "ConnectedLineName": "", "UniqueID": "ua0-acc-1513778732.1912", "SubEvent": "Begin"}, - {"Privilege": "call,all", "Event": "Newchannel", "Channel": "SIP/voipgrid-siproute-dev-000001fd", "Exten": "", "CallerIDNum": "", "ChannelState": "0", "CallerIDName": "", "Context": "voipgrid_in", "ChannelStateDesc": "Down", "Uniqueid": "ua0-acc-1513778732.1915", "AccountCode": "", "content": ""}, - {"Privilege": "call,all", "Event": "NewCallerid", "Uniqueid": "ua0-acc-1513778732.1915", "CallerIDName": "", "Channel": "SIP/voipgrid-siproute-dev-000001fd", "CallerIDNum": "+31612345678", "content": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"Privilege": "call,all", "Event": "Dial", "ConnectedLineNum": "+31612345678", "CallerIDNum": "+31853030900", "Dialstring": "+31612345678@voipgrid-siproute-dev", "Channel": "Local/+31612345678@world_out-000002be;2", "CallerIDName": "", "DestUniqueID": "ua0-acc-1513778732.1915", "Destination": "SIP/voipgrid-siproute-dev-000001fd", "content": "", "ConnectedLineName": "", "UniqueID": "ua0-acc-1513778732.1914", "SubEvent": "Begin"}, - {"Privilege": "call,all", "Event": "Newstate", "ConnectedLineNum": "+31853030900", "ChannelState": "5", "Uniqueid": "ua0-acc-1513778732.1915", "content": "", "ConnectedLineName": "", "CallerIDName": "", "Channel": "SIP/voipgrid-siproute-dev-000001fd", "CallerIDNum": "+31612345678", "ChannelStateDesc": "Ringing"}, - {"Privilege": "call,all", "Event": "Newstate", "ConnectedLineNum": "+31853030900", "ChannelState": "5", "Uniqueid": "ua0-acc-1513778732.1913", "content": "", "ConnectedLineName": "", "CallerIDName": "", "Channel": "Local/+31612345678@world_out-000002be;1", "CallerIDNum": "+31612345678", "ChannelStateDesc": "Ringing"}, - {"Privilege": "call,all", "Event": "Newstate", "ConnectedLineNum": "+31853030900", "ChannelState": "6", "Uniqueid": "ua0-acc-1513778732.1915", "content": "", "ConnectedLineName": "", "CallerIDName": "", "Channel": "SIP/voipgrid-siproute-dev-000001fd", "CallerIDNum": "+31612345678", "ChannelStateDesc": "Up"}, - {"Privilege": "call,all", "Event": "Newstate", "ConnectedLineNum": "+31612345678", "ChannelState": "6", "Uniqueid": "ua0-acc-1513778732.1914", "content": "", "ConnectedLineName": "", "CallerIDName": "", "Channel": "Local/+31612345678@world_out-000002be;2", "CallerIDNum": "+31853030900", "ChannelStateDesc": "Up"}, - {"Privilege": "call,all", "Event": "NewAccountCode", "Uniqueid": "ua0-acc-1513778732.1915", "OldAccountCode": "126680005", "Channel": "SIP/voipgrid-siproute-dev-000001fd", "content": "", "AccountCode": "126680005"}, - {"Privilege": "call,all", "Event": "Bridge", "Uniqueid1": "ua0-acc-1513778732.1914", "CallerID2": "+31612345678", "Uniqueid2": "ua0-acc-1513778732.1915", "CallerID1": "+31853030900", "Channel2": "SIP/voipgrid-siproute-dev-000001fd", "Channel1": "Local/+31612345678@world_out-000002be;2", "Bridgetype": "core", "Bridgestate": "Link", "content": ""}, - {"Privilege": "call,all", "Event": "Newstate", "ConnectedLineNum": "+31853030900", "ChannelState": "6", "Uniqueid": "ua0-acc-1513778732.1913", "content": "", "ConnectedLineName": "", "CallerIDName": "", "Channel": "Local/+31612345678@world_out-000002be;1", "CallerIDNum": "+31612345678", "ChannelStateDesc": "Up"}, - {"Privilege": "call,all", "Event": "Newstate", "ConnectedLineNum": "", "ChannelState": "6", "Uniqueid": "ua0-acc-1513778732.1912", "content": "", "ConnectedLineName": "", "CallerIDName": "", "Channel": "SIP/126680005-000001fc", "CallerIDNum": "+31853030900", "ChannelStateDesc": "Up"}, - {"Privilege": "call,all", "Event": "NewAccountCode", "Uniqueid": "ua0-acc-1513778732.1913", "OldAccountCode": "126680005", "Channel": "Local/+31612345678@world_out-000002be;1", "content": "", "AccountCode": "126680005"}, - {"Privilege": "call,all", "Event": "Bridge", "Uniqueid1": "ua0-acc-1513778732.1912", "CallerID2": "+31612345678", "Uniqueid2": "ua0-acc-1513778732.1913", "CallerID1": "+31853030900", "Channel2": "Local/+31612345678@world_out-000002be;1", "Channel1": "SIP/126680005-000001fc", "Bridgetype": "core", "Bridgestate": "Link", "content": ""}, - {"Privilege": "call,all", "Event": "Masquerade", "Clone": "SIP/voipgrid-siproute-dev-000001fd", "CloneState": "Up", "OriginalState": "Up", "content": "", "Original": "Local/+31612345678@world_out-000002be;1"}, - {"Privilege": "call,all", "Event": "Rename", "Uniqueid": "ua0-acc-1513778732.1915", "Newname": "SIP/voipgrid-siproute-dev-000001fd", "Channel": "SIP/voipgrid-siproute-dev-000001fd", "content": ""}, - {"Privilege": "call,all", "Event": "Rename", "Uniqueid": "ua0-acc-1513778732.1913", "Newname": "SIP/voipgrid-siproute-dev-000001fd", "Channel": "Local/+31612345678@world_out-000002be;1", "content": ""}, - {"Privilege": "call,all", "Event": "Rename", "Uniqueid": "ua0-acc-1513778732.1915", "Newname": "Local/+31612345678@world_out-000002be;1", "Channel": "SIP/voipgrid-siproute-dev-000001fd", "content": ""}, - {"Privilege": "call,all", "Event": "NewCallerid", "Uniqueid": "ua0-acc-1513778732.1913", "CallerIDName": "", "Channel": "SIP/voipgrid-siproute-dev-000001fd", "CallerIDNum": "+31612345678", "content": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"Privilege": "call,all", "Event": "Bridge", "Uniqueid1": "ua0-acc-1513778732.1914", "CallerID2": "+31612345678", "Uniqueid2": "ua0-acc-1513778732.1915", "CallerID1": "+31853030900", "Channel2": "Local/+31612345678@world_out-000002be;1", "Channel1": "Local/+31612345678@world_out-000002be;2", "Bridgetype": "core", "Bridgestate": "Unlink", "content": ""}, - {"Privilege": "call,all", "Event": "Hangup", "ConnectedLineNum": "+31853030900", "CallerIDNum": "+31612345678", "Cause-txt": "Normal Clearing", "Channel": "Local/+31612345678@world_out-000002be;1", "CallerIDName": "", "ConnectedLineName": "", "Uniqueid": "ua0-acc-1513778732.1915", "AccountCode": "126680005", "Cause": "16", "content": ""}, - {"Privilege": "call,all", "Event": "Dial", "DialStatus": "ANSWER", "Channel": "Local/+31612345678@world_out-000002be;2", "SubEvent": "End", "UniqueID": "ua0-acc-1513778732.1914", "content": ""}, - {"Privilege": "call,all", "Event": "Hangup", "ConnectedLineNum": "+31612345678", "CallerIDNum": "+31853030900", "Cause-txt": "Normal Clearing", "Channel": "Local/+31612345678@world_out-000002be;2", "CallerIDName": "", "ConnectedLineName": "", "Uniqueid": "ua0-acc-1513778732.1914", "AccountCode": "126680005", "Cause": "16", "content": ""}, - {"Privilege": "call,all", "SIP-Callid": "451fb6ca4819ed6050cdda5a71e3590d@acceptatie.voipgrid.nl", "Event": "Transfer", "Channel": "SIP/126680005-000001fa", "Uniqueid": "ua0-acc-1513778720.1902", "TransferType": "Attended", "TransferMethod": "SIP", "TargetUniqueid": "ua0-acc-1513778732.1912", "content": "", "TargetChannel": "SIP/126680005-000001fc"}, - {"Privilege": "call,all", "Event": "Masquerade", "Clone": "Local/ID400681@osvpi_proc_connectab_ctd-000002b9;2", "CloneState": "Up", "OriginalState": "Up", "content": "", "Original": "SIP/126680005-000001fc"}, - {"Privilege": "call,all", "Event": "Rename", "Uniqueid": "ua0-acc-1513778720.1901", "Newname": "Local/ID400681@osvpi_proc_connectab_ctd-000002b9;2", "Channel": "Local/ID400681@osvpi_proc_connectab_ctd-000002b9;2", "content": ""}, - {"Privilege": "call,all", "Event": "Rename", "Uniqueid": "ua0-acc-1513778732.1912", "Newname": "Local/ID400681@osvpi_proc_connectab_ctd-000002b9;2", "Channel": "SIP/126680005-000001fc", "content": ""}, - {"Privilege": "call,all", "Event": "Rename", "Uniqueid": "ua0-acc-1513778720.1901", "Newname": "SIP/126680005-000001fc", "Channel": "Local/ID400681@osvpi_proc_connectab_ctd-000002b9;2", "content": ""}, - {"Privilege": "call,all", "Event": "NewCallerid", "Uniqueid": "ua0-acc-1513778732.1912", "CallerIDName": "Calling...", "Channel": "Local/ID400681@osvpi_proc_connectab_ctd-000002b9;2", "CallerIDNum": "217", "content": "", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)"}, - {"Privilege": "call,all", "Event": "Bridge", "Uniqueid1": "ua0-acc-1513778720.1901", "CallerID2": "ID400681", "Uniqueid2": "ua0-acc-1513778720.1902", "CallerID1": "+31853030900", "Channel2": "SIP/126680005-000001fa", "Channel1": "SIP/126680005-000001fc", "Bridgetype": "core", "Bridgestate": "Unlink", "content": ""}, - {"Privilege": "call,all", "Event": "Hangup", "ConnectedLineNum": "217", "CallerIDNum": "ID400681", "Cause-txt": "Normal Clearing", "Channel": "SIP/126680005-000001fa", "CallerIDName": "", "ConnectedLineName": "Calling...", "Uniqueid": "ua0-acc-1513778720.1902", "AccountCode": "12668", "Cause": "16", "content": ""}, - {"Privilege": "call,all", "Event": "Dial", "DialStatus": "ANSWER", "Channel": "SIP/126680005-000001fc", "SubEvent": "End", "UniqueID": "ua0-acc-1513778720.1901", "content": ""}, - {"Privilege": "call,all", "Event": "Hangup", "ConnectedLineNum": "", "CallerIDNum": "+31853030900", "Cause-txt": "Normal Clearing", "Channel": "SIP/126680005-000001fc", "CallerIDName": "", "ConnectedLineName": "", "Uniqueid": "ua0-acc-1513778720.1901", "AccountCode": "12668", "Cause": "16", "content": ""}, - {"Privilege": "call,all", "Event": "Bridge", "Uniqueid1": "ua0-acc-1513778732.1912", "CallerID2": "+31612345678", "Uniqueid2": "ua0-acc-1513778732.1913", "CallerID1": "217", "Channel2": "SIP/voipgrid-siproute-dev-000001fd", "Channel1": "Local/ID400681@osvpi_proc_connectab_ctd-000002b9;2", "Bridgetype": "core", "Bridgestate": "Unlink", "content": ""}, - {"Privilege": "call,all", "Event": "Bridge", "Uniqueid1": "ua0-acc-1513778732.1912", "CallerID2": "+31612345678", "Uniqueid2": "ua0-acc-1513778732.1913", "CallerID1": "217", "Channel2": "SIP/voipgrid-siproute-dev-000001fd", "Channel1": "Local/ID400681@osvpi_proc_connectab_ctd-000002b9;2", "Bridgetype": "core", "Bridgestate": "Link", "content": ""}, - {"Privilege": "call,all", "Event": "Bridge", "Uniqueid1": "ua0-acc-1513778732.1912", "CallerID2": "+31612345678", "Uniqueid2": "ua0-acc-1513778732.1913", "CallerID1": "217", "Channel2": "SIP/voipgrid-siproute-dev-000001fd", "Channel1": "Local/ID400681@osvpi_proc_connectab_ctd-000002b9;2", "Bridgetype": "core", "Bridgestate": "Unlink", "content": ""}, - {"Privilege": "call,all", "Event": "Hangup", "ConnectedLineNum": "217", "CallerIDNum": "+31612345678", "Cause-txt": "Normal Clearing", "Channel": "SIP/voipgrid-siproute-dev-000001fd", "CallerIDName": "", "ConnectedLineName": "Calling...", "Uniqueid": "ua0-acc-1513778732.1913", "AccountCode": "126680005", "Cause": "16", "content": ""}, - {"Privilege": "call,all", "Event": "Dial", "DialStatus": "ANSWER", "Channel": "Local/ID400681@osvpi_proc_connectab_ctd-000002b9;2", "SubEvent": "End", "UniqueID": "ua0-acc-1513778732.1912", "content": ""}, - {"Privilege": "call,all", "Event": "Hangup", "ConnectedLineNum": "", "CallerIDNum": "217", "Cause-txt": "Normal Clearing", "Channel": "Local/ID400681@osvpi_proc_connectab_ctd-000002b9;2", "CallerIDName": "Calling...", "ConnectedLineName": "", "Uniqueid": "ua0-acc-1513778732.1912", "AccountCode": "12668", "Cause": "16", "content": ""}, - {"Privilege": "call,all", "Event": "Bridge", "Uniqueid1": "ua0-acc-1513778720.1900", "CallerID2": "ID400681", "Uniqueid2": "ua0-acc-1513778722.1907", "CallerID1": "", "Channel2": "SIP/126680010-000001fb", "Channel1": "Local/ID400681@osvpi_proc_connectab_ctd-000002b9;1", "Bridgetype": "core", "Bridgestate": "Unlink", "content": ""}, - {"Privilege": "call,all", "Event": "Hangup", "ConnectedLineNum": "", "CallerIDNum": "ID400681", "Cause-txt": "Normal Clearing", "Channel": "SIP/126680010-000001fb", "CallerIDName": "", "ConnectedLineName": "", "Uniqueid": "ua0-acc-1513778722.1907", "AccountCode": "12668", "Cause": "16", "content": ""}, - {"Privilege": "call,all", "Event": "Dial", "DialStatus": "ANSWER", "Channel": "Local/ID400681@osvpi_proc_connectab_ctd-000002b9;1", "SubEvent": "End", "UniqueID": "ua0-acc-1513778720.1900", "content": ""}, - {"Privilege": "call,all", "Event": "Hangup", "ConnectedLineNum": "", "CallerIDNum": "", "Cause-txt": "Normal Clearing", "Channel": "Local/ID400681@osvpi_proc_connectab_ctd-000002b9;1", "CallerIDName": "", "ConnectedLineName": "", "Uniqueid": "ua0-acc-1513778720.1900", "AccountCode": "12668", "Cause": "16", "content": ""} -] diff --git a/tests/fixtures/fixed/fixed_both_success.json b/tests/fixtures/fixed/fixed_both_success.json deleted file mode 100644 index 51f6031..0000000 --- a/tests/fixtures/fixed/fixed_both_success.json +++ /dev/null @@ -1,47 +0,0 @@ -[ - {"Event":"FullyBooted","Privilege":"system,all","content":"","Status":"Fully Booted"}, - {"Event":"Newchannel","AccountCode":"","Channel":"SIP/voipgrid-siproute-docker-00000010","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"2087873f7e47-1509103867.32","Privilege":"call,all","CallerIDName":"","Context":"voipgrid_in","CallerIDNum":"+31853030900","content":"","Exten":"+31853030904"}, - {"Event":"Newstate","Channel":"SIP/voipgrid-siproute-docker-00000010","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"2087873f7e47-1509103867.32","Privilege":"call,all","ConnectedLineNum":"","content":"","CallerIDNum":"+31853030900","CallerIDName":"","ConnectedLineName":""}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"SIP/voipgrid-siproute-docker-00000010","Uniqueid":"2087873f7e47-1509103867.32","Privilege":"call,all","content":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/ID2@osvpi_route_fixeddestination-00000008;1","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"2087873f7e47-1509103867.33","Privilege":"call,all","CallerIDName":"","Context":"osvpi_route_fixeddestination","CallerIDNum":"","content":"","Exten":"ID2"}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/ID2@osvpi_route_fixeddestination-00000008;2","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"2087873f7e47-1509103867.34","Privilege":"call,all","CallerIDName":"","Context":"osvpi_route_fixeddestination","CallerIDNum":"","content":"","Exten":"ID2"}, - {"Event":"NewCallerid","Channel":"Local/ID2@osvpi_route_fixeddestination-00000008;1","Uniqueid":"2087873f7e47-1509103867.33","Privilege":"call,all","content":"","CallerIDNum":"+31853030904","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDName":""}, - {"Event":"LocalBridge","Channel1":"Local/ID2@osvpi_route_fixeddestination-00000008;1","Uniqueid1":"2087873f7e47-1509103867.33","Channel2":"Local/ID2@osvpi_route_fixeddestination-00000008;2","Uniqueid2":"2087873f7e47-1509103867.34","Privilege":"call,all","Context":"osvpi_route_fixeddestination","content":"","Exten":"ID2","LocalOptimization":"Yes"}, - {"Event":"Dial","SubEvent":"Begin","Channel":"SIP/voipgrid-siproute-docker-00000010","UniqueID":"2087873f7e47-1509103867.32","Privilege":"call,all","Destination":"Local/ID2@osvpi_route_fixeddestination-00000008;1","ConnectedLineNum":"","DestUniqueID":"2087873f7e47-1509103867.33","content":"","Dialstring":"ID2@osvpi_route_fixeddestination","CallerIDNum":"+31853030900","CallerIDName":"","ConnectedLineName":""}, - {"Event":"UserEvent","UserEvent":"NotifyCallstate","Uniqueid":"2087873f7e47-1509103867.34","Privilege":"user,all","UserInternalNumbers":"601","content":"","WebhookUrls":"http://webhook.example.com/","Provider":"webhook","FixedDestination":"+31613925xxx","ClientId":"15001"}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/+31613925xxx@world_out-00000009;1","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"2087873f7e47-1509103867.35","Privilege":"call,all","CallerIDName":"","Context":"world_out","CallerIDNum":"","content":"","Exten":"+31613925xxx"}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/+31613925xxx@world_out-00000009;2","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"2087873f7e47-1509103867.36","Privilege":"call,all","CallerIDName":"","Context":"world_out","CallerIDNum":"","content":"","Exten":"+31613925xxx"}, - {"Event":"NewCallerid","Channel":"Local/+31613925xxx@world_out-00000009;1","Uniqueid":"2087873f7e47-1509103867.35","Privilege":"call,all","content":"","CallerIDNum":"+31613925xxx","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDName":""}, - {"Event":"LocalBridge","Channel1":"Local/+31613925xxx@world_out-00000009;1","Uniqueid1":"2087873f7e47-1509103867.35","Channel2":"Local/+31613925xxx@world_out-00000009;2","Uniqueid2":"2087873f7e47-1509103867.36","Privilege":"call,all","Context":"world_out","content":"","Exten":"+31613925xxx","LocalOptimization":"Yes"}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/ID2@osvpi_route_fixeddestination-00000008;2","UniqueID":"2087873f7e47-1509103867.34","Privilege":"call,all","Destination":"Local/+31613925xxx@world_out-00000009;1","ConnectedLineNum":"+31853030904","DestUniqueID":"2087873f7e47-1509103867.35","content":"","Dialstring":"+31613925xxx@world_out","CallerIDNum":"+31853030900","CallerIDName":"","ConnectedLineName":""}, - {"Event":"Newstate","Channel":"Local/ID2@osvpi_route_fixeddestination-00000008;1","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"2087873f7e47-1509103867.33","Privilege":"call,all","ConnectedLineNum":"+31853030900","content":"","CallerIDNum":"+31853030904","CallerIDName":"","ConnectedLineName":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"SIP/voipgrid-siproute-docker-00000011","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"2087873f7e47-1509103867.37","Privilege":"call,all","CallerIDName":"","Context":"voipgrid_in","CallerIDNum":"","content":"","Exten":""}, - {"Event":"NewCallerid","Channel":"SIP/voipgrid-siproute-docker-00000011","Uniqueid":"2087873f7e47-1509103867.37","Privilege":"call,all","content":"","CallerIDNum":"+31613925xxx","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDName":""}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/+31613925xxx@world_out-00000009;2","UniqueID":"2087873f7e47-1509103867.36","Privilege":"call,all","Destination":"SIP/voipgrid-siproute-docker-00000011","ConnectedLineNum":"+31613925xxx","DestUniqueID":"2087873f7e47-1509103867.37","content":"","Dialstring":"+31613925xxx@voipgrid-siproute-docker","CallerIDNum":"+31853030900","CallerIDName":"","ConnectedLineName":""}, - {"Event":"Newstate","Channel":"SIP/voipgrid-siproute-docker-00000011","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"2087873f7e47-1509103867.37","Privilege":"call,all","ConnectedLineNum":"+31853030900","content":"","CallerIDNum":"+31613925xxx","CallerIDName":"","ConnectedLineName":""}, - {"Event":"Newstate","Channel":"Local/+31613925xxx@world_out-00000009;1","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"2087873f7e47-1509103867.35","Privilege":"call,all","ConnectedLineNum":"+31853030900","content":"","CallerIDNum":"+31613925xxx","CallerIDName":"","ConnectedLineName":""}, - {"Event":"Newstate","Channel":"SIP/voipgrid-siproute-docker-00000011","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"2087873f7e47-1509103867.37","Privilege":"call,all","ConnectedLineNum":"+31853030900","content":"","CallerIDNum":"+31613925xxx","CallerIDName":"","ConnectedLineName":""}, - {"Event":"Newstate","Channel":"Local/+31613925xxx@world_out-00000009;1","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"2087873f7e47-1509103867.35","Privilege":"call,all","ConnectedLineNum":"+31853030900","content":"","CallerIDNum":"+31613925xxx","CallerIDName":"","ConnectedLineName":""}, - {"Event":"Newstate","Channel":"Local/ID2@osvpi_route_fixeddestination-00000008;2","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"2087873f7e47-1509103867.34","Privilege":"call,all","ConnectedLineNum":"+31853030904","content":"","CallerIDNum":"+31853030900","CallerIDName":"","ConnectedLineName":""}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/+31613925xxx@world_out-00000009;1","Uniqueid":"2087873f7e47-1509103867.35","Privilege":"call,all","content":"","OldAccountCode":"15001"}, - {"Event":"Bridge","Channel1":"Local/ID2@osvpi_route_fixeddestination-00000008;2","Uniqueid1":"2087873f7e47-1509103867.34","CallerID1":"+31853030900","Channel2":"Local/+31613925xxx@world_out-00000009;1","Uniqueid2":"2087873f7e47-1509103867.35","CallerID2":"+31613925xxx","Privilege":"call,all","content":"","Bridgestate":"Link","Bridgetype":"core"}, - {"Event":"Newstate","Channel":"Local/ID2@osvpi_route_fixeddestination-00000008;1","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"2087873f7e47-1509103867.33","Privilege":"call,all","ConnectedLineNum":"+31853030900","content":"","CallerIDNum":"+31853030904","CallerIDName":"","ConnectedLineName":""}, - {"Event":"Newstate","Channel":"Local/+31613925xxx@world_out-00000009;2","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"2087873f7e47-1509103867.36","Privilege":"call,all","ConnectedLineNum":"+31613925xxx","content":"","CallerIDNum":"+31853030900","CallerIDName":"","ConnectedLineName":""}, - {"Event":"Newstate","Channel":"SIP/voipgrid-siproute-docker-00000010","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"2087873f7e47-1509103867.32","Privilege":"call,all","ConnectedLineNum":"","content":"","CallerIDNum":"+31853030900","CallerIDName":"","ConnectedLineName":""}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"SIP/voipgrid-siproute-docker-00000011","Uniqueid":"2087873f7e47-1509103867.37","Privilege":"call,all","content":"","OldAccountCode":"15001"}, - {"Event":"Bridge","Channel1":"Local/+31613925xxx@world_out-00000009;2","Uniqueid1":"2087873f7e47-1509103867.36","CallerID1":"+31853030900","Channel2":"SIP/voipgrid-siproute-docker-00000011","Uniqueid2":"2087873f7e47-1509103867.37","CallerID2":"+31613925xxx","Privilege":"call,all","content":"","Bridgestate":"Link","Bridgetype":"core"}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/ID2@osvpi_route_fixeddestination-00000008;1","Uniqueid":"2087873f7e47-1509103867.33","Privilege":"call,all","content":"","OldAccountCode":"15001"}, - {"Event":"Bridge","Channel1":"SIP/voipgrid-siproute-docker-00000010","Uniqueid1":"2087873f7e47-1509103867.32","CallerID1":"+31853030900","Channel2":"Local/ID2@osvpi_route_fixeddestination-00000008;1","Uniqueid2":"2087873f7e47-1509103867.33","CallerID2":"+31853030904","Privilege":"call,all","content":"","Bridgestate":"Link","Bridgetype":"core"}, - {"Event":"Bridge","Channel1":"Local/+31613925xxx@world_out-00000009;2","Uniqueid1":"2087873f7e47-1509103867.36","CallerID1":"+31853030900","Channel2":"SIP/voipgrid-siproute-docker-00000011","Uniqueid2":"2087873f7e47-1509103867.37","CallerID2":"+31613925xxx","Privilege":"call,all","content":"","Bridgestate":"Unlink","Bridgetype":"core"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"SIP/voipgrid-siproute-docker-00000011","Uniqueid":"2087873f7e47-1509103867.37","Privilege":"call,all","ConnectedLineNum":"+31853030900","CallerIDNum":"+31613925xxx","content":"","Cause-txt":"Normal Clearing","Cause":"16","CallerIDName":"","ConnectedLineName":""}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/+31613925xxx@world_out-00000009;2","UniqueID":"2087873f7e47-1509103867.36","Privilege":"call,all","content":"","DialStatus":"ANSWER"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/+31613925xxx@world_out-00000009;2","Uniqueid":"2087873f7e47-1509103867.36","Privilege":"call,all","ConnectedLineNum":"+31613925xxx","CallerIDNum":"+31853030900","content":"","Cause-txt":"Normal Clearing","Cause":"16","CallerIDName":"","ConnectedLineName":""}, - {"Event":"Bridge","Channel1":"Local/ID2@osvpi_route_fixeddestination-00000008;2","Uniqueid1":"2087873f7e47-1509103867.34","CallerID1":"+31853030900","Channel2":"Local/+31613925xxx@world_out-00000009;1","Uniqueid2":"2087873f7e47-1509103867.35","CallerID2":"+31613925xxx","Privilege":"call,all","content":"","Bridgestate":"Unlink","Bridgetype":"core"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/+31613925xxx@world_out-00000009;1","Uniqueid":"2087873f7e47-1509103867.35","Privilege":"call,all","ConnectedLineNum":"+31853030900","CallerIDNum":"+31613925xxx","content":"","Cause-txt":"Normal Clearing","Cause":"16","CallerIDName":"","ConnectedLineName":""}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/ID2@osvpi_route_fixeddestination-00000008;2","UniqueID":"2087873f7e47-1509103867.34","Privilege":"call,all","content":"","DialStatus":"ANSWER"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/ID2@osvpi_route_fixeddestination-00000008;2","Uniqueid":"2087873f7e47-1509103867.34","Privilege":"call,all","ConnectedLineNum":"+31853030904","CallerIDNum":"+31853030900","content":"","Cause-txt":"Normal Clearing","Cause":"16","CallerIDName":"","ConnectedLineName":""}, - {"Event":"Bridge","Channel1":"SIP/voipgrid-siproute-docker-00000010","Uniqueid1":"2087873f7e47-1509103867.32","CallerID1":"+31853030900","Channel2":"Local/ID2@osvpi_route_fixeddestination-00000008;1","Uniqueid2":"2087873f7e47-1509103867.33","CallerID2":"+31853030904","Privilege":"call,all","content":"","Bridgestate":"Unlink","Bridgetype":"core"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/ID2@osvpi_route_fixeddestination-00000008;1","Uniqueid":"2087873f7e47-1509103867.33","Privilege":"call,all","ConnectedLineNum":"+31853030900","CallerIDNum":"+31853030904","content":"","Cause-txt":"Normal Clearing","Cause":"16","CallerIDName":"","ConnectedLineName":""}, - {"Event":"Dial","SubEvent":"End","Channel":"SIP/voipgrid-siproute-docker-00000010","UniqueID":"2087873f7e47-1509103867.32","Privilege":"call,all","content":"","DialStatus":"ANSWER"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"SIP/voipgrid-siproute-docker-00000010","Uniqueid":"2087873f7e47-1509103867.32","Privilege":"call,all","ConnectedLineNum":"","CallerIDNum":"+31853030900","content":"","Cause-txt":"Normal Clearing","Cause":"16","CallerIDName":"","ConnectedLineName":""} -] diff --git a/tests/fixtures/fixed/fixed_incomming_success.json b/tests/fixtures/fixed/fixed_incomming_success.json deleted file mode 100644 index bed0d5d..0000000 --- a/tests/fixtures/fixed/fixed_incomming_success.json +++ /dev/null @@ -1,38 +0,0 @@ -[ - {"Event":"FullyBooted","Privilege":"system,all","Status":"Fully Booted","content":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"SIP/voipgrid-siproute-docker-0000000c","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"2087873f7e47-1509101015.24","Privilege":"call,all","Exten":"+31853030904","CallerIDName":"","content":"","CallerIDNum":"+31853030900","Context":"voipgrid_in"}, - {"Event":"Newstate","Channel":"SIP/voipgrid-siproute-docker-0000000c","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"2087873f7e47-1509101015.24","Privilege":"call,all","ConnectedLineName":"","ConnectedLineNum":"","CallerIDNum":"+31853030900","content":"","CallerIDName":""}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"SIP/voipgrid-siproute-docker-0000000c","Uniqueid":"2087873f7e47-1509101015.24","Privilege":"call,all","content":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/ID690152@osvpi_route_phoneaccount-00000006;1","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"2087873f7e47-1509101015.25","Privilege":"call,all","Exten":"ID690152","CallerIDName":"","content":"","CallerIDNum":"","Context":"osvpi_route_phoneaccount"}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/ID690152@osvpi_route_phoneaccount-00000006;2","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"2087873f7e47-1509101015.26","Privilege":"call,all","Exten":"ID690152","CallerIDName":"","content":"","CallerIDNum":"","Context":"osvpi_route_phoneaccount"}, - {"Event":"NewCallerid","Channel":"Local/ID690152@osvpi_route_phoneaccount-00000006;1","Uniqueid":"2087873f7e47-1509101015.25","Privilege":"call,all","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":"","CallerIDNum":"+31853030904","CallerIDName":""}, - {"Event":"LocalBridge","Channel1":"Local/ID690152@osvpi_route_phoneaccount-00000006;1","Uniqueid1":"2087873f7e47-1509101015.25","Channel2":"Local/ID690152@osvpi_route_phoneaccount-00000006;2","Uniqueid2":"2087873f7e47-1509101015.26","Privilege":"call,all","Exten":"ID690152","LocalOptimization":"Yes","content":"","Context":"osvpi_route_phoneaccount"}, - {"Event":"Dial","SubEvent":"Begin","Channel":"SIP/voipgrid-siproute-docker-0000000c","UniqueID":"2087873f7e47-1509101015.24","Privilege":"call,all","ConnectedLineName":"","content":"","Dialstring":"ID690152@osvpi_route_phoneaccount","Destination":"Local/ID690152@osvpi_route_phoneaccount-00000006;1","CallerIDNum":"+31853030900","ConnectedLineNum":"","DestUniqueID":"2087873f7e47-1509101015.25","CallerIDName":""}, - {"Event":"UserEvent","UserEvent":"NotifyCallstate","AccountCode":"150010003","Uniqueid":"2087873f7e47-1509101015.26","Privilege":"user,all","WebhookUrls":"http://webhook.example.com/","content":"","AccountInternalNumber":"203","Provider":"webhook"}, - {"Event":"Newchannel","AccountCode":"150010003","Channel":"SIP/150010003-0000000d","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"2087873f7e47-1509101015.27","Privilege":"call,all","Exten":"","CallerIDName":"","content":"","CallerIDNum":"","Context":"osvpi_account"}, - {"Event":"NewCallerid","Channel":"SIP/150010003-0000000d","Uniqueid":"2087873f7e47-1509101015.27","Privilege":"call,all","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":"","CallerIDNum":"+31853030904","CallerIDName":""}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/ID690152@osvpi_route_phoneaccount-00000006;2","UniqueID":"2087873f7e47-1509101015.26","Privilege":"call,all","ConnectedLineName":"","content":"","Dialstring":"150010003/150010003/172.20.0.13!!0853030900","Destination":"SIP/150010003-0000000d","CallerIDNum":"+31853030900","ConnectedLineNum":"+31853030904","DestUniqueID":"2087873f7e47-1509101015.27","CallerIDName":""}, - {"Event":"Newstate","Channel":"SIP/150010003-0000000d","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"2087873f7e47-1509101015.27","Privilege":"call,all","ConnectedLineName":"","ConnectedLineNum":"+31853030900","CallerIDNum":"+31853030904","content":"","CallerIDName":""}, - {"Event":"Newstate","Channel":"Local/ID690152@osvpi_route_phoneaccount-00000006;1","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"2087873f7e47-1509101015.25","Privilege":"call,all","ConnectedLineName":"","ConnectedLineNum":"+31853030900","CallerIDNum":"+31853030904","content":"","CallerIDName":""}, - {"Event":"Newstate","Channel":"SIP/150010003-0000000d","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"2087873f7e47-1509101015.27","Privilege":"call,all","ConnectedLineName":"","ConnectedLineNum":"+31853030900","CallerIDNum":"+31853030904","content":"","CallerIDName":""}, - {"Event":"Newstate","Channel":"Local/ID690152@osvpi_route_phoneaccount-00000006;2","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"2087873f7e47-1509101015.26","Privilege":"call,all","ConnectedLineName":"","ConnectedLineNum":"+31853030904","CallerIDNum":"+31853030900","content":"","CallerIDName":""}, - {"Event":"Newstate","Channel":"Local/ID690152@osvpi_route_phoneaccount-00000006;1","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"2087873f7e47-1509101015.25","Privilege":"call,all","ConnectedLineName":"","ConnectedLineNum":"+31853030900","CallerIDNum":"+31853030904","content":"","CallerIDName":""}, - {"Event":"Newstate","Channel":"SIP/voipgrid-siproute-docker-0000000c","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"2087873f7e47-1509101015.24","Privilege":"call,all","ConnectedLineName":"","ConnectedLineNum":"","CallerIDNum":"+31853030900","content":"","CallerIDName":""}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"SIP/150010003-0000000d","Uniqueid":"2087873f7e47-1509101015.27","Privilege":"call,all","content":"","OldAccountCode":"15001"}, - {"Event":"Bridge","Channel1":"Local/ID690152@osvpi_route_phoneaccount-00000006;2","Uniqueid1":"2087873f7e47-1509101015.26","CallerID1":"+31853030900","Channel2":"SIP/150010003-0000000d","Uniqueid2":"2087873f7e47-1509101015.27","CallerID2":"+31853030904","Privilege":"call,all","Bridgetype":"core","content":"","Bridgestate":"Link"}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/ID690152@osvpi_route_phoneaccount-00000006;1","Uniqueid":"2087873f7e47-1509101015.25","Privilege":"call,all","content":"","OldAccountCode":"15001"}, - {"Event":"Bridge","Channel1":"SIP/voipgrid-siproute-docker-0000000c","Uniqueid1":"2087873f7e47-1509101015.24","CallerID1":"+31853030900","Channel2":"Local/ID690152@osvpi_route_phoneaccount-00000006;1","Uniqueid2":"2087873f7e47-1509101015.25","CallerID2":"+31853030904","Privilege":"call,all","Bridgetype":"core","content":"","Bridgestate":"Link"}, - {"Event":"Masquerade","Privilege":"call,all","Clone":"SIP/150010003-0000000d","CloneState":"Up","OriginalState":"Up","content":"","Original":"Local/ID690152@osvpi_route_phoneaccount-00000006;1"}, - {"Event":"Rename","Channel":"SIP/150010003-0000000d","Uniqueid":"2087873f7e47-1509101015.27","Privilege":"call,all","Newname":"SIP/150010003-0000000d","content":""}, - {"Event":"Rename","Channel":"Local/ID690152@osvpi_route_phoneaccount-00000006;1","Uniqueid":"2087873f7e47-1509101015.25","Privilege":"call,all","Newname":"SIP/150010003-0000000d","content":""}, - {"Event":"Rename","Channel":"SIP/150010003-0000000d","Uniqueid":"2087873f7e47-1509101015.27","Privilege":"call,all","Newname":"Local/ID690152@osvpi_route_phoneaccount-00000006;1","content":""}, - {"Event":"NewCallerid","Channel":"SIP/150010003-0000000d","Uniqueid":"2087873f7e47-1509101015.25","Privilege":"call,all","CID-CallingPres":"0 (Presentation Allowed, Not Screened)","content":"","CallerIDNum":"+31853030904","CallerIDName":""}, - {"Event":"Bridge","Channel1":"Local/ID690152@osvpi_route_phoneaccount-00000006;2","Uniqueid1":"2087873f7e47-1509101015.26","CallerID1":"+31853030900","Channel2":"Local/ID690152@osvpi_route_phoneaccount-00000006;1","Uniqueid2":"2087873f7e47-1509101015.27","CallerID2":"+31853030904","Privilege":"call,all","Bridgetype":"core","content":"","Bridgestate":"Unlink"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/ID690152@osvpi_route_phoneaccount-00000006;1","Uniqueid":"2087873f7e47-1509101015.27","Privilege":"call,all","ConnectedLineName":"","CallerIDName":"","content":"","Cause-txt":"Normal Clearing","Cause":"16","ConnectedLineNum":"+31853030900","CallerIDNum":"+31853030904"}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/ID690152@osvpi_route_phoneaccount-00000006;2","UniqueID":"2087873f7e47-1509101015.26","Privilege":"call,all","DialStatus":"ANSWER","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/ID690152@osvpi_route_phoneaccount-00000006;2","Uniqueid":"2087873f7e47-1509101015.26","Privilege":"call,all","ConnectedLineName":"","CallerIDName":"","content":"","Cause-txt":"Normal Clearing","Cause":"16","ConnectedLineNum":"+31853030904","CallerIDNum":"+31853030900"}, - {"Event":"Bridge","Channel1":"SIP/voipgrid-siproute-docker-0000000c","Uniqueid1":"2087873f7e47-1509101015.24","CallerID1":"+31853030900","Channel2":"SIP/150010003-0000000d","Uniqueid2":"2087873f7e47-1509101015.25","CallerID2":"+31853030904","Privilege":"call,all","Bridgetype":"core","content":"","Bridgestate":"Unlink"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"SIP/150010003-0000000d","Uniqueid":"2087873f7e47-1509101015.25","Privilege":"call,all","ConnectedLineName":"","CallerIDName":"","content":"","Cause-txt":"Normal Clearing","Cause":"16","ConnectedLineNum":"+31853030900","CallerIDNum":"+31853030904"}, - {"Event":"Dial","SubEvent":"End","Channel":"SIP/voipgrid-siproute-docker-0000000c","UniqueID":"2087873f7e47-1509101015.24","Privilege":"call,all","DialStatus":"ANSWER","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"SIP/voipgrid-siproute-docker-0000000c","Uniqueid":"2087873f7e47-1509101015.24","Privilege":"call,all","ConnectedLineName":"","CallerIDName":"","content":"","Cause-txt":"Normal Clearing","Cause":"16","ConnectedLineNum":"","CallerIDNum":"+31853030900"} -] diff --git a/tests/fixtures/fixed/fixed_outbound_success.json b/tests/fixtures/fixed/fixed_outbound_success.json deleted file mode 100644 index c28deb4..0000000 --- a/tests/fixtures/fixed/fixed_outbound_success.json +++ /dev/null @@ -1,40 +0,0 @@ -[ - {"content": "", "Status": "Fully Booted", "Event": "FullyBooted", "Privilege": "system,all"}, - {"content": "", "Status": "Fully Booted", "Event": "FullyBooted", "Privilege": "system,all"}, - {"ChannelState": "0", "ChannelStateDesc": "Down", "AccountCode": "126680010", "Event": "Newchannel", "Context": "osvpi_account", "Channel": "SIP/126680010-000001fe", "Uniqueid": "ua0-acc-1513784375.1916", "CallerIDNum": "126680010", "Privilege": "call,all", "content": "", "Exten": "0508009000", "CallerIDName": "Test SPA 2"}, - {"Channel": "SIP/126680010-000001fe", "ConnectedLineNum": "", "CallerIDNum": "126680010", "ChannelStateDesc": "Ring", "Privilege": "call,all", "content": "", "ChannelState": "4", "Uniqueid": "ua0-acc-1513784375.1916", "ConnectedLineName": "", "Event": "Newstate", "CallerIDName": "Test SPA 2"}, - {"Channel": "SIP/126680010-000001fe", "Uniqueid": "ua0-acc-1513784375.1916", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "Privilege": "call,all", "content": "", "CallerIDNum": "126680010", "Event": "NewCallerid", "CallerIDName": "Test SPA 1"}, - {"Channel": "SIP/126680010-000001fe", "Uniqueid": "ua0-acc-1513784375.1916", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "Privilege": "call,all", "content": "", "CallerIDNum": "+31853030900", "Event": "NewCallerid", "CallerIDName": "Test SPA 1"}, - {"Channel": "SIP/126680010-000001fe", "Uniqueid": "ua0-acc-1513784375.1916", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "Privilege": "call,all", "content": "", "CallerIDNum": "+31853030900", "Event": "NewCallerid", "CallerIDName": ""}, - {"ChannelState": "0", "ChannelStateDesc": "Down", "AccountCode": "", "Event": "Newchannel", "Context": "world_out", "Channel": "Local/+31508009000@world_out-000002bf;1", "Uniqueid": "ua0-acc-1513784375.1917", "CallerIDNum": "", "Privilege": "call,all", "content": "", "Exten": "+31508009000", "CallerIDName": ""}, - {"ChannelState": "4", "ChannelStateDesc": "Ring", "AccountCode": "", "Event": "Newchannel", "Context": "world_out", "Channel": "Local/+31508009000@world_out-000002bf;2", "Uniqueid": "ua0-acc-1513784375.1918", "CallerIDNum": "", "Privilege": "call,all", "content": "", "Exten": "+31508009000", "CallerIDName": ""}, - {"Channel": "Local/+31508009000@world_out-000002bf;1", "Uniqueid": "ua0-acc-1513784375.1917", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Privilege": "call,all", "content": "", "CallerIDNum": "+31508009000", "Event": "NewCallerid", "CallerIDName": ""}, - {"LocalOptimization": "Yes", "Channel1": "Local/+31508009000@world_out-000002bf;1", "Channel2": "Local/+31508009000@world_out-000002bf;2", "Uniqueid1": "ua0-acc-1513784375.1917", "Privilege": "call,all", "content": "", "Exten": "+31508009000", "Uniqueid2": "ua0-acc-1513784375.1918", "Event": "LocalBridge", "Context": "world_out"}, - {"Destination": "Local/+31508009000@world_out-000002bf;1", "ConnectedLineName": "", "SubEvent": "Begin", "Event": "Dial", "UniqueID": "ua0-acc-1513784375.1916", "Channel": "SIP/126680010-000001fe", "ConnectedLineNum": "", "CallerIDNum": "+31853030900", "Privilege": "call,all", "content": "", "DestUniqueID": "ua0-acc-1513784375.1917", "CallerIDName": "", "Dialstring": "+31508009000@world_out"}, - {"ChannelState": "0", "ChannelStateDesc": "Down", "AccountCode": "", "Event": "Newchannel", "Context": "voipgrid_in", "Channel": "SIP/voipgrid-siproute-dev-000001ff", "Uniqueid": "ua0-acc-1513784375.1919", "CallerIDNum": "", "Privilege": "call,all", "content": "", "Exten": "", "CallerIDName": ""}, - {"Channel": "SIP/voipgrid-siproute-dev-000001ff", "Uniqueid": "ua0-acc-1513784375.1919", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Privilege": "call,all", "content": "", "CallerIDNum": "+31508009000", "Event": "NewCallerid", "CallerIDName": ""}, - {"Destination": "SIP/voipgrid-siproute-dev-000001ff", "ConnectedLineName": "", "SubEvent": "Begin", "Event": "Dial", "UniqueID": "ua0-acc-1513784375.1918", "Channel": "Local/+31508009000@world_out-000002bf;2", "ConnectedLineNum": "+31508009000", "CallerIDNum": "+31853030900", "Privilege": "call,all", "content": "", "DestUniqueID": "ua0-acc-1513784375.1919", "CallerIDName": "", "Dialstring": "+31508009000@voipgrid-siproute-dev"}, - {"Channel": "SIP/voipgrid-siproute-dev-000001ff", "ConnectedLineNum": "+31853030900", "CallerIDNum": "+31508009000", "ChannelStateDesc": "Ringing", "Privilege": "call,all", "content": "", "ChannelState": "5", "Uniqueid": "ua0-acc-1513784375.1919", "ConnectedLineName": "", "Event": "Newstate", "CallerIDName": ""}, - {"Channel": "Local/+31508009000@world_out-000002bf;1", "ConnectedLineNum": "+31853030900", "CallerIDNum": "+31508009000", "ChannelStateDesc": "Ringing", "Privilege": "call,all", "content": "", "ChannelState": "5", "Uniqueid": "ua0-acc-1513784375.1917", "ConnectedLineName": "", "Event": "Newstate", "CallerIDName": ""}, - {"Channel": "SIP/voipgrid-siproute-dev-000001ff", "ConnectedLineNum": "+31853030900", "CallerIDNum": "+31508009000", "ChannelStateDesc": "Up", "Privilege": "call,all", "content": "", "ChannelState": "6", "Uniqueid": "ua0-acc-1513784375.1919", "ConnectedLineName": "", "Event": "Newstate", "CallerIDName": ""}, - {"Channel": "Local/+31508009000@world_out-000002bf;1", "ConnectedLineNum": "+31853030900", "CallerIDNum": "+31508009000", "ChannelStateDesc": "Up", "Privilege": "call,all", "content": "", "ChannelState": "6", "Uniqueid": "ua0-acc-1513784375.1917", "ConnectedLineName": "", "Event": "Newstate", "CallerIDName": ""}, - {"Channel": "SIP/126680010-000001fe", "ConnectedLineNum": "", "CallerIDNum": "+31853030900", "ChannelStateDesc": "Up", "Privilege": "call,all", "content": "", "ChannelState": "6", "Uniqueid": "ua0-acc-1513784375.1916", "ConnectedLineName": "", "Event": "Newstate", "CallerIDName": ""}, - {"Channel": "Local/+31508009000@world_out-000002bf;1", "Uniqueid": "ua0-acc-1513784375.1917", "Privilege": "call,all", "content": "", "AccountCode": "126680010", "Event": "NewAccountCode", "OldAccountCode": "126680010"}, - {"Bridgestate": "Link", "Channel1": "SIP/126680010-000001fe", "Channel2": "Local/+31508009000@world_out-000002bf;1", "Uniqueid1": "ua0-acc-1513784375.1916", "Privilege": "call,all", "content": "", "Bridgetype": "core", "CallerID2": "+31508009000", "Event": "Bridge", "Uniqueid2": "ua0-acc-1513784375.1917", "CallerID1": "+31853030900"}, - {"Channel": "Local/+31508009000@world_out-000002bf;2", "ConnectedLineNum": "+31508009000", "CallerIDNum": "+31853030900", "ChannelStateDesc": "Up", "Privilege": "call,all", "content": "", "ChannelState": "6", "Uniqueid": "ua0-acc-1513784375.1918", "ConnectedLineName": "", "Event": "Newstate", "CallerIDName": ""}, - {"Channel": "SIP/voipgrid-siproute-dev-000001ff", "Uniqueid": "ua0-acc-1513784375.1919", "Privilege": "call,all", "content": "", "AccountCode": "126680010", "Event": "NewAccountCode", "OldAccountCode": "126680010"}, - {"Bridgestate": "Link", "Channel1": "Local/+31508009000@world_out-000002bf;2", "Channel2": "SIP/voipgrid-siproute-dev-000001ff", "Uniqueid1": "ua0-acc-1513784375.1918", "Privilege": "call,all", "content": "", "Bridgetype": "core", "CallerID2": "+31508009000", "Event": "Bridge", "Uniqueid2": "ua0-acc-1513784375.1919", "CallerID1": "+31853030900"}, - {"Clone": "SIP/voipgrid-siproute-dev-000001ff", "CloneState": "Up", "content": "", "OriginalState": "Up", "Event": "Masquerade", "Original": "Local/+31508009000@world_out-000002bf;1", "Privilege": "call,all"}, - {"content": "", "Uniqueid": "ua0-acc-1513784375.1919", "Newname": "SIP/voipgrid-siproute-dev-000001ff", "Privilege": "call,all", "Channel": "SIP/voipgrid-siproute-dev-000001ff", "Event": "Rename"}, - {"content": "", "Uniqueid": "ua0-acc-1513784375.1917", "Newname": "SIP/voipgrid-siproute-dev-000001ff", "Privilege": "call,all", "Channel": "Local/+31508009000@world_out-000002bf;1", "Event": "Rename"}, - {"content": "", "Uniqueid": "ua0-acc-1513784375.1919", "Newname": "Local/+31508009000@world_out-000002bf;1", "Privilege": "call,all", "Channel": "SIP/voipgrid-siproute-dev-000001ff", "Event": "Rename"}, - {"Channel": "SIP/voipgrid-siproute-dev-000001ff", "Uniqueid": "ua0-acc-1513784375.1917", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Privilege": "call,all", "content": "", "CallerIDNum": "+31508009000", "Event": "NewCallerid", "CallerIDName": ""}, - {"Bridgestate": "Unlink", "Channel1": "Local/+31508009000@world_out-000002bf;2", "Channel2": "Local/+31508009000@world_out-000002bf;1", "Uniqueid1": "ua0-acc-1513784375.1918", "Privilege": "call,all", "content": "", "Bridgetype": "core", "CallerID2": "+31508009000", "Event": "Bridge", "Uniqueid2": "ua0-acc-1513784375.1919", "CallerID1": "+31853030900"}, - {"Cause-txt": "Normal Clearing", "Privilege": "call,all", "Event": "Hangup", "ConnectedLineNum": "+31853030900", "Cause": "16", "Channel": "Local/+31508009000@world_out-000002bf;1", "Uniqueid": "ua0-acc-1513784375.1919", "CallerIDNum": "+31508009000", "AccountCode": "126680010", "content": "", "ConnectedLineName": "", "CallerIDName": ""}, - {"Channel": "Local/+31508009000@world_out-000002bf;2", "DialStatus": "ANSWER", "Privilege": "call,all", "content": "", "Event": "Dial", "SubEvent": "End", "UniqueID": "ua0-acc-1513784375.1918"}, - {"Cause-txt": "Normal Clearing", "Privilege": "call,all", "Event": "Hangup", "ConnectedLineNum": "+31508009000", "Cause": "16", "Channel": "Local/+31508009000@world_out-000002bf;2", "Uniqueid": "ua0-acc-1513784375.1918", "CallerIDNum": "+31853030900", "AccountCode": "126680010", "content": "", "ConnectedLineName": "", "CallerIDName": ""}, - {"Bridgestate": "Unlink", "Channel1": "SIP/126680010-000001fe", "Channel2": "SIP/voipgrid-siproute-dev-000001ff", "Uniqueid1": "ua0-acc-1513784375.1916", "Privilege": "call,all", "content": "", "Bridgetype": "core", "CallerID2": "+31508009000", "Event": "Bridge", "Uniqueid2": "ua0-acc-1513784375.1917", "CallerID1": "+31853030900"}, - {"Cause-txt": "Normal Clearing", "Privilege": "call,all", "Event": "Hangup", "ConnectedLineNum": "+31853030900", "Cause": "16", "Channel": "SIP/voipgrid-siproute-dev-000001ff", "Uniqueid": "ua0-acc-1513784375.1917", "CallerIDNum": "+31508009000", "AccountCode": "126680010", "content": "", "ConnectedLineName": "", "CallerIDName": ""}, - {"Channel": "SIP/126680010-000001fe", "DialStatus": "ANSWER", "Privilege": "call,all", "content": "", "Event": "Dial", "SubEvent": "End", "UniqueID": "ua0-acc-1513784375.1916"}, - {"Cause-txt": "Normal Clearing", "Privilege": "call,all", "Event": "Hangup", "ConnectedLineNum": "", "Cause": "16", "Channel": "SIP/126680010-000001fe", "Uniqueid": "ua0-acc-1513784375.1916", "CallerIDNum": "+31853030900", "AccountCode": "126680010", "content": "", "ConnectedLineName": "", "CallerIDName": ""} -] diff --git a/tests/fixtures/mobile/acceptance_group_pickup.json b/tests/fixtures/mobile/acceptance_group_pickup.json new file mode 100644 index 0000000..a3f465b --- /dev/null +++ b/tests/fixtures/mobile/acceptance_group_pickup.json @@ -0,0 +1,129 @@ +[ + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "SIP/voipgrid-siproute-docker-00000069", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newchannel", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1855", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "SIP/voipgrid-siproute-docker-00000069", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1855", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "SIP/voipgrid-siproute-docker-00000069", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world", "Event": "NewAccountCode", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "10", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1855", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID4@osvpi_route_fixeddestination-00000044;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_fixeddestination", "Event": "Newchannel", "Exten": "ID4", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1858", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID4@osvpi_route_fixeddestination-00000044;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_fixeddestination", "Event": "Newchannel", "Exten": "ID4", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1859", "content": ""}, + {"AccountCode": "26001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID4@osvpi_route_fixeddestination-00000044;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "osvpi_route_fixeddestination", "Event": "NewCallerid", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1858", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID4@osvpi_route_fixeddestination-00000044;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "osvpi_route_fixeddestination", "Event": "NewAccountCode", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1858", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID4@osvpi_route_fixeddestination-00000044;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "osvpi_route_fixeddestination", "Event": "NewConnectedLine", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1858", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000045;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_fixeddestination", "Event": "Newchannel", "Exten": "ID3", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1862", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000045;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_fixeddestination", "Event": "Newchannel", "Exten": "ID3", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1863", "content": ""}, + {"AccountCode": "26001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000045;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "osvpi_route_fixeddestination", "Event": "NewCallerid", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1862", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000045;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "osvpi_route_fixeddestination", "Event": "NewAccountCode", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1862", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000045;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "osvpi_route_fixeddestination", "Event": "NewConnectedLine", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1862", "content": ""}, + {"AccountCode": "26001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/ID4@osvpi_route_fixeddestination-00000044;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_fixeddestination", "Event": "NewCallerid", "Exten": "ID4", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1859", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/ID4@osvpi_route_fixeddestination-00000044;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_fixeddestination", "Event": "NewAccountCode", "Exten": "ID4", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1859", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/ID4@osvpi_route_fixeddestination-00000044;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_fixeddestination", "Event": "NewConnectedLine", "Exten": "ID4", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1859", "content": ""}, + {"Context": "osvpi_route_fixeddestination", "Event": "LocalBridge", "Exten": "ID4", "LocalOneAccountCode": "26001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31260010001", "LocalOneChannel": "Local/ID4@osvpi_route_fixeddestination-00000044;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31150010003", "LocalOneContext": "osvpi_route_fixeddestination", "LocalOneExten": "+31260010001", "LocalOneLanguage": "en", "LocalOneLinkedid": "f29ea68048f6-1530020288.1855", "LocalOnePriority": "1", "LocalOneUniqueid": "f29ea68048f6-1530020288.1858", "LocalOptimization": "Yes", "LocalTwoAccountCode": "26001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31150010003", "LocalTwoChannel": "Local/ID4@osvpi_route_fixeddestination-00000044;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31260010001", "LocalTwoContext": "osvpi_route_fixeddestination", "LocalTwoExten": "ID4", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "f29ea68048f6-1530020288.1855", "LocalTwoPriority": "1", "LocalTwoUniqueid": "f29ea68048f6-1530020288.1859", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "SIP/voipgrid-siproute-docker-00000069", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_callgroup_step", "DestAccountCode": "26001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "Local/ID4@osvpi_route_fixeddestination-00000044;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010003", "DestContext": "osvpi_route_fixeddestination", "DestExten": "+31260010001", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530020288.1855", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530020288.1858", "DialString": "ID4@osvpi_route_fixeddestination", "Event": "DialBegin", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "2", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1855", "content": ""}, + {"AccountCode": "26001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000045;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_fixeddestination", "Event": "NewCallerid", "Exten": "ID3", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1863", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000045;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_fixeddestination", "Event": "NewAccountCode", "Exten": "ID3", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1863", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000045;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_fixeddestination", "Event": "NewConnectedLine", "Exten": "ID3", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1863", "content": ""}, + {"Context": "osvpi_route_fixeddestination", "Event": "LocalBridge", "Exten": "ID3", "LocalOneAccountCode": "26001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31260010001", "LocalOneChannel": "Local/ID3@osvpi_route_fixeddestination-00000045;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31150010003", "LocalOneContext": "osvpi_route_fixeddestination", "LocalOneExten": "+31260010001", "LocalOneLanguage": "en", "LocalOneLinkedid": "f29ea68048f6-1530020288.1855", "LocalOnePriority": "1", "LocalOneUniqueid": "f29ea68048f6-1530020288.1862", "LocalOptimization": "Yes", "LocalTwoAccountCode": "26001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31150010003", "LocalTwoChannel": "Local/ID3@osvpi_route_fixeddestination-00000045;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31260010001", "LocalTwoContext": "osvpi_route_fixeddestination", "LocalTwoExten": "ID3", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "f29ea68048f6-1530020288.1855", "LocalTwoPriority": "1", "LocalTwoUniqueid": "f29ea68048f6-1530020288.1863", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "SIP/voipgrid-siproute-docker-00000069", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_callgroup_step", "DestAccountCode": "26001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "Local/ID3@osvpi_route_fixeddestination-00000045;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010003", "DestContext": "osvpi_route_fixeddestination", "DestExten": "+31260010001", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530020288.1855", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530020288.1862", "DialString": "ID3@osvpi_route_fixeddestination", "Event": "DialBegin", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "2", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1855", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31150010002@world_out-00000046;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "world_out", "Event": "Newchannel", "Exten": "+31150010002", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1867", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31150010002@world_out-00000046;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "world_out", "Event": "Newchannel", "Exten": "+31150010002", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1869", "content": ""}, + {"AccountCode": "26001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010002", "Channel": "Local/+31150010002@world_out-00000046;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "world_out", "Event": "NewCallerid", "Exten": "+31150010002", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1867", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010002", "Channel": "Local/+31150010002@world_out-00000046;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "world_out", "Event": "NewAccountCode", "Exten": "+31150010002", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1867", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010002", "Channel": "Local/+31150010002@world_out-00000046;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "world_out", "Event": "NewConnectedLine", "Exten": "+31150010002", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1867", "content": ""}, + {"AccountCode": "26001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010002@world_out-00000046;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010002", "Context": "world_out", "Event": "NewCallerid", "Exten": "+31150010002", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1869", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010002@world_out-00000046;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010002", "Context": "world_out", "Event": "NewAccountCode", "Exten": "+31150010002", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1869", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010002@world_out-00000046;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010002", "Context": "world_out", "Event": "NewConnectedLine", "Exten": "+31150010002", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1869", "content": ""}, + {"Context": "world_out", "Event": "LocalBridge", "Exten": "+31150010002", "LocalOneAccountCode": "26001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31150010002", "LocalOneChannel": "Local/+31150010002@world_out-00000046;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31150010003", "LocalOneContext": "world_out", "LocalOneExten": "+31150010002", "LocalOneLanguage": "en", "LocalOneLinkedid": "f29ea68048f6-1530020288.1855", "LocalOnePriority": "1", "LocalOneUniqueid": "f29ea68048f6-1530020288.1867", "LocalOptimization": "Yes", "LocalTwoAccountCode": "26001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31150010003", "LocalTwoChannel": "Local/+31150010002@world_out-00000046;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31150010002", "LocalTwoContext": "world_out", "LocalTwoExten": "+31150010002", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "f29ea68048f6-1530020288.1855", "LocalTwoPriority": "1", "LocalTwoUniqueid": "f29ea68048f6-1530020288.1869", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/ID4@osvpi_route_fixeddestination-00000044;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_world_call", "DestAccountCode": "26001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010002", "DestChannel": "Local/+31150010002@world_out-00000046;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010003", "DestContext": "world_out", "DestExten": "+31150010002", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530020288.1855", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530020288.1867", "DialString": "+31150010002@world_out", "Event": "DialBegin", "Exten": "+31150010002", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "15", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1859", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID4@osvpi_route_fixeddestination-00000044;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "osvpi_route_fixeddestination", "Event": "Newstate", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1858", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/voipgrid-siproute-docker-0000006a", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1872", "content": ""}, + {"AccountCode": "26001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010002", "Channel": "SIP/voipgrid-siproute-docker-0000006a", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "NewCallerid", "Exten": "+31150010002", "Language": "nl", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1872", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010002", "Channel": "SIP/voipgrid-siproute-docker-0000006a", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "NewAccountCode", "Exten": "+31150010002", "Language": "nl", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1872", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010002", "Channel": "SIP/voipgrid-siproute-docker-0000006a", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "NewConnectedLine", "Exten": "+31150010002", "Language": "nl", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1872", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010002@world_out-00000046;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010002", "Context": "voipgrid_out", "DestAccountCode": "26001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010002", "DestChannel": "SIP/voipgrid-siproute-docker-0000006a", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010003", "DestContext": "voipgrid_in", "DestExten": "+31150010002", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530020288.1855", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530020288.1872", "DialString": "+31150010002@voipgrid-siproute-docker", "Event": "DialBegin", "Exten": "+31150010002", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1869", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31150010001@world_out-00000047;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "world_out", "Event": "Newchannel", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1877", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31150010001@world_out-00000047;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "world_out", "Event": "Newchannel", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1879", "content": ""}, + {"AccountCode": "26001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-00000047;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "world_out", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1877", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-00000047;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "world_out", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1877", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-00000047;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "world_out", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1877", "content": ""}, + {"AccountCode": "26001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010001@world_out-00000047;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1879", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010001@world_out-00000047;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1879", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010001@world_out-00000047;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1879", "content": ""}, + {"Context": "world_out", "Event": "LocalBridge", "Exten": "+31150010001", "LocalOneAccountCode": "26001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31150010001", "LocalOneChannel": "Local/+31150010001@world_out-00000047;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31150010003", "LocalOneContext": "world_out", "LocalOneExten": "+31150010001", "LocalOneLanguage": "en", "LocalOneLinkedid": "f29ea68048f6-1530020288.1855", "LocalOnePriority": "1", "LocalOneUniqueid": "f29ea68048f6-1530020288.1877", "LocalOptimization": "Yes", "LocalTwoAccountCode": "26001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31150010003", "LocalTwoChannel": "Local/+31150010001@world_out-00000047;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31150010001", "LocalTwoContext": "world_out", "LocalTwoExten": "+31150010001", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "f29ea68048f6-1530020288.1855", "LocalTwoPriority": "1", "LocalTwoUniqueid": "f29ea68048f6-1530020288.1879", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000045;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_world_call", "DestAccountCode": "26001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/+31150010001@world_out-00000047;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010003", "DestContext": "world_out", "DestExten": "+31150010001", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530020288.1855", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530020288.1877", "DialString": "+31150010001@world_out", "Event": "DialBegin", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "15", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1863", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000045;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "osvpi_route_fixeddestination", "Event": "Newstate", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1862", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/voipgrid-siproute-docker-0000006c", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1882", "content": ""}, + {"AccountCode": "26001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-0000006c", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1882", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-0000006c", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1882", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-0000006c", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1882", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010001@world_out-00000047;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_out", "DestAccountCode": "26001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "SIP/voipgrid-siproute-docker-0000006c", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010003", "DestContext": "voipgrid_in", "DestExten": "+31150010001", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530020288.1855", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530020288.1882", "DialString": "+31150010001@voipgrid-siproute-docker", "Event": "DialBegin", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1879", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010002", "Channel": "SIP/voipgrid-siproute-docker-0000006a", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31150010002", "Language": "nl", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1872", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010002", "Channel": "Local/+31150010002@world_out-00000046;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "world_out", "Event": "Newstate", "Exten": "+31150010002", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1867", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-0000006c", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1882", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-00000047;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "world_out", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1877", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "391b5f5f-a638-4b87-b16d-433ee9184abe", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ce2fe9e0-a19e-4538-b25c-868cf0b22337", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-0000006c", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1882", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010001@world_out-00000047;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_out", "DestAccountCode": "26001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "SIP/voipgrid-siproute-docker-0000006c", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010003", "DestContext": "voipgrid_in", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530020288.1855", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530020288.1882", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1879", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010001@world_out-00000047;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_out", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1879", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-00000047;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "world_out", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1877", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "d166cb3c-4a7d-4858-a0a9-06f92570f2d6", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "d166cb3c-4a7d-4858-a0a9-06f92570f2d6", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-0000006c", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1882", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "d166cb3c-4a7d-4858-a0a9-06f92570f2d6", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010001@world_out-00000047;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_out", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1879", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "391b5f5f-a638-4b87-b16d-433ee9184abe", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "28c4b28b-d917-4c31-91ec-43e3dc3169e1", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "9efe4b02-8578-4d03-8789-540757f559a0", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010002", "Channel": "SIP/voipgrid-siproute-docker-0000006a", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31150010002", "Language": "nl", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1872", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010002@world_out-00000046;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010002", "Context": "voipgrid_out", "DestAccountCode": "26001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010002", "DestChannel": "SIP/voipgrid-siproute-docker-0000006a", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010003", "DestContext": "voipgrid_in", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530020288.1855", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530020288.1872", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31150010002", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1869", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010002@world_out-00000046;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010002", "Context": "voipgrid_out", "Event": "Newstate", "Exten": "+31150010002", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1869", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "93e02339-713e-4a2d-8f1b-c078e4243eb2", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010002", "Channel": "Local/+31150010002@world_out-00000046;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "world_out", "Event": "Newstate", "Exten": "+31150010002", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1867", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "93e02339-713e-4a2d-8f1b-c078e4243eb2", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010002", "Channel": "SIP/voipgrid-siproute-docker-0000006a", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1872", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "93e02339-713e-4a2d-8f1b-c078e4243eb2", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010002@world_out-00000046;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010002", "Context": "voipgrid_out", "Event": "BridgeEnter", "Exten": "+31150010002", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1869", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "28c4b28b-d917-4c31-91ec-43e3dc3169e1", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000045;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_world_call", "DestAccountCode": "26001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/+31150010001@world_out-00000047;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010003", "DestContext": "world_out", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530020288.1855", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530020288.1877", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "15", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1863", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000045;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_world_call", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "15", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1863", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000045;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "osvpi_route_fixeddestination", "Event": "Newstate", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1862", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "SIP/voipgrid-siproute-docker-00000069", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_callgroup_step", "DestAccountCode": "26001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "Local/ID4@osvpi_route_fixeddestination-00000044;1", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010003", "DestContext": "osvpi_route_fixeddestination", "DestExten": "+31260010001", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530020288.1855", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530020288.1858", "DialStatus": "CANCEL", "Event": "DialEnd", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "2", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1855", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "493c8a24-702d-4168-9353-3c22fe0cb8da", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "26", "Cause-txt": "Answered elsewhere", "Channel": "Local/ID4@osvpi_route_fixeddestination-00000044;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "osvpi_route_fixeddestination", "Event": "Hangup", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1858", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "493c8a24-702d-4168-9353-3c22fe0cb8da", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-00000047;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "world_out", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1877", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "SIP/voipgrid-siproute-docker-00000069", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_callgroup_step", "DestAccountCode": "26001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "Local/ID3@osvpi_route_fixeddestination-00000045;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010003", "DestContext": "osvpi_route_fixeddestination", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530020288.1855", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530020288.1862", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "2", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1855", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "SIP/voipgrid-siproute-docker-00000069", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_callgroup_step", "Event": "Newstate", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "2", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1855", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "493c8a24-702d-4168-9353-3c22fe0cb8da", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000045;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_world_call", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "15", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1863", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "8e6f8adc-2893-4478-b260-53c6cce6dfce", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "8e6f8adc-2893-4478-b260-53c6cce6dfce", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000045;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "osvpi_route_fixeddestination", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1862", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "8e6f8adc-2893-4478-b260-53c6cce6dfce", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "SIP/voipgrid-siproute-docker-00000069", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_callgroup_step", "Event": "BridgeEnter", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "2", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1855", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "53d308f1-d51e-49d7-ae24-b240bec1a69d", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "566a1d5e-e3c0-4e7e-bb6d-a9b064444465", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "d166cb3c-4a7d-4858-a0a9-06f92570f2d6", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-0000006c", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1882", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "493c8a24-702d-4168-9353-3c22fe0cb8da", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-00000047;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "world_out", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1877", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "493c8a24-702d-4168-9353-3c22fe0cb8da", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-0000006c", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "f29ea68048f6-1530020288.1877", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1882", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "d166cb3c-4a7d-4858-a0a9-06f92570f2d6", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010001@world_out-00000047;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_out", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1879", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/+31150010001@world_out-00000047;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1879", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "d166cb3c-4a7d-4858-a0a9-06f92570f2d6", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/+31150010001@world_out-00000047;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "world_out", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1877", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "493c8a24-702d-4168-9353-3c22fe0cb8da", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-0000006c", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1882", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "8e6f8adc-2893-4478-b260-53c6cce6dfce", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000045;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "osvpi_route_fixeddestination", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1862", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "8e6f8adc-2893-4478-b260-53c6cce6dfce", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-0000006c", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "f29ea68048f6-1530020288.1862", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1882", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "493c8a24-702d-4168-9353-3c22fe0cb8da", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000045;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_world_call", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "15", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1863", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "493c8a24-702d-4168-9353-3c22fe0cb8da", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000045;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1863", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000045;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "osvpi_route_fixeddestination", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1862", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "53d308f1-d51e-49d7-ae24-b240bec1a69d", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/ID4@osvpi_route_fixeddestination-00000044;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_world_call", "DestAccountCode": "26001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010002", "DestChannel": "Local/+31150010002@world_out-00000046;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010003", "DestContext": "world_out", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530020288.1855", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530020288.1867", "DialStatus": "CONTINUE", "Event": "DialEnd", "Exten": "+31150010002", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "15", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1859", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010002", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/+31150010002@world_out-00000046;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "world_out", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1867", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "93e02339-713e-4a2d-8f1b-c078e4243eb2", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010002@world_out-00000046;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010002", "Context": "voipgrid_out", "Event": "BridgeLeave", "Exten": "+31150010002", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1869", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Cause": "26", "Cause-txt": "Answered elsewhere", "Channel": "Local/ID4@osvpi_route_fixeddestination-00000044;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1859", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/+31150010002@world_out-00000046;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010002", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1869", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "93e02339-713e-4a2d-8f1b-c078e4243eb2", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010002", "Channel": "SIP/voipgrid-siproute-docker-0000006a", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1872", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "93e02339-713e-4a2d-8f1b-c078e4243eb2", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010002", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/voipgrid-siproute-docker-0000006a", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1872", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "9efe4b02-8578-4d03-8789-540757f559a0", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "566a1d5e-e3c0-4e7e-bb6d-a9b064444465", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "8e6f8adc-2893-4478-b260-53c6cce6dfce", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "SIP/voipgrid-siproute-docker-00000069", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_callgroup_step", "Event": "BridgeLeave", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "2", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1855", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "8e6f8adc-2893-4478-b260-53c6cce6dfce", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-0000006c", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1882", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "8e6f8adc-2893-4478-b260-53c6cce6dfce", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/voipgrid-siproute-docker-0000006c", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1882", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/voipgrid-siproute-docker-00000069", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "f29ea68048f6-1530020288.1855", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020288.1855", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ce2fe9e0-a19e-4538-b25c-868cf0b22337", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""} +] diff --git a/tests/fixtures/mobile/acceptance_group_reject.json b/tests/fixtures/mobile/acceptance_group_reject.json new file mode 100644 index 0000000..00aa425 --- /dev/null +++ b/tests/fixtures/mobile/acceptance_group_reject.json @@ -0,0 +1,129 @@ +[ + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "SIP/voipgrid-siproute-docker-00000072", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newchannel", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2044", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "SIP/voipgrid-siproute-docker-00000072", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2044", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "SIP/voipgrid-siproute-docker-00000072", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world", "Event": "NewAccountCode", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "10", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2044", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID3@osvpi_route_fixeddestination-0000004b;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_fixeddestination", "Event": "Newchannel", "Exten": "ID3", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2047", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID3@osvpi_route_fixeddestination-0000004b;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_fixeddestination", "Event": "Newchannel", "Exten": "ID3", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2049", "content": ""}, + {"AccountCode": "26001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID3@osvpi_route_fixeddestination-0000004b;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "osvpi_route_fixeddestination", "Event": "NewCallerid", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2047", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID3@osvpi_route_fixeddestination-0000004b;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "osvpi_route_fixeddestination", "Event": "NewAccountCode", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2047", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID3@osvpi_route_fixeddestination-0000004b;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "osvpi_route_fixeddestination", "Event": "NewConnectedLine", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2047", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID4@osvpi_route_fixeddestination-0000004c;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_fixeddestination", "Event": "Newchannel", "Exten": "ID4", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2051", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID4@osvpi_route_fixeddestination-0000004c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_fixeddestination", "Event": "Newchannel", "Exten": "ID4", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2053", "content": ""}, + {"AccountCode": "26001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID4@osvpi_route_fixeddestination-0000004c;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "osvpi_route_fixeddestination", "Event": "NewCallerid", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2051", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID4@osvpi_route_fixeddestination-0000004c;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "osvpi_route_fixeddestination", "Event": "NewAccountCode", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2051", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID4@osvpi_route_fixeddestination-0000004c;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "osvpi_route_fixeddestination", "Event": "NewConnectedLine", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2051", "content": ""}, + {"AccountCode": "26001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/ID3@osvpi_route_fixeddestination-0000004b;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_fixeddestination", "Event": "NewCallerid", "Exten": "ID3", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2049", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/ID3@osvpi_route_fixeddestination-0000004b;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_fixeddestination", "Event": "NewAccountCode", "Exten": "ID3", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2049", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/ID3@osvpi_route_fixeddestination-0000004b;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_fixeddestination", "Event": "NewConnectedLine", "Exten": "ID3", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2049", "content": ""}, + {"Context": "osvpi_route_fixeddestination", "Event": "LocalBridge", "Exten": "ID3", "LocalOneAccountCode": "26001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31260010001", "LocalOneChannel": "Local/ID3@osvpi_route_fixeddestination-0000004b;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31150010003", "LocalOneContext": "osvpi_route_fixeddestination", "LocalOneExten": "+31260010001", "LocalOneLanguage": "en", "LocalOneLinkedid": "f29ea68048f6-1530020779.2044", "LocalOnePriority": "1", "LocalOneUniqueid": "f29ea68048f6-1530020779.2047", "LocalOptimization": "Yes", "LocalTwoAccountCode": "26001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31150010003", "LocalTwoChannel": "Local/ID3@osvpi_route_fixeddestination-0000004b;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31260010001", "LocalTwoContext": "osvpi_route_fixeddestination", "LocalTwoExten": "ID3", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "f29ea68048f6-1530020779.2044", "LocalTwoPriority": "1", "LocalTwoUniqueid": "f29ea68048f6-1530020779.2049", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "SIP/voipgrid-siproute-docker-00000072", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_callgroup_step", "DestAccountCode": "26001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "Local/ID3@osvpi_route_fixeddestination-0000004b;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010003", "DestContext": "osvpi_route_fixeddestination", "DestExten": "+31260010001", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530020779.2044", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530020779.2047", "DialString": "ID3@osvpi_route_fixeddestination", "Event": "DialBegin", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "2", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2044", "content": ""}, + {"AccountCode": "26001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/ID4@osvpi_route_fixeddestination-0000004c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_fixeddestination", "Event": "NewCallerid", "Exten": "ID4", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2053", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/ID4@osvpi_route_fixeddestination-0000004c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_fixeddestination", "Event": "NewAccountCode", "Exten": "ID4", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2053", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/ID4@osvpi_route_fixeddestination-0000004c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_fixeddestination", "Event": "NewConnectedLine", "Exten": "ID4", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2053", "content": ""}, + {"Context": "osvpi_route_fixeddestination", "Event": "LocalBridge", "Exten": "ID4", "LocalOneAccountCode": "26001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31260010001", "LocalOneChannel": "Local/ID4@osvpi_route_fixeddestination-0000004c;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31150010003", "LocalOneContext": "osvpi_route_fixeddestination", "LocalOneExten": "+31260010001", "LocalOneLanguage": "en", "LocalOneLinkedid": "f29ea68048f6-1530020779.2044", "LocalOnePriority": "1", "LocalOneUniqueid": "f29ea68048f6-1530020779.2051", "LocalOptimization": "Yes", "LocalTwoAccountCode": "26001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31150010003", "LocalTwoChannel": "Local/ID4@osvpi_route_fixeddestination-0000004c;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31260010001", "LocalTwoContext": "osvpi_route_fixeddestination", "LocalTwoExten": "ID4", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "f29ea68048f6-1530020779.2044", "LocalTwoPriority": "1", "LocalTwoUniqueid": "f29ea68048f6-1530020779.2053", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "SIP/voipgrid-siproute-docker-00000072", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_callgroup_step", "DestAccountCode": "26001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "Local/ID4@osvpi_route_fixeddestination-0000004c;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010003", "DestContext": "osvpi_route_fixeddestination", "DestExten": "+31260010001", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530020779.2044", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530020779.2051", "DialString": "ID4@osvpi_route_fixeddestination", "Event": "DialBegin", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "2", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2044", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31150010001@world_out-0000004d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "world_out", "Event": "Newchannel", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2056", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31150010001@world_out-0000004d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "world_out", "Event": "Newchannel", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2058", "content": ""}, + {"AccountCode": "26001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-0000004d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "world_out", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2056", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-0000004d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "world_out", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2056", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-0000004d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "world_out", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2056", "content": ""}, + {"AccountCode": "26001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010001@world_out-0000004d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2058", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010001@world_out-0000004d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2058", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010001@world_out-0000004d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2058", "content": ""}, + {"Context": "world_out", "Event": "LocalBridge", "Exten": "+31150010001", "LocalOneAccountCode": "26001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31150010001", "LocalOneChannel": "Local/+31150010001@world_out-0000004d;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31150010003", "LocalOneContext": "world_out", "LocalOneExten": "+31150010001", "LocalOneLanguage": "en", "LocalOneLinkedid": "f29ea68048f6-1530020779.2044", "LocalOnePriority": "1", "LocalOneUniqueid": "f29ea68048f6-1530020779.2056", "LocalOptimization": "Yes", "LocalTwoAccountCode": "26001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31150010003", "LocalTwoChannel": "Local/+31150010001@world_out-0000004d;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31150010001", "LocalTwoContext": "world_out", "LocalTwoExten": "+31150010001", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "f29ea68048f6-1530020779.2044", "LocalTwoPriority": "1", "LocalTwoUniqueid": "f29ea68048f6-1530020779.2058", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/ID3@osvpi_route_fixeddestination-0000004b;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_world_call", "DestAccountCode": "26001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/+31150010001@world_out-0000004d;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010003", "DestContext": "world_out", "DestExten": "+31150010001", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530020779.2044", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530020779.2056", "DialString": "+31150010001@world_out", "Event": "DialBegin", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "15", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2049", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID3@osvpi_route_fixeddestination-0000004b;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "osvpi_route_fixeddestination", "Event": "Newstate", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2047", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31150010002@world_out-0000004e;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "world_out", "Event": "Newchannel", "Exten": "+31150010002", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2060", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31150010002@world_out-0000004e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "world_out", "Event": "Newchannel", "Exten": "+31150010002", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2062", "content": ""}, + {"AccountCode": "26001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010002", "Channel": "Local/+31150010002@world_out-0000004e;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "world_out", "Event": "NewCallerid", "Exten": "+31150010002", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2060", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010002", "Channel": "Local/+31150010002@world_out-0000004e;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "world_out", "Event": "NewAccountCode", "Exten": "+31150010002", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2060", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010002", "Channel": "Local/+31150010002@world_out-0000004e;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "world_out", "Event": "NewConnectedLine", "Exten": "+31150010002", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2060", "content": ""}, + {"AccountCode": "26001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010002@world_out-0000004e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010002", "Context": "world_out", "Event": "NewCallerid", "Exten": "+31150010002", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2062", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010002@world_out-0000004e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010002", "Context": "world_out", "Event": "NewAccountCode", "Exten": "+31150010002", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2062", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010002@world_out-0000004e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010002", "Context": "world_out", "Event": "NewConnectedLine", "Exten": "+31150010002", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2062", "content": ""}, + {"Context": "world_out", "Event": "LocalBridge", "Exten": "+31150010002", "LocalOneAccountCode": "26001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31150010002", "LocalOneChannel": "Local/+31150010002@world_out-0000004e;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31150010003", "LocalOneContext": "world_out", "LocalOneExten": "+31150010002", "LocalOneLanguage": "en", "LocalOneLinkedid": "f29ea68048f6-1530020779.2044", "LocalOnePriority": "1", "LocalOneUniqueid": "f29ea68048f6-1530020779.2060", "LocalOptimization": "Yes", "LocalTwoAccountCode": "26001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31150010003", "LocalTwoChannel": "Local/+31150010002@world_out-0000004e;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31150010002", "LocalTwoContext": "world_out", "LocalTwoExten": "+31150010002", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "f29ea68048f6-1530020779.2044", "LocalTwoPriority": "1", "LocalTwoUniqueid": "f29ea68048f6-1530020779.2062", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/ID4@osvpi_route_fixeddestination-0000004c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_world_call", "DestAccountCode": "26001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010002", "DestChannel": "Local/+31150010002@world_out-0000004e;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010003", "DestContext": "world_out", "DestExten": "+31150010002", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530020779.2044", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530020779.2060", "DialString": "+31150010002@world_out", "Event": "DialBegin", "Exten": "+31150010002", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "15", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2053", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID4@osvpi_route_fixeddestination-0000004c;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "osvpi_route_fixeddestination", "Event": "Newstate", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2051", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/voipgrid-siproute-docker-00000073", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2066", "content": ""}, + {"AccountCode": "26001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000073", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2066", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000073", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2066", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000073", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2066", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010001@world_out-0000004d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_out", "DestAccountCode": "26001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "SIP/voipgrid-siproute-docker-00000073", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010003", "DestContext": "voipgrid_in", "DestExten": "+31150010001", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530020779.2044", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530020779.2066", "DialString": "+31150010001@voipgrid-siproute-docker", "Event": "DialBegin", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2058", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/voipgrid-siproute-docker-00000074", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2069", "content": ""}, + {"AccountCode": "26001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010002", "Channel": "SIP/voipgrid-siproute-docker-00000074", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "NewCallerid", "Exten": "+31150010002", "Language": "nl", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2069", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010002", "Channel": "SIP/voipgrid-siproute-docker-00000074", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "NewAccountCode", "Exten": "+31150010002", "Language": "nl", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2069", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010002", "Channel": "SIP/voipgrid-siproute-docker-00000074", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "NewConnectedLine", "Exten": "+31150010002", "Language": "nl", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2069", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010002@world_out-0000004e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010002", "Context": "voipgrid_out", "DestAccountCode": "26001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010002", "DestChannel": "SIP/voipgrid-siproute-docker-00000074", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010003", "DestContext": "voipgrid_in", "DestExten": "+31150010002", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530020779.2044", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530020779.2069", "DialString": "+31150010002@voipgrid-siproute-docker", "Event": "DialBegin", "Exten": "+31150010002", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2062", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000073", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2066", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-0000004d;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "world_out", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2056", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010002", "Channel": "SIP/voipgrid-siproute-docker-00000074", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31150010002", "Language": "nl", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2069", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010002", "Channel": "Local/+31150010002@world_out-0000004e;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "world_out", "Event": "Newstate", "Exten": "+31150010002", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2060", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "982d81e7-466c-4391-87ab-c33af6f852c7", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "fb90e08f-8a00-4fc7-bba1-6848e57d4637", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000073", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2066", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010001@world_out-0000004d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_out", "DestAccountCode": "26001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "SIP/voipgrid-siproute-docker-00000073", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010003", "DestContext": "voipgrid_in", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530020779.2044", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530020779.2066", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2058", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010001@world_out-0000004d;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_out", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2058", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "3f138a15-cbc2-4779-8664-c388b551b125", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-0000004d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "world_out", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2056", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "3f138a15-cbc2-4779-8664-c388b551b125", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000073", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2066", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "3f138a15-cbc2-4779-8664-c388b551b125", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010001@world_out-0000004d;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_out", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2058", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "982d81e7-466c-4391-87ab-c33af6f852c7", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1e6ee467-a868-41fa-aaf0-49f8857cbe69", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "8b65ab18-f1f1-4fbf-804a-4fe9524fe9a2", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010002", "Channel": "SIP/voipgrid-siproute-docker-00000074", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31150010002", "Language": "nl", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2069", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010002@world_out-0000004e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010002", "Context": "voipgrid_out", "DestAccountCode": "26001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010002", "DestChannel": "SIP/voipgrid-siproute-docker-00000074", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010003", "DestContext": "voipgrid_in", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530020779.2044", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530020779.2069", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31150010002", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2062", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010002@world_out-0000004e;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010002", "Context": "voipgrid_out", "Event": "Newstate", "Exten": "+31150010002", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2062", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "cb7de80f-944e-4416-872b-cd526ad5dac8", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "cb7de80f-944e-4416-872b-cd526ad5dac8", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010002", "Channel": "SIP/voipgrid-siproute-docker-00000074", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2069", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010002", "Channel": "Local/+31150010002@world_out-0000004e;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "world_out", "Event": "Newstate", "Exten": "+31150010002", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2060", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "cb7de80f-944e-4416-872b-cd526ad5dac8", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010002@world_out-0000004e;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010002", "Context": "voipgrid_out", "Event": "BridgeEnter", "Exten": "+31150010002", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2062", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1e6ee467-a868-41fa-aaf0-49f8857cbe69", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "8b65ab18-f1f1-4fbf-804a-4fe9524fe9a2", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "cb7de80f-944e-4416-872b-cd526ad5dac8", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010002", "Channel": "SIP/voipgrid-siproute-docker-00000074", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2069", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "cb7de80f-944e-4416-872b-cd526ad5dac8", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010002@world_out-0000004e;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010002", "Context": "voipgrid_out", "Event": "BridgeLeave", "Exten": "+31150010002", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2062", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/+31150010002@world_out-0000004e;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010002", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2062", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "cb7de80f-944e-4416-872b-cd526ad5dac8", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010002", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/voipgrid-siproute-docker-00000074", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2069", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/ID4@osvpi_route_fixeddestination-0000004c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_world_call", "DestAccountCode": "26001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010002", "DestChannel": "Local/+31150010002@world_out-0000004e;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010003", "DestContext": "world_out", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530020779.2044", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530020779.2060", "DialStatus": "CONTINUE", "Event": "DialEnd", "Exten": "+31150010002", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "15", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2053", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010002", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/+31150010002@world_out-0000004e;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "world_out", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2060", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID4@osvpi_route_fixeddestination-0000004c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2053", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "SIP/voipgrid-siproute-docker-00000072", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_callgroup_step", "DestAccountCode": "26001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "Local/ID4@osvpi_route_fixeddestination-0000004c;1", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010003", "DestContext": "osvpi_route_fixeddestination", "DestExten": "+31260010001", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530020779.2044", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530020779.2051", "DialStatus": "NOANSWER", "Event": "DialEnd", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "2", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2044", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID4@osvpi_route_fixeddestination-0000004c;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "osvpi_route_fixeddestination", "Event": "Hangup", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2051", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/ID3@osvpi_route_fixeddestination-0000004b;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_world_call", "DestAccountCode": "26001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/+31150010001@world_out-0000004d;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010003", "DestContext": "world_out", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530020779.2044", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530020779.2056", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "15", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2049", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/ID3@osvpi_route_fixeddestination-0000004b;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_world_call", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "15", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2049", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID3@osvpi_route_fixeddestination-0000004b;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "osvpi_route_fixeddestination", "Event": "Newstate", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2047", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "SIP/voipgrid-siproute-docker-00000072", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_callgroup_step", "DestAccountCode": "26001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "Local/ID3@osvpi_route_fixeddestination-0000004b;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010003", "DestContext": "osvpi_route_fixeddestination", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530020779.2044", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530020779.2047", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "2", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2044", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1c6d33a6-b454-454d-bdeb-1c412ddc2ae6", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "SIP/voipgrid-siproute-docker-00000072", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_callgroup_step", "Event": "Newstate", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "2", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2044", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1c6d33a6-b454-454d-bdeb-1c412ddc2ae6", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-0000004d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "world_out", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2056", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1c6d33a6-b454-454d-bdeb-1c412ddc2ae6", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/ID3@osvpi_route_fixeddestination-0000004b;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_world_call", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "15", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2049", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2bcdf57f-d0eb-4cef-b671-3a58ae1bf780", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "8c18dd70-31d7-45eb-a41e-de93e9ea4733", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2bcdf57f-d0eb-4cef-b671-3a58ae1bf780", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID3@osvpi_route_fixeddestination-0000004b;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "osvpi_route_fixeddestination", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2047", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2bcdf57f-d0eb-4cef-b671-3a58ae1bf780", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "SIP/voipgrid-siproute-docker-00000072", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_callgroup_step", "Event": "BridgeEnter", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "2", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2044", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "7b4bd7de-70a4-428c-a029-69b57fbc9d16", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "3f138a15-cbc2-4779-8664-c388b551b125", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000073", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2066", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1c6d33a6-b454-454d-bdeb-1c412ddc2ae6", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-0000004d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "world_out", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2056", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1c6d33a6-b454-454d-bdeb-1c412ddc2ae6", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000073", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "f29ea68048f6-1530020779.2056", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2066", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "3f138a15-cbc2-4779-8664-c388b551b125", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010001@world_out-0000004d;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_out", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2058", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/+31150010001@world_out-0000004d;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2058", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "3f138a15-cbc2-4779-8664-c388b551b125", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/+31150010001@world_out-0000004d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "world_out", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2056", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1c6d33a6-b454-454d-bdeb-1c412ddc2ae6", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000073", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2066", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2bcdf57f-d0eb-4cef-b671-3a58ae1bf780", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID3@osvpi_route_fixeddestination-0000004b;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "osvpi_route_fixeddestination", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2047", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2bcdf57f-d0eb-4cef-b671-3a58ae1bf780", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000073", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "f29ea68048f6-1530020779.2047", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2066", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1c6d33a6-b454-454d-bdeb-1c412ddc2ae6", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/ID3@osvpi_route_fixeddestination-0000004b;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_world_call", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "15", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2049", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID3@osvpi_route_fixeddestination-0000004b;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "osvpi_route_fixeddestination", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2047", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1c6d33a6-b454-454d-bdeb-1c412ddc2ae6", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID3@osvpi_route_fixeddestination-0000004b;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2049", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "8c18dd70-31d7-45eb-a41e-de93e9ea4733", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "fb90e08f-8a00-4fc7-bba1-6848e57d4637", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2bcdf57f-d0eb-4cef-b671-3a58ae1bf780", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000073", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2066", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2bcdf57f-d0eb-4cef-b671-3a58ae1bf780", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "SIP/voipgrid-siproute-docker-00000072", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_callgroup_step", "Event": "BridgeLeave", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "2", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2044", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/voipgrid-siproute-docker-00000073", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2066", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2bcdf57f-d0eb-4cef-b671-3a58ae1bf780", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/voipgrid-siproute-docker-00000072", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "f29ea68048f6-1530020779.2044", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020779.2044", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "7b4bd7de-70a4-428c-a029-69b57fbc9d16", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""} +] diff --git a/tests/fixtures/mobile/acceptance_reject.json b/tests/fixtures/mobile/acceptance_reject.json new file mode 100644 index 0000000..07dd76f --- /dev/null +++ b/tests/fixtures/mobile/acceptance_reject.json @@ -0,0 +1,57 @@ +[ + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "SIP/voipgrid-siproute-docker-00000063", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newchannel", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1761", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "SIP/voipgrid-siproute-docker-00000063", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1761", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "SIP/voipgrid-siproute-docker-00000063", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world", "Event": "NewAccountCode", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "10", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1761", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000040;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_fixeddestination", "Event": "Newchannel", "Exten": "ID3", "Language": "en", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1763", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000040;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_fixeddestination", "Event": "Newchannel", "Exten": "ID3", "Language": "en", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1764", "content": ""}, + {"AccountCode": "26001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000040;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "osvpi_route_fixeddestination", "Event": "NewCallerid", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1763", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000040;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "osvpi_route_fixeddestination", "Event": "NewAccountCode", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1763", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000040;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "osvpi_route_fixeddestination", "Event": "NewConnectedLine", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1763", "content": ""}, + {"AccountCode": "26001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000040;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_fixeddestination", "Event": "NewCallerid", "Exten": "ID3", "Language": "en", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1764", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000040;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_fixeddestination", "Event": "NewAccountCode", "Exten": "ID3", "Language": "en", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1764", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000040;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_fixeddestination", "Event": "NewConnectedLine", "Exten": "ID3", "Language": "en", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1764", "content": ""}, + {"Context": "osvpi_route_fixeddestination", "Event": "LocalBridge", "Exten": "ID3", "LocalOneAccountCode": "26001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31260010001", "LocalOneChannel": "Local/ID3@osvpi_route_fixeddestination-00000040;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31150010003", "LocalOneContext": "osvpi_route_fixeddestination", "LocalOneExten": "+31260010001", "LocalOneLanguage": "en", "LocalOneLinkedid": "f29ea68048f6-1530020018.1761", "LocalOnePriority": "1", "LocalOneUniqueid": "f29ea68048f6-1530020018.1763", "LocalOptimization": "Yes", "LocalTwoAccountCode": "26001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31150010003", "LocalTwoChannel": "Local/ID3@osvpi_route_fixeddestination-00000040;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31260010001", "LocalTwoContext": "osvpi_route_fixeddestination", "LocalTwoExten": "ID3", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "f29ea68048f6-1530020018.1761", "LocalTwoPriority": "1", "LocalTwoUniqueid": "f29ea68048f6-1530020018.1764", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "SIP/voipgrid-siproute-docker-00000063", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_callgroup_step", "DestAccountCode": "26001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "Local/ID3@osvpi_route_fixeddestination-00000040;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010003", "DestContext": "osvpi_route_fixeddestination", "DestExten": "+31260010001", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530020018.1761", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530020018.1763", "DialString": "ID3@osvpi_route_fixeddestination", "Event": "DialBegin", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "2", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1761", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31150010001@world_out-00000041;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "world_out", "Event": "Newchannel", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1769", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31150010001@world_out-00000041;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "world_out", "Event": "Newchannel", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1771", "content": ""}, + {"AccountCode": "26001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-00000041;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "world_out", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1769", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-00000041;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "world_out", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1769", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-00000041;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "world_out", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1769", "content": ""}, + {"AccountCode": "26001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010001@world_out-00000041;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1771", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010001@world_out-00000041;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1771", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010001@world_out-00000041;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1771", "content": ""}, + {"Context": "world_out", "Event": "LocalBridge", "Exten": "+31150010001", "LocalOneAccountCode": "26001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31150010001", "LocalOneChannel": "Local/+31150010001@world_out-00000041;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31150010003", "LocalOneContext": "world_out", "LocalOneExten": "+31150010001", "LocalOneLanguage": "en", "LocalOneLinkedid": "f29ea68048f6-1530020018.1761", "LocalOnePriority": "1", "LocalOneUniqueid": "f29ea68048f6-1530020018.1769", "LocalOptimization": "Yes", "LocalTwoAccountCode": "26001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31150010003", "LocalTwoChannel": "Local/+31150010001@world_out-00000041;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31150010001", "LocalTwoContext": "world_out", "LocalTwoExten": "+31150010001", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "f29ea68048f6-1530020018.1761", "LocalTwoPriority": "1", "LocalTwoUniqueid": "f29ea68048f6-1530020018.1771", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000040;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_world_call", "DestAccountCode": "26001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/+31150010001@world_out-00000041;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010003", "DestContext": "world_out", "DestExten": "+31150010001", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530020018.1761", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530020018.1769", "DialString": "+31150010001@world_out", "Event": "DialBegin", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "15", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1764", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000040;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "osvpi_route_fixeddestination", "Event": "Newstate", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1763", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/voipgrid-siproute-docker-00000064", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1773", "content": ""}, + {"AccountCode": "26001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000064", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1773", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000064", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1773", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000064", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1773", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010001@world_out-00000041;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_out", "DestAccountCode": "26001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "SIP/voipgrid-siproute-docker-00000064", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010003", "DestContext": "voipgrid_in", "DestExten": "+31150010001", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530020018.1761", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530020018.1773", "DialString": "+31150010001@voipgrid-siproute-docker", "Event": "DialBegin", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1771", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000064", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1773", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-00000041;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "world_out", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1769", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "f11626d0-4e7e-4a9f-8718-d7caa54daeaa", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "5d1bae3d-cac7-46fb-878d-66f9dcf4c972", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000064", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1773", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010001@world_out-00000041;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_out", "DestAccountCode": "26001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "SIP/voipgrid-siproute-docker-00000064", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010003", "DestContext": "voipgrid_in", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530020018.1761", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530020018.1773", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1771", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010001@world_out-00000041;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_out", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1771", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2270a185-3b38-4e02-9db0-6da69d417b33", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-00000041;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "world_out", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1769", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2270a185-3b38-4e02-9db0-6da69d417b33", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000064", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1773", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2270a185-3b38-4e02-9db0-6da69d417b33", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010001@world_out-00000041;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_out", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1771", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "f11626d0-4e7e-4a9f-8718-d7caa54daeaa", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "5d1bae3d-cac7-46fb-878d-66f9dcf4c972", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2270a185-3b38-4e02-9db0-6da69d417b33", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000064", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1773", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2270a185-3b38-4e02-9db0-6da69d417b33", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010001@world_out-00000041;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_out", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1771", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/voipgrid-siproute-docker-00000064", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1773", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2270a185-3b38-4e02-9db0-6da69d417b33", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/+31150010001@world_out-00000041;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1771", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000040;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_world_call", "DestAccountCode": "26001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/+31150010001@world_out-00000041;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010003", "DestContext": "world_out", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530020018.1761", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530020018.1769", "DialStatus": "CONTINUE", "Event": "DialEnd", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "15", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1764", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/+31150010001@world_out-00000041;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "world_out", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1769", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000040;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1764", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "SIP/voipgrid-siproute-docker-00000063", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_callgroup_step", "DestAccountCode": "26001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "Local/ID3@osvpi_route_fixeddestination-00000040;1", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010003", "DestContext": "osvpi_route_fixeddestination", "DestExten": "+31260010001", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530020018.1761", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530020018.1763", "DialStatus": "NOANSWER", "Event": "DialEnd", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "2", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1761", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000040;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "osvpi_route_fixeddestination", "Event": "Hangup", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1763", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/voipgrid-siproute-docker-00000063", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "f29ea68048f6-1530020018.1761", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530020018.1761", "content": ""} +] diff --git a/tests/fixtures/mobile/acceptance_simple.json b/tests/fixtures/mobile/acceptance_simple.json new file mode 100644 index 0000000..7155c77 --- /dev/null +++ b/tests/fixtures/mobile/acceptance_simple.json @@ -0,0 +1,80 @@ +[ + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000048", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newchannel", "Exten": "+31150010004", "Language": "en", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1232", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000048", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31150010004", "Language": "nl", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1232", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000048", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world", "Event": "NewAccountCode", "Exten": "+31150010004", "Language": "nl", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "10", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1232", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID1@osvpi_route_fixeddestination-0000002d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_fixeddestination", "Event": "Newchannel", "Exten": "ID1", "Language": "en", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1235", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID1@osvpi_route_fixeddestination-0000002d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_fixeddestination", "Event": "Newchannel", "Exten": "ID1", "Language": "en", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1237", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "Local/ID1@osvpi_route_fixeddestination-0000002d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_fixeddestination", "Event": "NewCallerid", "Exten": "+31150010004", "Language": "en", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1235", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "Local/ID1@osvpi_route_fixeddestination-0000002d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_fixeddestination", "Event": "NewAccountCode", "Exten": "+31150010004", "Language": "en", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1235", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "Local/ID1@osvpi_route_fixeddestination-0000002d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_fixeddestination", "Event": "NewConnectedLine", "Exten": "+31150010004", "Language": "en", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1235", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID1@osvpi_route_fixeddestination-0000002d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_route_fixeddestination", "Event": "NewCallerid", "Exten": "ID1", "Language": "en", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1237", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID1@osvpi_route_fixeddestination-0000002d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_route_fixeddestination", "Event": "NewAccountCode", "Exten": "ID1", "Language": "en", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1237", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID1@osvpi_route_fixeddestination-0000002d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_route_fixeddestination", "Event": "NewConnectedLine", "Exten": "ID1", "Language": "en", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1237", "content": ""}, + {"Context": "osvpi_route_fixeddestination", "Event": "LocalBridge", "Exten": "ID1", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31150010004", "LocalOneChannel": "Local/ID1@osvpi_route_fixeddestination-0000002d;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31150010001", "LocalOneContext": "osvpi_route_fixeddestination", "LocalOneExten": "+31150010004", "LocalOneLanguage": "en", "LocalOneLinkedid": "f29ea68048f6-1530017933.1232", "LocalOnePriority": "1", "LocalOneUniqueid": "f29ea68048f6-1530017933.1235", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31150010001", "LocalTwoChannel": "Local/ID1@osvpi_route_fixeddestination-0000002d;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31150010004", "LocalTwoContext": "osvpi_route_fixeddestination", "LocalTwoExten": "ID1", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "f29ea68048f6-1530017933.1232", "LocalTwoPriority": "1", "LocalTwoUniqueid": "f29ea68048f6-1530017933.1237", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000048", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_callgroup_step", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010004", "DestChannel": "Local/ID1@osvpi_route_fixeddestination-0000002d;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_route_fixeddestination", "DestExten": "+31150010004", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530017933.1232", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530017933.1235", "DialString": "ID1@osvpi_route_fixeddestination", "Event": "DialBegin", "Exten": "+31150010004", "Language": "nl", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "2", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1232", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31260010001@world_out-0000002e;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "world_out", "Event": "Newchannel", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1240", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31260010001@world_out-0000002e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "world_out", "Event": "Newchannel", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1242", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-0000002e;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewCallerid", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1240", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-0000002e;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewAccountCode", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1240", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-0000002e;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewConnectedLine", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1240", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-0000002e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "NewCallerid", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1242", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-0000002e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "NewAccountCode", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1242", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-0000002e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "NewConnectedLine", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1242", "content": ""}, + {"Context": "world_out", "Event": "LocalBridge", "Exten": "+31260010001", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31260010001", "LocalOneChannel": "Local/+31260010001@world_out-0000002e;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31150010001", "LocalOneContext": "world_out", "LocalOneExten": "+31260010001", "LocalOneLanguage": "en", "LocalOneLinkedid": "f29ea68048f6-1530017933.1232", "LocalOnePriority": "1", "LocalOneUniqueid": "f29ea68048f6-1530017933.1240", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31150010001", "LocalTwoChannel": "Local/+31260010001@world_out-0000002e;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31260010001", "LocalTwoContext": "world_out", "LocalTwoExten": "+31260010001", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "f29ea68048f6-1530017933.1232", "LocalTwoPriority": "1", "LocalTwoUniqueid": "f29ea68048f6-1530017933.1242", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID1@osvpi_route_fixeddestination-0000002d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_world_call", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "Local/+31260010001@world_out-0000002e;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "world_out", "DestExten": "+31260010001", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530017933.1232", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530017933.1240", "DialString": "+31260010001@world_out", "Event": "DialBegin", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "15", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1237", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "Local/ID1@osvpi_route_fixeddestination-0000002d;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_fixeddestination", "Event": "Newstate", "Exten": "+31150010004", "Language": "en", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1235", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/voipgrid-siproute-docker-00000049", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1245", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000049", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "NewCallerid", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1245", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000049", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "NewAccountCode", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1245", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000049", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "NewConnectedLine", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1245", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-0000002e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "SIP/voipgrid-siproute-docker-00000049", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "voipgrid_in", "DestExten": "+31260010001", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530017933.1232", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530017933.1245", "DialString": "+31260010001@voipgrid-siproute-docker", "Event": "DialBegin", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1242", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000049", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1245", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-0000002e;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "Newstate", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1240", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "a88a65b4-4e86-4536-b33f-3fbba448742b", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "a14ffcac-43bc-4674-ad5d-ce1db45dd506", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000049", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1245", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-0000002e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "SIP/voipgrid-siproute-docker-00000049", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "voipgrid_in", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530017933.1232", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530017933.1245", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1242", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-0000002e;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_out", "Event": "Newstate", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1242", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "69a3909c-a157-4332-b860-17e06eb6e429", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-0000002e;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "Newstate", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1240", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "69a3909c-a157-4332-b860-17e06eb6e429", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000049", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1245", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "69a3909c-a157-4332-b860-17e06eb6e429", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-0000002e;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_out", "Event": "BridgeEnter", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1242", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "a88a65b4-4e86-4536-b33f-3fbba448742b", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID1@osvpi_route_fixeddestination-0000002d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_world_call", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "Local/+31260010001@world_out-0000002e;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "world_out", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530017933.1232", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530017933.1240", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "15", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1237", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID1@osvpi_route_fixeddestination-0000002d;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_world_call", "Event": "Newstate", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "15", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1237", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "Local/ID1@osvpi_route_fixeddestination-0000002d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_fixeddestination", "Event": "Newstate", "Exten": "+31150010004", "Language": "en", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1235", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ff7167d4-215e-4503-afae-f83a38b63033", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000048", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_callgroup_step", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010004", "DestChannel": "Local/ID1@osvpi_route_fixeddestination-0000002d;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_route_fixeddestination", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530017933.1232", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530017933.1235", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31150010004", "Language": "nl", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "2", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1232", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000048", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_callgroup_step", "Event": "Newstate", "Exten": "+31150010004", "Language": "nl", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "2", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1232", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ff7167d4-215e-4503-afae-f83a38b63033", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-0000002e;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1240", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1004a046-1920-4edb-aa54-c193c901e703", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ff7167d4-215e-4503-afae-f83a38b63033", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID1@osvpi_route_fixeddestination-0000002d;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_world_call", "Event": "BridgeEnter", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "15", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1237", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1004a046-1920-4edb-aa54-c193c901e703", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "Local/ID1@osvpi_route_fixeddestination-0000002d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_fixeddestination", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1235", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1004a046-1920-4edb-aa54-c193c901e703", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000048", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_callgroup_step", "Event": "BridgeEnter", "Exten": "+31150010004", "Language": "nl", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "2", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1232", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1bb345cb-f605-4239-b3fe-d80ee5d0f5d0", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "b64cd2d2-9cc3-4e8a-acae-b3081e7d8d3b", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "69a3909c-a157-4332-b860-17e06eb6e429", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000049", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1245", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ff7167d4-215e-4503-afae-f83a38b63033", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-0000002e;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1240", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ff7167d4-215e-4503-afae-f83a38b63033", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000049", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "f29ea68048f6-1530017933.1240", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1245", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "69a3909c-a157-4332-b860-17e06eb6e429", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-0000002e;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_out", "Event": "BridgeLeave", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1242", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "69a3909c-a157-4332-b860-17e06eb6e429", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/+31260010001@world_out-0000002e;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1240", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/+31260010001@world_out-0000002e;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1242", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ff7167d4-215e-4503-afae-f83a38b63033", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000049", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1245", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1004a046-1920-4edb-aa54-c193c901e703", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "Local/ID1@osvpi_route_fixeddestination-0000002d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_fixeddestination", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1235", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1004a046-1920-4edb-aa54-c193c901e703", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000049", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "f29ea68048f6-1530017933.1235", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1245", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ff7167d4-215e-4503-afae-f83a38b63033", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID1@osvpi_route_fixeddestination-0000002d;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_world_call", "Event": "BridgeLeave", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "15", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1237", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ff7167d4-215e-4503-afae-f83a38b63033", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010004", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID1@osvpi_route_fixeddestination-0000002d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_fixeddestination", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1235", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID1@osvpi_route_fixeddestination-0000002d;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1237", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1bb345cb-f605-4239-b3fe-d80ee5d0f5d0", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "a14ffcac-43bc-4674-ad5d-ce1db45dd506", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1004a046-1920-4edb-aa54-c193c901e703", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000049", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1245", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1004a046-1920-4edb-aa54-c193c901e703", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000048", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_callgroup_step", "Event": "BridgeLeave", "Exten": "+31150010004", "Language": "nl", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "2", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1232", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/voipgrid-siproute-docker-00000049", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1245", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1004a046-1920-4edb-aa54-c193c901e703", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/voipgrid-siproute-docker-00000048", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "f29ea68048f6-1530017933.1232", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017933.1232", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "b64cd2d2-9cc3-4e8a-acae-b3081e7d8d3b", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""} +] diff --git a/tests/fixtures/mobile/acceptance_timeout.json b/tests/fixtures/mobile/acceptance_timeout.json new file mode 100644 index 0000000..ec66408 --- /dev/null +++ b/tests/fixtures/mobile/acceptance_timeout.json @@ -0,0 +1,57 @@ +[ + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "SIP/voipgrid-siproute-docker-0000007b", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newchannel", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2233", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "SIP/voipgrid-siproute-docker-0000007b", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2233", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "SIP/voipgrid-siproute-docker-0000007b", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world", "Event": "NewAccountCode", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "10", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2233", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000052;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_fixeddestination", "Event": "Newchannel", "Exten": "ID3", "Language": "en", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2236", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000052;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_fixeddestination", "Event": "Newchannel", "Exten": "ID3", "Language": "en", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2238", "content": ""}, + {"AccountCode": "26001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000052;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "osvpi_route_fixeddestination", "Event": "NewCallerid", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2236", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000052;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "osvpi_route_fixeddestination", "Event": "NewAccountCode", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2236", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000052;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "osvpi_route_fixeddestination", "Event": "NewConnectedLine", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2236", "content": ""}, + {"AccountCode": "26001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000052;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_fixeddestination", "Event": "NewCallerid", "Exten": "ID3", "Language": "en", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2238", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000052;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_fixeddestination", "Event": "NewAccountCode", "Exten": "ID3", "Language": "en", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2238", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000052;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_fixeddestination", "Event": "NewConnectedLine", "Exten": "ID3", "Language": "en", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2238", "content": ""}, + {"Context": "osvpi_route_fixeddestination", "Event": "LocalBridge", "Exten": "ID3", "LocalOneAccountCode": "26001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31260010001", "LocalOneChannel": "Local/ID3@osvpi_route_fixeddestination-00000052;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31150010003", "LocalOneContext": "osvpi_route_fixeddestination", "LocalOneExten": "+31260010001", "LocalOneLanguage": "en", "LocalOneLinkedid": "f29ea68048f6-1530021414.2233", "LocalOnePriority": "1", "LocalOneUniqueid": "f29ea68048f6-1530021414.2236", "LocalOptimization": "Yes", "LocalTwoAccountCode": "26001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31150010003", "LocalTwoChannel": "Local/ID3@osvpi_route_fixeddestination-00000052;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31260010001", "LocalTwoContext": "osvpi_route_fixeddestination", "LocalTwoExten": "ID3", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "f29ea68048f6-1530021414.2233", "LocalTwoPriority": "1", "LocalTwoUniqueid": "f29ea68048f6-1530021414.2238", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "SIP/voipgrid-siproute-docker-0000007b", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_callgroup_step", "DestAccountCode": "26001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "Local/ID3@osvpi_route_fixeddestination-00000052;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010003", "DestContext": "osvpi_route_fixeddestination", "DestExten": "+31260010001", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530021414.2233", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530021414.2236", "DialString": "ID3@osvpi_route_fixeddestination", "Event": "DialBegin", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "2", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2233", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31150010001@world_out-00000053;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "world_out", "Event": "Newchannel", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2241", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31150010001@world_out-00000053;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "world_out", "Event": "Newchannel", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2242", "content": ""}, + {"AccountCode": "26001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-00000053;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "world_out", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2241", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-00000053;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "world_out", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2241", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-00000053;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "world_out", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2241", "content": ""}, + {"AccountCode": "26001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010001@world_out-00000053;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2242", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010001@world_out-00000053;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2242", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010001@world_out-00000053;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2242", "content": ""}, + {"Context": "world_out", "Event": "LocalBridge", "Exten": "+31150010001", "LocalOneAccountCode": "26001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31150010001", "LocalOneChannel": "Local/+31150010001@world_out-00000053;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31150010003", "LocalOneContext": "world_out", "LocalOneExten": "+31150010001", "LocalOneLanguage": "en", "LocalOneLinkedid": "f29ea68048f6-1530021414.2233", "LocalOnePriority": "1", "LocalOneUniqueid": "f29ea68048f6-1530021414.2241", "LocalOptimization": "Yes", "LocalTwoAccountCode": "26001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31150010003", "LocalTwoChannel": "Local/+31150010001@world_out-00000053;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31150010001", "LocalTwoContext": "world_out", "LocalTwoExten": "+31150010001", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "f29ea68048f6-1530021414.2233", "LocalTwoPriority": "1", "LocalTwoUniqueid": "f29ea68048f6-1530021414.2242", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000052;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_world_call", "DestAccountCode": "26001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/+31150010001@world_out-00000053;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010003", "DestContext": "world_out", "DestExten": "+31150010001", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530021414.2233", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530021414.2241", "DialString": "+31150010001@world_out", "Event": "DialBegin", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "15", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2238", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000052;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "osvpi_route_fixeddestination", "Event": "Newstate", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2236", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/voipgrid-siproute-docker-0000007c", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2246", "content": ""}, + {"AccountCode": "26001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-0000007c", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2246", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-0000007c", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2246", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-0000007c", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2246", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010001@world_out-00000053;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_out", "DestAccountCode": "26001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "SIP/voipgrid-siproute-docker-0000007c", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010003", "DestContext": "voipgrid_in", "DestExten": "+31150010001", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530021414.2233", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530021414.2246", "DialString": "+31150010001@voipgrid-siproute-docker", "Event": "DialBegin", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2242", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-0000007c", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2246", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-00000053;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "world_out", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2241", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c7d58148-e347-4b75-8f48-8d68d73b2086", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c6476f6a-9df8-4e22-90f4-e0a2dbcbaf95", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-0000007c", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2246", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010001@world_out-00000053;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_out", "DestAccountCode": "26001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "SIP/voipgrid-siproute-docker-0000007c", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010003", "DestContext": "voipgrid_in", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530021414.2233", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530021414.2246", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2242", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010001@world_out-00000053;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_out", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2242", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-00000053;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "world_out", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2241", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "0b0fa3ea-c050-45e2-9f2a-1eae52dc2094", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "0b0fa3ea-c050-45e2-9f2a-1eae52dc2094", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-0000007c", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2246", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "0b0fa3ea-c050-45e2-9f2a-1eae52dc2094", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010001@world_out-00000053;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_out", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2242", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c7d58148-e347-4b75-8f48-8d68d73b2086", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "SIP/voipgrid-siproute-docker-0000007b", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_callgroup_step", "DestAccountCode": "26001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "Local/ID3@osvpi_route_fixeddestination-00000052;1", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010003", "DestContext": "osvpi_route_fixeddestination", "DestExten": "+31260010001", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530021414.2233", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530021414.2236", "DialStatus": "NOANSWER", "Event": "DialEnd", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "2", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2233", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "0", "Cause-txt": "Unknown", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000052;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "osvpi_route_fixeddestination", "Event": "Hangup", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2236", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Cause": "19", "Cause-txt": "User alerting, no answer", "Channel": "SIP/voipgrid-siproute-docker-0000007b", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2233", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000052;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_world_call", "DestAccountCode": "26001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/+31150010001@world_out-00000053;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010003", "DestContext": "world_out", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530021414.2233", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530021414.2241", "DialStatus": "CONTINUE", "Event": "DialEnd", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "15", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2238", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/+31150010001@world_out-00000053;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "world_out", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2241", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "0b0fa3ea-c050-45e2-9f2a-1eae52dc2094", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010003", "Channel": "Local/+31150010001@world_out-00000053;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_out", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2242", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID3@osvpi_route_fixeddestination-00000052;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2238", "content": ""}, + {"AccountCode": "26001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "0b0fa3ea-c050-45e2-9f2a-1eae52dc2094", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-0000007c", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2246", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "0b0fa3ea-c050-45e2-9f2a-1eae52dc2094", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010003", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/+31150010001@world_out-00000053;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2242", "content": ""}, + {"AccountCode": "26001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/voipgrid-siproute-docker-0000007c", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010003", "Context": "voipgrid_in", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530021414.2233", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530021414.2246", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c6476f6a-9df8-4e22-90f4-e0a2dbcbaf95", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""} +] diff --git a/tests/fixtures/mobile/simple_mobile.json b/tests/fixtures/mobile/simple_mobile.json new file mode 100644 index 0000000..7312a6b --- /dev/null +++ b/tests/fixtures/mobile/simple_mobile.json @@ -0,0 +1,80 @@ +[ + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000036", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newchannel", "Exten": "+31150010004", "Language": "en", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.892", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000036", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31150010004", "Language": "nl", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.892", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000036", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world", "Event": "NewAccountCode", "Exten": "+31150010004", "Language": "nl", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "10", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.892", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID1@osvpi_route_fixeddestination-00000021;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_fixeddestination", "Event": "Newchannel", "Exten": "ID1", "Language": "en", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.895", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID1@osvpi_route_fixeddestination-00000021;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_fixeddestination", "Event": "Newchannel", "Exten": "ID1", "Language": "en", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.897", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "Local/ID1@osvpi_route_fixeddestination-00000021;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_fixeddestination", "Event": "NewCallerid", "Exten": "+31150010004", "Language": "en", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.895", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "Local/ID1@osvpi_route_fixeddestination-00000021;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_fixeddestination", "Event": "NewAccountCode", "Exten": "+31150010004", "Language": "en", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.895", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "Local/ID1@osvpi_route_fixeddestination-00000021;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_fixeddestination", "Event": "NewConnectedLine", "Exten": "+31150010004", "Language": "en", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.895", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID1@osvpi_route_fixeddestination-00000021;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_route_fixeddestination", "Event": "NewCallerid", "Exten": "ID1", "Language": "en", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.897", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID1@osvpi_route_fixeddestination-00000021;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_route_fixeddestination", "Event": "NewAccountCode", "Exten": "ID1", "Language": "en", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.897", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID1@osvpi_route_fixeddestination-00000021;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_route_fixeddestination", "Event": "NewConnectedLine", "Exten": "ID1", "Language": "en", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.897", "content": ""}, + {"Context": "osvpi_route_fixeddestination", "Event": "LocalBridge", "Exten": "ID1", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31150010004", "LocalOneChannel": "Local/ID1@osvpi_route_fixeddestination-00000021;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31150010001", "LocalOneContext": "osvpi_route_fixeddestination", "LocalOneExten": "+31150010004", "LocalOneLanguage": "en", "LocalOneLinkedid": "f29ea68048f6-1530017224.892", "LocalOnePriority": "1", "LocalOneUniqueid": "f29ea68048f6-1530017224.895", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31150010001", "LocalTwoChannel": "Local/ID1@osvpi_route_fixeddestination-00000021;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31150010004", "LocalTwoContext": "osvpi_route_fixeddestination", "LocalTwoExten": "ID1", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "f29ea68048f6-1530017224.892", "LocalTwoPriority": "1", "LocalTwoUniqueid": "f29ea68048f6-1530017224.897", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000036", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_fixeddestination_step", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010004", "DestChannel": "Local/ID1@osvpi_route_fixeddestination-00000021;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_route_fixeddestination", "DestExten": "+31150010004", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530017224.892", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530017224.895", "DialString": "ID1@osvpi_route_fixeddestination", "Event": "DialBegin", "Exten": "+31150010004", "Language": "nl", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.892", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31260010001@world_out-00000022;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "world_out", "Event": "Newchannel", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.900", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31260010001@world_out-00000022;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "world_out", "Event": "Newchannel", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.902", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-00000022;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewCallerid", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.900", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-00000022;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewAccountCode", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.900", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-00000022;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewConnectedLine", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.900", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-00000022;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "NewCallerid", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.902", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-00000022;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "NewAccountCode", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.902", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-00000022;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "NewConnectedLine", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.902", "content": ""}, + {"Context": "world_out", "Event": "LocalBridge", "Exten": "+31260010001", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31260010001", "LocalOneChannel": "Local/+31260010001@world_out-00000022;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31150010001", "LocalOneContext": "world_out", "LocalOneExten": "+31260010001", "LocalOneLanguage": "en", "LocalOneLinkedid": "f29ea68048f6-1530017224.892", "LocalOnePriority": "1", "LocalOneUniqueid": "f29ea68048f6-1530017224.900", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31150010001", "LocalTwoChannel": "Local/+31260010001@world_out-00000022;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31260010001", "LocalTwoContext": "world_out", "LocalTwoExten": "+31260010001", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "f29ea68048f6-1530017224.892", "LocalTwoPriority": "1", "LocalTwoUniqueid": "f29ea68048f6-1530017224.902", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID1@osvpi_route_fixeddestination-00000021;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_world_call", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "Local/+31260010001@world_out-00000022;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "world_out", "DestExten": "+31260010001", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530017224.892", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530017224.900", "DialString": "+31260010001@world_out", "Event": "DialBegin", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "15", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.897", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "Local/ID1@osvpi_route_fixeddestination-00000021;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_fixeddestination", "Event": "Newstate", "Exten": "+31150010004", "Language": "en", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.895", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/voipgrid-siproute-docker-00000037", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.905", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000037", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "NewCallerid", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.905", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000037", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "NewAccountCode", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.905", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000037", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "NewConnectedLine", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.905", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-00000022;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "SIP/voipgrid-siproute-docker-00000037", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "voipgrid_in", "DestExten": "+31260010001", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530017224.892", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530017224.905", "DialString": "+31260010001@voipgrid-siproute-docker", "Event": "DialBegin", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.902", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000037", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.905", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-00000022;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "Newstate", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.900", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c8bfc3c4-368e-4324-a877-37910bbd96db", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "9dddb267-abbd-4f35-837b-a11ac3e20433", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000037", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.905", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-00000022;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "SIP/voipgrid-siproute-docker-00000037", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "voipgrid_in", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530017224.892", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530017224.905", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.902", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-00000022;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_out", "Event": "Newstate", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.902", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-00000022;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "Newstate", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.900", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "29575b99-466d-4384-a3a8-aa00660e437e", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID1@osvpi_route_fixeddestination-00000021;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_world_call", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "Local/+31260010001@world_out-00000022;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "world_out", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530017224.892", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530017224.900", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "15", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.897", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID1@osvpi_route_fixeddestination-00000021;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_world_call", "Event": "Newstate", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "15", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.897", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "Local/ID1@osvpi_route_fixeddestination-00000021;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_fixeddestination", "Event": "Newstate", "Exten": "+31150010004", "Language": "en", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.895", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c7967a68-69e6-4d80-8d72-274e2ecde28c", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000036", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_fixeddestination_step", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010004", "DestChannel": "Local/ID1@osvpi_route_fixeddestination-00000021;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_route_fixeddestination", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530017224.892", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530017224.895", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31150010004", "Language": "nl", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.892", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000036", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_fixeddestination_step", "Event": "Newstate", "Exten": "+31150010004", "Language": "nl", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.892", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1024c7b6-35e8-4551-a904-21bd8ae48dea", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1024c7b6-35e8-4551-a904-21bd8ae48dea", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "Local/ID1@osvpi_route_fixeddestination-00000021;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_fixeddestination", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.895", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "29575b99-466d-4384-a3a8-aa00660e437e", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000037", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.905", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c7967a68-69e6-4d80-8d72-274e2ecde28c", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-00000022;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.900", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1024c7b6-35e8-4551-a904-21bd8ae48dea", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000036", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_fixeddestination_step", "Event": "BridgeEnter", "Exten": "+31150010004", "Language": "nl", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.892", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "29575b99-466d-4384-a3a8-aa00660e437e", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-00000022;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_out", "Event": "BridgeEnter", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.902", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c7967a68-69e6-4d80-8d72-274e2ecde28c", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID1@osvpi_route_fixeddestination-00000021;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_world_call", "Event": "BridgeEnter", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "15", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.897", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "988644fa-54ad-4f14-8c78-c99494354da1", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "af5a0729-8acf-4ce3-91d7-a61154e46d08", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c8bfc3c4-368e-4324-a877-37910bbd96db", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "29575b99-466d-4384-a3a8-aa00660e437e", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000037", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.905", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c7967a68-69e6-4d80-8d72-274e2ecde28c", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-00000022;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.900", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c7967a68-69e6-4d80-8d72-274e2ecde28c", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000037", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "f29ea68048f6-1530017224.900", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.905", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "29575b99-466d-4384-a3a8-aa00660e437e", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-00000022;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_out", "Event": "BridgeLeave", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.902", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "29575b99-466d-4384-a3a8-aa00660e437e", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/+31260010001@world_out-00000022;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.902", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/+31260010001@world_out-00000022;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.900", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c7967a68-69e6-4d80-8d72-274e2ecde28c", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000037", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.905", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1024c7b6-35e8-4551-a904-21bd8ae48dea", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "Local/ID1@osvpi_route_fixeddestination-00000021;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_fixeddestination", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.895", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1024c7b6-35e8-4551-a904-21bd8ae48dea", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000037", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "f29ea68048f6-1530017224.895", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.905", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c7967a68-69e6-4d80-8d72-274e2ecde28c", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID1@osvpi_route_fixeddestination-00000021;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_world_call", "Event": "BridgeLeave", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "15", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.897", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010004", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID1@osvpi_route_fixeddestination-00000021;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_fixeddestination", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.895", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c7967a68-69e6-4d80-8d72-274e2ecde28c", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID1@osvpi_route_fixeddestination-00000021;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.897", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "988644fa-54ad-4f14-8c78-c99494354da1", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "9dddb267-abbd-4f35-837b-a11ac3e20433", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1024c7b6-35e8-4551-a904-21bd8ae48dea", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000037", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.905", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1024c7b6-35e8-4551-a904-21bd8ae48dea", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000036", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_fixeddestination_step", "Event": "BridgeLeave", "Exten": "+31150010004", "Language": "nl", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.892", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1024c7b6-35e8-4551-a904-21bd8ae48dea", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/voipgrid-siproute-docker-00000037", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.905", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/voipgrid-siproute-docker-00000036", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "f29ea68048f6-1530017224.892", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530017224.892", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "af5a0729-8acf-4ce3-91d7-a61154e46d08", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""} +] diff --git a/tests/fixtures/originate/cmn-world-world-unaccepted.json b/tests/fixtures/originate/cmn-world-world-unaccepted.json new file mode 100644 index 0000000..a7fe926 --- /dev/null +++ b/tests/fixtures/originate/cmn-world-world-unaccepted.json @@ -0,0 +1,84 @@ +[ + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400388@osvpi_proc_connectab_cmn-00000047;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_cmn", "Event": "Newchannel", "Exten": "ID400388", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1529", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400388@osvpi_proc_connectab_cmn-00000047;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_cmn", "Event": "Newchannel", "Exten": "ID400388", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1530", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400388@osvpi_proc_connectab_cmn-00000047;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_cmn", "Event": "NewAccountCode", "Exten": "ID400388", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1529", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400388@osvpi_proc_connectab_cmn-00000047;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_cmn", "Event": "NewAccountCode", "Exten": "ID400388", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1530", "content": ""}, + {"Context": "osvpi_proc_connectab_cmn", "Event": "LocalBridge", "Exten": "ID400388", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "", "LocalOneChannel": "Local/ID400388@osvpi_proc_connectab_cmn-00000047;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "", "LocalOneContext": "osvpi_proc_connectab_cmn", "LocalOneExten": "ID400388", "LocalOneLanguage": "en", "LocalOneLinkedid": "c4061ca6474c-1531991990.1529", "LocalOnePriority": "1", "LocalOneUniqueid": "c4061ca6474c-1531991990.1529", "LocalOptimization": "No", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "", "LocalTwoChannel": "Local/ID400388@osvpi_proc_connectab_cmn-00000047;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "", "LocalTwoContext": "osvpi_proc_connectab_cmn", "LocalTwoExten": "ID400388", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "c4061ca6474c-1531991990.1529", "LocalTwoPriority": "1", "LocalTwoUniqueid": "c4061ca6474c-1531991990.1530", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "", "DestChannel": "Local/ID400388@osvpi_proc_connectab_cmn-00000047;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "", "DestContext": "osvpi_proc_connectab_cmn", "DestExten": "ID400388", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531991990.1529", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531991990.1529", "DialString": "ID400388@osvpi_proc_connectab_cmn/n", "Event": "DialBegin", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "Calling...", "CallerIDNum": "", "Channel": "Local/ID400388@osvpi_proc_connectab_cmn-00000047;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "Event": "NewCallerid", "Exten": "ID400388", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "11", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1530", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID400388@osvpi_proc_connectab_cmn-00000047;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_set_cli", "Event": "NewCallerid", "Exten": "b_number", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1530", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000048;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world_call_permittedplus", "Event": "Newchannel", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1534", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000048;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world_call_permittedplus", "Event": "Newchannel", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1535", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "ID400388", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000048;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_world_call_permittedplus", "Event": "NewCallerid", "Exten": "ID400388", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1534", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400388", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000048;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_world_call_permittedplus", "Event": "NewAccountCode", "Exten": "ID400388", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1534", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400388", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000048;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_world_call_permittedplus", "Event": "NewConnectedLine", "Exten": "ID400388", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1534", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000048;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400388", "Context": "osvpi_world_call_permittedplus", "Event": "NewCallerid", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1535", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000048;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400388", "Context": "osvpi_world_call_permittedplus", "Event": "NewAccountCode", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1535", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000048;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400388", "Context": "osvpi_world_call_permittedplus", "Event": "NewConnectedLine", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1535", "content": ""}, + {"Context": "osvpi_world_call_permittedplus", "Event": "LocalBridge", "Exten": "+31260010001", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "ID400388", "LocalOneChannel": "Local/+31260010001@osvpi_world_call_permittedplus-00000048;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Calling...", "LocalOneConnectedLineNum": "+31150010001", "LocalOneContext": "osvpi_world_call_permittedplus", "LocalOneExten": "ID400388", "LocalOneLanguage": "en", "LocalOneLinkedid": "c4061ca6474c-1531991990.1529", "LocalOnePriority": "1", "LocalOneUniqueid": "c4061ca6474c-1531991990.1534", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "Calling...", "LocalTwoCallerIDNum": "+31150010001", "LocalTwoChannel": "Local/+31260010001@osvpi_world_call_permittedplus-00000048;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "ID400388", "LocalTwoContext": "osvpi_world_call_permittedplus", "LocalTwoExten": "+31260010001", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "c4061ca6474c-1531991990.1529", "LocalTwoPriority": "1", "LocalTwoUniqueid": "c4061ca6474c-1531991990.1535", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID400388@osvpi_proc_connectab_cmn-00000047;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "ID400388", "DestChannel": "Local/+31260010001@osvpi_world_call_permittedplus-00000048;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_world_call_permittedplus", "DestExten": "ID400388", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531991990.1529", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531991990.1534", "DialString": "+31260010001@osvpi_world_call_permittedplus", "Event": "DialBegin", "Exten": "ID400388", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "22", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1530", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31260010001@world_out-00000049;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "world_out", "Event": "Newchannel", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1539", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31260010001@world_out-00000049;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "world_out", "Event": "Newchannel", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1541", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-00000049;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewCallerid", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1539", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-00000049;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewAccountCode", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1539", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-00000049;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewConnectedLine", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1539", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-00000049;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "NewCallerid", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1541", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-00000049;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "NewAccountCode", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1541", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-00000049;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "NewConnectedLine", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1541", "content": ""}, + {"Context": "world_out", "Event": "LocalBridge", "Exten": "+31260010001", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31260010001", "LocalOneChannel": "Local/+31260010001@world_out-00000049;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Calling...", "LocalOneConnectedLineNum": "+31150010001", "LocalOneContext": "world_out", "LocalOneExten": "+31260010001", "LocalOneLanguage": "en", "LocalOneLinkedid": "c4061ca6474c-1531991990.1529", "LocalOnePriority": "1", "LocalOneUniqueid": "c4061ca6474c-1531991990.1539", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "Calling...", "LocalTwoCallerIDNum": "+31150010001", "LocalTwoChannel": "Local/+31260010001@world_out-00000049;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31260010001", "LocalTwoContext": "world_out", "LocalTwoExten": "+31260010001", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "c4061ca6474c-1531991990.1529", "LocalTwoPriority": "1", "LocalTwoUniqueid": "c4061ca6474c-1531991990.1541", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000048;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400388", "Context": "osvpi_world_call", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "Local/+31260010001@world_out-00000049;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "+31150010001", "DestContext": "world_out", "DestExten": "+31260010001", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531991990.1529", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531991990.1539", "DialString": "+31260010001@world_out", "Event": "DialBegin", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "15", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1535", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/voipgrid-siproute-docker-00000031", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1544", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000031", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "NewCallerid", "Exten": "+31260010001", "Language": "nl", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1544", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000031", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "NewAccountCode", "Exten": "+31260010001", "Language": "nl", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1544", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000031", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "NewConnectedLine", "Exten": "+31260010001", "Language": "nl", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1544", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-00000049;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "SIP/voipgrid-siproute-docker-00000031", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "+31150010001", "DestContext": "voipgrid_in", "DestExten": "+31260010001", "DestLanguage": "nl", "DestLinkedid": "c4061ca6474c-1531991990.1529", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531991990.1544", "DialString": "+31260010001@voipgrid-siproute-docker", "Event": "DialBegin", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1541", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000031", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31260010001", "Language": "nl", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1544", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-00000049;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "Newstate", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1539", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400388", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000048;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_world_call_permittedplus", "Event": "Newstate", "Exten": "ID400388", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1534", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400388@osvpi_proc_connectab_cmn-00000047;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_cmn", "Event": "Newstate", "Exten": "ID400388", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1529", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "23ec1a32-86a5-4c9c-ac8b-e83dbcd3fbc3", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "113f538d-331b-4bd3-950c-b87256723374", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000031", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31260010001", "Language": "nl", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1544", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-00000049;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "SIP/voipgrid-siproute-docker-00000031", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "+31150010001", "DestContext": "voipgrid_in", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "c4061ca6474c-1531991990.1529", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531991990.1544", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1541", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-00000049;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_out", "Event": "Newstate", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1541", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-00000049;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "Newstate", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1539", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "895dc1ab-2723-4652-aba5-314c87b68ffa", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "895dc1ab-2723-4652-aba5-314c87b68ffa", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000031", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1544", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000048;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400388", "Context": "osvpi_world_call", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "Local/+31260010001@world_out-00000049;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "+31150010001", "DestContext": "world_out", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531991990.1529", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531991990.1539", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "15", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1535", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000048;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400388", "Context": "osvpi_world_call", "Event": "Newstate", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "15", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1535", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "895dc1ab-2723-4652-aba5-314c87b68ffa", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-00000049;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_out", "Event": "BridgeEnter", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1541", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "0a4f7350-d048-45ca-9f86-56affbfd9887", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400388", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000048;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_world_call_permittedplus", "Event": "Newstate", "Exten": "ID400388", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1534", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID400388@osvpi_proc_connectab_cmn-00000047;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "ID400388", "DestChannel": "Local/+31260010001@osvpi_world_call_permittedplus-00000048;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_world_call_permittedplus", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531991990.1529", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531991990.1534", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "ID400388", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "22", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1530", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID400388@osvpi_proc_connectab_cmn-00000047;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "Event": "Newstate", "Exten": "ID400388", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "22", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1530", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400388@osvpi_proc_connectab_cmn-00000047;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_cmn", "Event": "Newstate", "Exten": "ID400388", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1529", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "0a4f7350-d048-45ca-9f86-56affbfd9887", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-00000049;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1539", "content": ""}, + {"DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "", "DestChannel": "Local/ID400388@osvpi_proc_connectab_cmn-00000047;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "", "DestContext": "osvpi_proc_connectab_cmn", "DestExten": "ID400388", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531991990.1529", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531991990.1529", "DialStatus": "ANSWER", "Event": "DialEnd", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "0a4f7350-d048-45ca-9f86-56affbfd9887", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000048;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400388", "Context": "osvpi_world_call", "Event": "BridgeEnter", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "15", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1535", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "3b28ee7b-cf6c-4a5a-bee4-5a151a238b68", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "3b28ee7b-cf6c-4a5a-bee4-5a151a238b68", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "ID400388", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000048;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_world_call_permittedplus", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1534", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "3b28ee7b-cf6c-4a5a-bee4-5a151a238b68", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID400388@osvpi_proc_connectab_cmn-00000047;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "Event": "BridgeEnter", "Exten": "ID400388", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "22", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1530", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "23ec1a32-86a5-4c9c-ac8b-e83dbcd3fbc3", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "895dc1ab-2723-4652-aba5-314c87b68ffa", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000031", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1544", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "0a4f7350-d048-45ca-9f86-56affbfd9887", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-00000049;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1539", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "0a4f7350-d048-45ca-9f86-56affbfd9887", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000031", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "c4061ca6474c-1531991990.1539", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1544", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "895dc1ab-2723-4652-aba5-314c87b68ffa", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-00000049;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_out", "Event": "BridgeLeave", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1541", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "895dc1ab-2723-4652-aba5-314c87b68ffa", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/+31260010001@world_out-00000049;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1539", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/+31260010001@world_out-00000049;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1541", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "0a4f7350-d048-45ca-9f86-56affbfd9887", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000031", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1544", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "3b28ee7b-cf6c-4a5a-bee4-5a151a238b68", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "ID400388", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000048;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_world_call_permittedplus", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1534", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "3b28ee7b-cf6c-4a5a-bee4-5a151a238b68", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000031", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "c4061ca6474c-1531991990.1534", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1544", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "0a4f7350-d048-45ca-9f86-56affbfd9887", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000048;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400388", "Context": "osvpi_world_call", "Event": "BridgeLeave", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "15", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1535", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "0a4f7350-d048-45ca-9f86-56affbfd9887", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400388", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000048;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_world_call_permittedplus", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1534", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000048;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400388", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1535", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID400388@osvpi_proc_connectab_cmn-00000047;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1529", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "3b28ee7b-cf6c-4a5a-bee4-5a151a238b68", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID400388@osvpi_proc_connectab_cmn-00000047;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "Event": "BridgeLeave", "Exten": "ID400388", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "22", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1530", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "3b28ee7b-cf6c-4a5a-bee4-5a151a238b68", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000031", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1544", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "3b28ee7b-cf6c-4a5a-bee4-5a151a238b68", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/voipgrid-siproute-docker-00000031", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1544", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "113f538d-331b-4bd3-950c-b87256723374", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID400388@osvpi_proc_connectab_cmn-00000047;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531991990.1529", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991990.1530", "content": ""} +] diff --git a/tests/fixtures/originate/cmn-world-world.json b/tests/fixtures/originate/cmn-world-world.json new file mode 100644 index 0000000..1865215 --- /dev/null +++ b/tests/fixtures/originate/cmn-world-world.json @@ -0,0 +1,152 @@ +[ + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400387@osvpi_proc_connectab_cmn-00000040;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_cmn", "Event": "Newchannel", "Exten": "ID400387", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1348", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400387@osvpi_proc_connectab_cmn-00000040;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_cmn", "Event": "Newchannel", "Exten": "ID400387", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1349", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400387@osvpi_proc_connectab_cmn-00000040;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_cmn", "Event": "NewAccountCode", "Exten": "ID400387", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1348", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400387@osvpi_proc_connectab_cmn-00000040;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_cmn", "Event": "NewAccountCode", "Exten": "ID400387", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1349", "content": ""}, + {"Context": "osvpi_proc_connectab_cmn", "Event": "LocalBridge", "Exten": "ID400387", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "", "LocalOneChannel": "Local/ID400387@osvpi_proc_connectab_cmn-00000040;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "", "LocalOneContext": "osvpi_proc_connectab_cmn", "LocalOneExten": "ID400387", "LocalOneLanguage": "en", "LocalOneLinkedid": "c4061ca6474c-1531991959.1348", "LocalOnePriority": "1", "LocalOneUniqueid": "c4061ca6474c-1531991959.1348", "LocalOptimization": "No", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "", "LocalTwoChannel": "Local/ID400387@osvpi_proc_connectab_cmn-00000040;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "", "LocalTwoContext": "osvpi_proc_connectab_cmn", "LocalTwoExten": "ID400387", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "c4061ca6474c-1531991959.1348", "LocalTwoPriority": "1", "LocalTwoUniqueid": "c4061ca6474c-1531991959.1349", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "", "DestChannel": "Local/ID400387@osvpi_proc_connectab_cmn-00000040;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "", "DestContext": "osvpi_proc_connectab_cmn", "DestExten": "ID400387", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531991959.1348", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531991959.1348", "DialString": "ID400387@osvpi_proc_connectab_cmn/n", "Event": "DialBegin", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "Calling...", "CallerIDNum": "", "Channel": "Local/ID400387@osvpi_proc_connectab_cmn-00000040;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "Event": "NewCallerid", "Exten": "ID400387", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "11", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1349", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID400387@osvpi_proc_connectab_cmn-00000040;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_set_cli", "Event": "NewCallerid", "Exten": "b_number", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1349", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000041;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world_call_permittedplus", "Event": "Newchannel", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1353", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000041;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world_call_permittedplus", "Event": "Newchannel", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1355", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "ID400387", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000041;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_world_call_permittedplus", "Event": "NewCallerid", "Exten": "ID400387", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1353", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400387", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000041;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_world_call_permittedplus", "Event": "NewAccountCode", "Exten": "ID400387", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1353", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400387", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000041;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_world_call_permittedplus", "Event": "NewConnectedLine", "Exten": "ID400387", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1353", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000041;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400387", "Context": "osvpi_world_call_permittedplus", "Event": "NewCallerid", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1355", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000041;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400387", "Context": "osvpi_world_call_permittedplus", "Event": "NewAccountCode", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1355", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000041;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400387", "Context": "osvpi_world_call_permittedplus", "Event": "NewConnectedLine", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1355", "content": ""}, + {"Context": "osvpi_world_call_permittedplus", "Event": "LocalBridge", "Exten": "+31260010001", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "ID400387", "LocalOneChannel": "Local/+31260010001@osvpi_world_call_permittedplus-00000041;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Calling...", "LocalOneConnectedLineNum": "+31150010001", "LocalOneContext": "osvpi_world_call_permittedplus", "LocalOneExten": "ID400387", "LocalOneLanguage": "en", "LocalOneLinkedid": "c4061ca6474c-1531991959.1348", "LocalOnePriority": "1", "LocalOneUniqueid": "c4061ca6474c-1531991959.1353", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "Calling...", "LocalTwoCallerIDNum": "+31150010001", "LocalTwoChannel": "Local/+31260010001@osvpi_world_call_permittedplus-00000041;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "ID400387", "LocalTwoContext": "osvpi_world_call_permittedplus", "LocalTwoExten": "+31260010001", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "c4061ca6474c-1531991959.1348", "LocalTwoPriority": "1", "LocalTwoUniqueid": "c4061ca6474c-1531991959.1355", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID400387@osvpi_proc_connectab_cmn-00000040;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "ID400387", "DestChannel": "Local/+31260010001@osvpi_world_call_permittedplus-00000041;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_world_call_permittedplus", "DestExten": "ID400387", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531991959.1348", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531991959.1353", "DialString": "+31260010001@osvpi_world_call_permittedplus", "Event": "DialBegin", "Exten": "ID400387", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "22", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1349", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31260010001@world_out-00000042;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "world_out", "Event": "Newchannel", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1358", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31260010001@world_out-00000042;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "world_out", "Event": "Newchannel", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1360", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-00000042;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewCallerid", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1358", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-00000042;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewAccountCode", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1358", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-00000042;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewConnectedLine", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1358", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-00000042;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "NewCallerid", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1360", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-00000042;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "NewAccountCode", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1360", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-00000042;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "NewConnectedLine", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1360", "content": ""}, + {"Context": "world_out", "Event": "LocalBridge", "Exten": "+31260010001", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31260010001", "LocalOneChannel": "Local/+31260010001@world_out-00000042;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Calling...", "LocalOneConnectedLineNum": "+31150010001", "LocalOneContext": "world_out", "LocalOneExten": "+31260010001", "LocalOneLanguage": "en", "LocalOneLinkedid": "c4061ca6474c-1531991959.1348", "LocalOnePriority": "1", "LocalOneUniqueid": "c4061ca6474c-1531991959.1358", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "Calling...", "LocalTwoCallerIDNum": "+31150010001", "LocalTwoChannel": "Local/+31260010001@world_out-00000042;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31260010001", "LocalTwoContext": "world_out", "LocalTwoExten": "+31260010001", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "c4061ca6474c-1531991959.1348", "LocalTwoPriority": "1", "LocalTwoUniqueid": "c4061ca6474c-1531991959.1360", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000041;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400387", "Context": "osvpi_world_call", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "Local/+31260010001@world_out-00000042;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "+31150010001", "DestContext": "world_out", "DestExten": "+31260010001", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531991959.1348", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531991959.1358", "DialString": "+31260010001@world_out", "Event": "DialBegin", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "15", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1355", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/voipgrid-siproute-docker-0000002b", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1363", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-0000002b", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "NewCallerid", "Exten": "+31260010001", "Language": "nl", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1363", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-0000002b", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "NewAccountCode", "Exten": "+31260010001", "Language": "nl", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1363", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-0000002b", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "NewConnectedLine", "Exten": "+31260010001", "Language": "nl", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1363", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-00000042;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "SIP/voipgrid-siproute-docker-0000002b", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "+31150010001", "DestContext": "voipgrid_in", "DestExten": "+31260010001", "DestLanguage": "nl", "DestLinkedid": "c4061ca6474c-1531991959.1348", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531991959.1363", "DialString": "+31260010001@voipgrid-siproute-docker", "Event": "DialBegin", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1360", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-0000002b", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31260010001", "Language": "nl", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1363", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-00000042;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "Newstate", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1358", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400387", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000041;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_world_call_permittedplus", "Event": "Newstate", "Exten": "ID400387", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1353", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400387@osvpi_proc_connectab_cmn-00000040;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_cmn", "Event": "Newstate", "Exten": "ID400387", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1348", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "f9d16b46-1468-4391-aaa3-67cc3c3e39d5", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "80ed1b1b-3a84-412e-98df-d4afa85f96d3", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-0000002b", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31260010001", "Language": "nl", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1363", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-00000042;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "SIP/voipgrid-siproute-docker-0000002b", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "+31150010001", "DestContext": "voipgrid_in", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "c4061ca6474c-1531991959.1348", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531991959.1363", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1360", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-00000042;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_out", "Event": "Newstate", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1360", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-00000042;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "Newstate", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1358", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "88a195f9-a958-4d89-914d-62c845fce155", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000041;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400387", "Context": "osvpi_world_call", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "Local/+31260010001@world_out-00000042;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "+31150010001", "DestContext": "world_out", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531991959.1348", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531991959.1358", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "15", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1355", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000041;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400387", "Context": "osvpi_world_call", "Event": "Newstate", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "15", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1355", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400387", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000041;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_world_call_permittedplus", "Event": "Newstate", "Exten": "ID400387", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1353", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "88a195f9-a958-4d89-914d-62c845fce155", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-0000002b", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1363", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "499727a2-0ab8-4bed-8bf1-b4264039a660", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "88a195f9-a958-4d89-914d-62c845fce155", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-00000042;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_out", "Event": "BridgeEnter", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1360", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "499727a2-0ab8-4bed-8bf1-b4264039a660", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-00000042;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1358", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "499727a2-0ab8-4bed-8bf1-b4264039a660", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000041;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400387", "Context": "osvpi_world_call", "Event": "BridgeEnter", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "15", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1355", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID400387@osvpi_proc_connectab_cmn-00000040;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "ID400387", "DestChannel": "Local/+31260010001@osvpi_world_call_permittedplus-00000041;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_world_call_permittedplus", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531991959.1348", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531991959.1353", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "ID400387", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "22", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1349", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID400387@osvpi_proc_connectab_cmn-00000040;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "Event": "Newstate", "Exten": "ID400387", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "22", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1349", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4896fab4-7f23-4936-9288-c988f918e664", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400387@osvpi_proc_connectab_cmn-00000040;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_cmn", "Event": "Newstate", "Exten": "ID400387", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1348", "content": ""}, + {"DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "", "DestChannel": "Local/ID400387@osvpi_proc_connectab_cmn-00000040;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "", "DestContext": "osvpi_proc_connectab_cmn", "DestExten": "ID400387", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531991959.1348", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531991959.1348", "DialStatus": "ANSWER", "Event": "DialEnd", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4896fab4-7f23-4936-9288-c988f918e664", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "ID400387", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000041;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_world_call_permittedplus", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1353", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4896fab4-7f23-4936-9288-c988f918e664", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID400387@osvpi_proc_connectab_cmn-00000040;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "Event": "BridgeEnter", "Exten": "ID400387", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "22", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1349", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "f9d16b46-1468-4391-aaa3-67cc3c3e39d5", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "88a195f9-a958-4d89-914d-62c845fce155", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-0000002b", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1363", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "499727a2-0ab8-4bed-8bf1-b4264039a660", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-00000042;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1358", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "499727a2-0ab8-4bed-8bf1-b4264039a660", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-0000002b", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "c4061ca6474c-1531991959.1358", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1363", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "88a195f9-a958-4d89-914d-62c845fce155", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-00000042;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_out", "Event": "BridgeLeave", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1360", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/+31260010001@world_out-00000042;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1358", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "88a195f9-a958-4d89-914d-62c845fce155", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/+31260010001@world_out-00000042;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1360", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "499727a2-0ab8-4bed-8bf1-b4264039a660", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-0000002b", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1363", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4896fab4-7f23-4936-9288-c988f918e664", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "ID400387", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000041;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_world_call_permittedplus", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1353", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4896fab4-7f23-4936-9288-c988f918e664", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-0000002b", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "c4061ca6474c-1531991959.1353", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1363", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "499727a2-0ab8-4bed-8bf1-b4264039a660", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000041;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400387", "Context": "osvpi_world_call", "Event": "BridgeLeave", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "15", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1355", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "499727a2-0ab8-4bed-8bf1-b4264039a660", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400387", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000041;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_world_call_permittedplus", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1353", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000041;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400387", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1355", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID400387@osvpi_proc_connectab_cmn-00000040;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_set_cli", "Event": "NewCallerid", "Exten": "a_number", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1348", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31150010001@osvpi_world_call_permittedplus-00000044;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world_call_permittedplus", "Event": "Newchannel", "Exten": "+31150010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1427", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31150010001@osvpi_world_call_permittedplus-00000044;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world_call_permittedplus", "Event": "Newchannel", "Exten": "+31150010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1429", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "ID400387", "Channel": "Local/+31150010001@osvpi_world_call_permittedplus-00000044;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_world_call_permittedplus", "Event": "NewCallerid", "Exten": "ID400387", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1427", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400387", "Channel": "Local/+31150010001@osvpi_world_call_permittedplus-00000044;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_world_call_permittedplus", "Event": "NewAccountCode", "Exten": "ID400387", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1427", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400387", "Channel": "Local/+31150010001@osvpi_world_call_permittedplus-00000044;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_world_call_permittedplus", "Event": "NewConnectedLine", "Exten": "ID400387", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1427", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31150010001@osvpi_world_call_permittedplus-00000044;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400387", "Context": "osvpi_world_call_permittedplus", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1429", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31150010001@osvpi_world_call_permittedplus-00000044;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400387", "Context": "osvpi_world_call_permittedplus", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1429", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31150010001@osvpi_world_call_permittedplus-00000044;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400387", "Context": "osvpi_world_call_permittedplus", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1429", "content": ""}, + {"Context": "osvpi_world_call_permittedplus", "Event": "LocalBridge", "Exten": "+31150010001", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "ID400387", "LocalOneChannel": "Local/+31150010001@osvpi_world_call_permittedplus-00000044;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31260010001", "LocalOneContext": "osvpi_world_call_permittedplus", "LocalOneExten": "ID400387", "LocalOneLanguage": "en", "LocalOneLinkedid": "c4061ca6474c-1531991959.1348", "LocalOnePriority": "1", "LocalOneUniqueid": "c4061ca6474c-1531991966.1427", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31260010001", "LocalTwoChannel": "Local/+31150010001@osvpi_world_call_permittedplus-00000044;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "ID400387", "LocalTwoContext": "osvpi_world_call_permittedplus", "LocalTwoExten": "+31150010001", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "c4061ca6474c-1531991959.1348", "LocalTwoPriority": "1", "LocalTwoUniqueid": "c4061ca6474c-1531991966.1429", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID400387@osvpi_proc_connectab_cmn-00000040;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_worker", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "ID400387", "DestChannel": "Local/+31150010001@osvpi_world_call_permittedplus-00000044;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_world_call_permittedplus", "DestExten": "ID400387", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531991959.1348", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531991966.1427", "DialString": "+31150010001@osvpi_world_call_permittedplus", "Event": "DialBegin", "Exten": "ID400387", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "28", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1348", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31150010001@world_out-00000045;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "world_out", "Event": "Newchannel", "Exten": "+31150010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1432", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31150010001@world_out-00000045;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "world_out", "Event": "Newchannel", "Exten": "+31150010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1434", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-00000045;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1432", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-00000045;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1432", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-00000045;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1432", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31150010001@world_out-00000045;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1434", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31150010001@world_out-00000045;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1434", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31150010001@world_out-00000045;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1434", "content": ""}, + {"Context": "world_out", "Event": "LocalBridge", "Exten": "+31150010001", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31150010001", "LocalOneChannel": "Local/+31150010001@world_out-00000045;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31260010001", "LocalOneContext": "world_out", "LocalOneExten": "+31150010001", "LocalOneLanguage": "en", "LocalOneLinkedid": "c4061ca6474c-1531991959.1348", "LocalOnePriority": "1", "LocalOneUniqueid": "c4061ca6474c-1531991966.1432", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31260010001", "LocalTwoChannel": "Local/+31150010001@world_out-00000045;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31150010001", "LocalTwoContext": "world_out", "LocalTwoExten": "+31150010001", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "c4061ca6474c-1531991959.1348", "LocalTwoPriority": "1", "LocalTwoUniqueid": "c4061ca6474c-1531991966.1434", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31150010001@osvpi_world_call_permittedplus-00000044;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400387", "Context": "osvpi_world_call", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/+31150010001@world_out-00000045;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "world_out", "DestExten": "+31150010001", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531991959.1348", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531991966.1432", "DialString": "+31150010001@world_out", "Event": "DialBegin", "Exten": "+31150010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "15", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1429", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/voipgrid-siproute-docker-0000002e", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1437", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-0000002e", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_in", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "nl", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1437", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-0000002e", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_in", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "nl", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1437", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-0000002e", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_in", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "nl", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1437", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31150010001@world_out-00000045;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "SIP/voipgrid-siproute-docker-0000002e", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "voipgrid_in", "DestExten": "+31150010001", "DestLanguage": "nl", "DestLinkedid": "c4061ca6474c-1531991959.1348", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531991966.1437", "DialString": "+31150010001@voipgrid-siproute-docker", "Event": "DialBegin", "Exten": "+31150010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1434", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-0000002e", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1437", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-00000045;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1432", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400387", "Channel": "Local/+31150010001@osvpi_world_call_permittedplus-00000044;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_world_call_permittedplus", "Event": "Newstate", "Exten": "ID400387", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1427", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "abe3a1ad-04ef-4fc2-b723-71e55a7541cf", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "49bde5b2-6829-4786-9854-398d494c00ee", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-0000002e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1437", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31150010001@world_out-00000045;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "SIP/voipgrid-siproute-docker-0000002e", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "voipgrid_in", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "c4061ca6474c-1531991959.1348", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531991966.1437", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31150010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1434", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31150010001@world_out-00000045;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_out", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1434", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2630b7d0-d7c5-4f80-b4fe-a3368fb95c46", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-00000045;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1432", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2630b7d0-d7c5-4f80-b4fe-a3368fb95c46", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-0000002e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_in", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1437", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31150010001@osvpi_world_call_permittedplus-00000044;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400387", "Context": "osvpi_world_call", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/+31150010001@world_out-00000045;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "world_out", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531991959.1348", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531991966.1432", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31150010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "15", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1429", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31150010001@osvpi_world_call_permittedplus-00000044;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400387", "Context": "osvpi_world_call", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "15", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1429", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400387", "Channel": "Local/+31150010001@osvpi_world_call_permittedplus-00000044;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_world_call_permittedplus", "Event": "Newstate", "Exten": "ID400387", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1427", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2630b7d0-d7c5-4f80-b4fe-a3368fb95c46", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31150010001@world_out-00000045;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_out", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1434", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "677e45d3-50d6-4633-870c-649fc31c66a2", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "677e45d3-50d6-4633-870c-649fc31c66a2", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-00000045;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1432", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "677e45d3-50d6-4633-870c-649fc31c66a2", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31150010001@osvpi_world_call_permittedplus-00000044;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400387", "Context": "osvpi_world_call", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "15", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1429", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID400387@osvpi_proc_connectab_cmn-00000040;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_worker", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "ID400387", "DestChannel": "Local/+31150010001@osvpi_world_call_permittedplus-00000044;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_world_call_permittedplus", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531991959.1348", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531991966.1427", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "ID400387", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "28", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1348", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "58f6d5a4-1e41-4c38-a8d2-f630fd7207b6", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "58f6d5a4-1e41-4c38-a8d2-f630fd7207b6", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "ID400387", "Channel": "Local/+31150010001@osvpi_world_call_permittedplus-00000044;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_world_call_permittedplus", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1427", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "58f6d5a4-1e41-4c38-a8d2-f630fd7207b6", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID400387@osvpi_proc_connectab_cmn-00000040;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_worker", "Event": "BridgeEnter", "Exten": "ID400387", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "28", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1348", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "58f6d5a4-1e41-4c38-a8d2-f630fd7207b6", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID400387@osvpi_proc_connectab_cmn-00000040;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_worker", "Event": "BridgeLeave", "Exten": "ID400387", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "28", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1348", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "677e45d3-50d6-4633-870c-649fc31c66a2", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31150010001@osvpi_world_call_permittedplus-00000044;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400387", "Context": "osvpi_world_call", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "15", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1429", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "677e45d3-50d6-4633-870c-649fc31c66a2", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID400387@osvpi_proc_connectab_cmn-00000040;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_worker", "Event": "BridgeEnter", "Exten": "ID400387", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "28", "Privilege": "call,all", "SwapUniqueid": "c4061ca6474c-1531991966.1429", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1348", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "58f6d5a4-1e41-4c38-a8d2-f630fd7207b6", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "ID400387", "Channel": "Local/+31150010001@osvpi_world_call_permittedplus-00000044;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_world_call_permittedplus", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1427", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "58f6d5a4-1e41-4c38-a8d2-f630fd7207b6", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/+31150010001@osvpi_world_call_permittedplus-00000044;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400387", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1429", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400387", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/+31150010001@osvpi_world_call_permittedplus-00000044;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_world_call_permittedplus", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1427", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "677e45d3-50d6-4633-870c-649fc31c66a2", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID400387@osvpi_proc_connectab_cmn-00000040;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_worker", "Event": "BridgeLeave", "Exten": "ID400387", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "28", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1348", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2630b7d0-d7c5-4f80-b4fe-a3368fb95c46", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31150010001@world_out-00000045;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_out", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1434", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2630b7d0-d7c5-4f80-b4fe-a3368fb95c46", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID400387@osvpi_proc_connectab_cmn-00000040;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_worker", "Event": "BridgeEnter", "Exten": "ID400387", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "28", "Privilege": "call,all", "SwapUniqueid": "c4061ca6474c-1531991966.1434", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1348", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "677e45d3-50d6-4633-870c-649fc31c66a2", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-00000045;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1432", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "677e45d3-50d6-4633-870c-649fc31c66a2", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/+31150010001@world_out-00000045;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1432", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/+31150010001@world_out-00000045;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1434", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "abe3a1ad-04ef-4fc2-b723-71e55a7541cf", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "49bde5b2-6829-4786-9854-398d494c00ee", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2630b7d0-d7c5-4f80-b4fe-a3368fb95c46", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-0000002e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_in", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1437", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2630b7d0-d7c5-4f80-b4fe-a3368fb95c46", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID400387@osvpi_proc_connectab_cmn-00000040;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_worker", "Event": "BridgeLeave", "Exten": "ID400387", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "28", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1348", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID400387@osvpi_proc_connectab_cmn-00000040;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1348", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4896fab4-7f23-4936-9288-c988f918e664", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID400387@osvpi_proc_connectab_cmn-00000040;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "Event": "BridgeLeave", "Exten": "ID400387", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "22", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1349", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2630b7d0-d7c5-4f80-b4fe-a3368fb95c46", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/voipgrid-siproute-docker-0000002e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_in", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991966.1437", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4896fab4-7f23-4936-9288-c988f918e664", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-0000002b", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1363", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4896fab4-7f23-4936-9288-c988f918e664", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/voipgrid-siproute-docker-0000002b", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1363", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID400387@osvpi_proc_connectab_cmn-00000040;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531991959.1348", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991959.1349", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "80ed1b1b-3a84-412e-98df-d4afa85f96d3", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""} +] diff --git a/tests/fixtures/originate/ctd-account-account-xfer-attn-abbcac.json b/tests/fixtures/originate/ctd-account-account-xfer-attn-abbcac.json new file mode 100644 index 0000000..2276e85 --- /dev/null +++ b/tests/fixtures/originate/ctd-account-account-xfer-attn-abbcac.json @@ -0,0 +1,196 @@ +[ + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400384@osvpi_proc_connectab_ctd-0000002d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_ctd", "Event": "Newchannel", "Exten": "ID400384", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.868", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400384@osvpi_proc_connectab_ctd-0000002d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_ctd", "Event": "Newchannel", "Exten": "ID400384", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.870", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400384@osvpi_proc_connectab_ctd-0000002d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_ctd", "Event": "NewAccountCode", "Exten": "ID400384", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.868", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400384@osvpi_proc_connectab_ctd-0000002d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_ctd", "Event": "NewAccountCode", "Exten": "ID400384", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.870", "content": ""}, + {"Context": "osvpi_proc_connectab_ctd", "Event": "LocalBridge", "Exten": "ID400384", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "", "LocalOneChannel": "Local/ID400384@osvpi_proc_connectab_ctd-0000002d;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "", "LocalOneContext": "osvpi_proc_connectab_ctd", "LocalOneExten": "ID400384", "LocalOneLanguage": "en", "LocalOneLinkedid": "c4061ca6474c-1531990887.868", "LocalOnePriority": "1", "LocalOneUniqueid": "c4061ca6474c-1531990887.868", "LocalOptimization": "No", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "", "LocalTwoChannel": "Local/ID400384@osvpi_proc_connectab_ctd-0000002d;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "", "LocalTwoContext": "osvpi_proc_connectab_ctd", "LocalTwoExten": "ID400384", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "c4061ca6474c-1531990887.868", "LocalTwoPriority": "1", "LocalTwoUniqueid": "c4061ca6474c-1531990887.870", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "", "DestChannel": "Local/ID400384@osvpi_proc_connectab_ctd-0000002d;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "", "DestContext": "osvpi_proc_connectab_ctd", "DestExten": "ID400384", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990887.868", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990887.868", "DialString": "ID400384@osvpi_proc_connectab_ctd/n", "Event": "DialBegin", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "Calling...", "CallerIDNum": "", "Channel": "Local/ID400384@osvpi_proc_connectab_ctd-0000002d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "Event": "NewCallerid", "Exten": "ID400384", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "11", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.870", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/ID400384@osvpi_proc_connectab_ctd-0000002d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_set_cli", "Event": "NewCallerid", "Exten": "a_number", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.870", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/201@osvpi_account_call_int_permitted-0000002e;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int_permitted", "Event": "Newchannel", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.873", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/201@osvpi_account_call_int_permitted-0000002e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int_permitted", "Event": "Newchannel", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.875", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "ID400384", "Channel": "Local/201@osvpi_account_call_int_permitted-0000002e;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_account_call_int_permitted", "Event": "NewCallerid", "Exten": "ID400384", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.873", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400384", "Channel": "Local/201@osvpi_account_call_int_permitted-0000002e;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_account_call_int_permitted", "Event": "NewAccountCode", "Exten": "ID400384", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.873", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400384", "Channel": "Local/201@osvpi_account_call_int_permitted-0000002e;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_account_call_int_permitted", "Event": "NewConnectedLine", "Exten": "ID400384", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.873", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/201@osvpi_account_call_int_permitted-0000002e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400384", "Context": "osvpi_account_call_int_permitted", "Event": "NewCallerid", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.875", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/201@osvpi_account_call_int_permitted-0000002e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400384", "Context": "osvpi_account_call_int_permitted", "Event": "NewAccountCode", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.875", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/201@osvpi_account_call_int_permitted-0000002e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400384", "Context": "osvpi_account_call_int_permitted", "Event": "NewConnectedLine", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.875", "content": ""}, + {"Context": "osvpi_account_call_int_permitted", "Event": "LocalBridge", "Exten": "201", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "ID400384", "LocalOneChannel": "Local/201@osvpi_account_call_int_permitted-0000002e;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Calling...", "LocalOneConnectedLineNum": "201", "LocalOneContext": "osvpi_account_call_int_permitted", "LocalOneExten": "ID400384", "LocalOneLanguage": "en", "LocalOneLinkedid": "c4061ca6474c-1531990887.868", "LocalOnePriority": "1", "LocalOneUniqueid": "c4061ca6474c-1531990887.873", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "Calling...", "LocalTwoCallerIDNum": "201", "LocalTwoChannel": "Local/201@osvpi_account_call_int_permitted-0000002e;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "ID400384", "LocalTwoContext": "osvpi_account_call_int_permitted", "LocalTwoExten": "201", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "c4061ca6474c-1531990887.868", "LocalTwoPriority": "1", "LocalTwoUniqueid": "c4061ca6474c-1531990887.875", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/ID400384@osvpi_proc_connectab_ctd-0000002d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "ID400384", "DestChannel": "Local/201@osvpi_account_call_int_permitted-0000002e;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "201", "DestContext": "osvpi_account_call_int_permitted", "DestExten": "ID400384", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990887.868", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990887.873", "DialString": "201@osvpi_account_call_int_permitted", "Event": "DialBegin", "Exten": "ID400384", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "24", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.870", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000002f;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730150", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.878", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000002f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730150", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.880", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000002f;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.878", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000002f;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.878", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000002f;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.878", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000002f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730150", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.880", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000002f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730150", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.880", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000002f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730150", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.880", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730150", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "201", "LocalOneChannel": "Local/ID730150@osvpi_route_phoneaccount-0000002f;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Calling...", "LocalOneConnectedLineNum": "201", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "201", "LocalOneLanguage": "en", "LocalOneLinkedid": "c4061ca6474c-1531990887.868", "LocalOnePriority": "1", "LocalOneUniqueid": "c4061ca6474c-1531990887.878", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "Calling...", "LocalTwoCallerIDNum": "201", "LocalTwoChannel": "Local/ID730150@osvpi_route_phoneaccount-0000002f;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "201", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730150", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "c4061ca6474c-1531990887.868", "LocalTwoPriority": "1", "LocalTwoUniqueid": "c4061ca6474c-1531990887.880", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/201@osvpi_account_call_int_permitted-0000002e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400384", "Context": "osvpi_account_call_int", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "201", "DestChannel": "Local/ID730150@osvpi_route_phoneaccount-0000002f;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "201", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990887.868", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990887.878", "DialString": "ID730150@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.875", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010001-0000001d", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.883", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-0000001d", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.883", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-0000001d", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531990887.868", "OldAccountCode": "150010001", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.883", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-0000001d", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.883", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000002f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "201", "DestChannel": "SIP/150010001-0000001d", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "201", "DestLanguage": "nl", "DestLinkedid": "c4061ca6474c-1531990887.868", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990887.883", "DialString": "150010001/150010001/172.20.0.13!!201", "Event": "DialBegin", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.880", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-0000001d", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.883", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000002f;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.878", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400384", "Channel": "Local/201@osvpi_account_call_int_permitted-0000002e;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_account_call_int_permitted", "Event": "Newstate", "Exten": "ID400384", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.873", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400384@osvpi_proc_connectab_ctd-0000002d;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_ctd", "Event": "Newstate", "Exten": "ID400384", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.868", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-0000001d", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.883", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000002f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "201", "DestChannel": "SIP/150010001-0000001d", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "c4061ca6474c-1531990887.868", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990887.883", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.880", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000002f;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.880", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000002f;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.878", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "664819b5-6fa7-4adc-970b-da81500cbf8b", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/201@osvpi_account_call_int_permitted-0000002e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400384", "Context": "osvpi_account_call_int", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "201", "DestChannel": "Local/ID730150@osvpi_route_phoneaccount-0000002f;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990887.868", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990887.878", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.875", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/201@osvpi_account_call_int_permitted-0000002e;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400384", "Context": "osvpi_account_call_int", "Event": "Newstate", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.875", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400384", "Channel": "Local/201@osvpi_account_call_int_permitted-0000002e;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_account_call_int_permitted", "Event": "Newstate", "Exten": "ID400384", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.873", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "664819b5-6fa7-4adc-970b-da81500cbf8b", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-0000001d", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.883", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "90aab0ba-0840-4e06-b82e-cf860643b64f", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "664819b5-6fa7-4adc-970b-da81500cbf8b", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000002f;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.880", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/ID400384@osvpi_proc_connectab_ctd-0000002d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "ID400384", "DestChannel": "Local/201@osvpi_account_call_int_permitted-0000002e;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "201", "DestContext": "osvpi_account_call_int_permitted", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990887.868", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990887.873", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "ID400384", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "24", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.870", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/ID400384@osvpi_proc_connectab_ctd-0000002d;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "Event": "Newstate", "Exten": "ID400384", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "24", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.870", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400384@osvpi_proc_connectab_ctd-0000002d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_ctd", "Event": "Newstate", "Exten": "ID400384", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.868", "content": ""}, + {"DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "", "DestChannel": "Local/ID400384@osvpi_proc_connectab_ctd-0000002d;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "", "DestContext": "osvpi_proc_connectab_ctd", "DestExten": "ID400384", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990887.868", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990887.868", "DialStatus": "ANSWER", "Event": "DialEnd", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "65505f96-0519-4199-a087-34c81f50ccc9", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "90aab0ba-0840-4e06-b82e-cf860643b64f", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000002f;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.878", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "90aab0ba-0840-4e06-b82e-cf860643b64f", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/201@osvpi_account_call_int_permitted-0000002e;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400384", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.875", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "65505f96-0519-4199-a087-34c81f50ccc9", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "ID400384", "Channel": "Local/201@osvpi_account_call_int_permitted-0000002e;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_account_call_int_permitted", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.873", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "65505f96-0519-4199-a087-34c81f50ccc9", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/ID400384@osvpi_proc_connectab_ctd-0000002d;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "Event": "BridgeEnter", "Exten": "ID400384", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "24", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.870", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "664819b5-6fa7-4adc-970b-da81500cbf8b", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-0000001d", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.883", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "90aab0ba-0840-4e06-b82e-cf860643b64f", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000002f;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.878", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "90aab0ba-0840-4e06-b82e-cf860643b64f", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-0000001d", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "c4061ca6474c-1531990887.878", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.883", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "664819b5-6fa7-4adc-970b-da81500cbf8b", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000002f;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.880", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "664819b5-6fa7-4adc-970b-da81500cbf8b", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000002f;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.878", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000002f;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.880", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "90aab0ba-0840-4e06-b82e-cf860643b64f", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-0000001d", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.883", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "65505f96-0519-4199-a087-34c81f50ccc9", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "ID400384", "Channel": "Local/201@osvpi_account_call_int_permitted-0000002e;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_account_call_int_permitted", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.873", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "65505f96-0519-4199-a087-34c81f50ccc9", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-0000001d", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "c4061ca6474c-1531990887.873", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.883", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "90aab0ba-0840-4e06-b82e-cf860643b64f", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/201@osvpi_account_call_int_permitted-0000002e;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400384", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.875", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "90aab0ba-0840-4e06-b82e-cf860643b64f", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400384", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/201@osvpi_account_call_int_permitted-0000002e;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_account_call_int_permitted", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.873", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/201@osvpi_account_call_int_permitted-0000002e;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400384", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.875", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID400384@osvpi_proc_connectab_ctd-0000002d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_set_cli", "Event": "NewCallerid", "Exten": "a_number", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.868", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/202@osvpi_account_call_int_permitted-00000030;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int_permitted", "Event": "Newchannel", "Exten": "202", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.919", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/202@osvpi_account_call_int_permitted-00000030;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int_permitted", "Event": "Newchannel", "Exten": "202", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.921", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "ID400384", "Channel": "Local/202@osvpi_account_call_int_permitted-00000030;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account_call_int_permitted", "Event": "NewCallerid", "Exten": "ID400384", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.919", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400384", "Channel": "Local/202@osvpi_account_call_int_permitted-00000030;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account_call_int_permitted", "Event": "NewAccountCode", "Exten": "ID400384", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.919", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400384", "Channel": "Local/202@osvpi_account_call_int_permitted-00000030;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account_call_int_permitted", "Event": "NewConnectedLine", "Exten": "ID400384", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.919", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/202@osvpi_account_call_int_permitted-00000030;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400384", "Context": "osvpi_account_call_int_permitted", "Event": "NewCallerid", "Exten": "202", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.921", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/202@osvpi_account_call_int_permitted-00000030;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400384", "Context": "osvpi_account_call_int_permitted", "Event": "NewAccountCode", "Exten": "202", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.921", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/202@osvpi_account_call_int_permitted-00000030;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400384", "Context": "osvpi_account_call_int_permitted", "Event": "NewConnectedLine", "Exten": "202", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.921", "content": ""}, + {"Context": "osvpi_account_call_int_permitted", "Event": "LocalBridge", "Exten": "202", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "ID400384", "LocalOneChannel": "Local/202@osvpi_account_call_int_permitted-00000030;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "201", "LocalOneContext": "osvpi_account_call_int_permitted", "LocalOneExten": "ID400384", "LocalOneLanguage": "en", "LocalOneLinkedid": "c4061ca6474c-1531990887.868", "LocalOnePriority": "1", "LocalOneUniqueid": "c4061ca6474c-1531990888.919", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "201", "LocalTwoChannel": "Local/202@osvpi_account_call_int_permitted-00000030;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "ID400384", "LocalTwoContext": "osvpi_account_call_int_permitted", "LocalTwoExten": "202", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "c4061ca6474c-1531990887.868", "LocalTwoPriority": "1", "LocalTwoUniqueid": "c4061ca6474c-1531990888.921", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID400384@osvpi_proc_connectab_ctd-0000002d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_worker", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "ID400384", "DestChannel": "Local/202@osvpi_account_call_int_permitted-00000030;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "201", "DestContext": "osvpi_account_call_int_permitted", "DestExten": "ID400384", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990887.868", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990888.919", "DialString": "202@osvpi_account_call_int_permitted", "Event": "DialBegin", "Exten": "ID400384", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "31", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.868", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000031;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.924", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000031;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.925", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000031;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "202", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.924", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000031;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "202", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.924", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000031;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "202", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.924", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000031;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730151", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.925", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000031;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730151", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.925", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000031;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730151", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.925", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730151", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "202", "LocalOneChannel": "Local/ID730151@osvpi_route_phoneaccount-00000031;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "201", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "202", "LocalOneLanguage": "en", "LocalOneLinkedid": "c4061ca6474c-1531990887.868", "LocalOnePriority": "1", "LocalOneUniqueid": "c4061ca6474c-1531990888.924", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "201", "LocalTwoChannel": "Local/ID730151@osvpi_route_phoneaccount-00000031;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "202", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730151", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "c4061ca6474c-1531990887.868", "LocalTwoPriority": "1", "LocalTwoUniqueid": "c4061ca6474c-1531990888.925", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/202@osvpi_account_call_int_permitted-00000030;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400384", "Context": "osvpi_account_call_int", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-00000031;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "202", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990887.868", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990888.924", "DialString": "ID730151@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "202", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.921", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010002-0000001e", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.929", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-0000001e", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.929", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-0000001e", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "202", "Language": "nl", "Linkedid": "c4061ca6474c-1531990887.868", "OldAccountCode": "150010002", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.929", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-0000001e", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "202", "Language": "nl", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.929", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000031;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "SIP/150010002-0000001e", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "202", "DestLanguage": "nl", "DestLinkedid": "c4061ca6474c-1531990887.868", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990888.929", "DialString": "150010002/150010002/172.20.0.13!!201", "Event": "DialBegin", "Exten": "202", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.925", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-0000001e", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.929", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000031;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.924", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400384", "Channel": "Local/202@osvpi_account_call_int_permitted-00000030;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account_call_int_permitted", "Event": "Newstate", "Exten": "ID400384", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.919", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-0000001e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.929", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000031;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "SIP/150010002-0000001e", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "c4061ca6474c-1531990887.868", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990888.929", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "202", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.925", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000031;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.925", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000031;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.924", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "fb3e33ec-1f03-4808-b01b-6814e5d645a8", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/202@osvpi_account_call_int_permitted-00000030;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400384", "Context": "osvpi_account_call_int", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-00000031;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990887.868", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990888.924", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "202", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.921", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "fb3e33ec-1f03-4808-b01b-6814e5d645a8", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-0000001e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.929", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/202@osvpi_account_call_int_permitted-00000030;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400384", "Context": "osvpi_account_call_int", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.921", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400384", "Channel": "Local/202@osvpi_account_call_int_permitted-00000030;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account_call_int_permitted", "Event": "Newstate", "Exten": "ID400384", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.919", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "fb3e33ec-1f03-4808-b01b-6814e5d645a8", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000031;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "202", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.925", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "d6577936-46f3-4b0b-be54-d017e8fd8acc", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "d6577936-46f3-4b0b-be54-d017e8fd8acc", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000031;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.924", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "d6577936-46f3-4b0b-be54-d017e8fd8acc", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/202@osvpi_account_call_int_permitted-00000030;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400384", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "202", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.921", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID400384@osvpi_proc_connectab_ctd-0000002d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_worker", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "ID400384", "DestChannel": "Local/202@osvpi_account_call_int_permitted-00000030;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "201", "DestContext": "osvpi_account_call_int_permitted", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990887.868", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990888.919", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "ID400384", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "31", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.868", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ec6dceef-e737-4c5b-a62b-70c6d7f193d6", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ec6dceef-e737-4c5b-a62b-70c6d7f193d6", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "ID400384", "Channel": "Local/202@osvpi_account_call_int_permitted-00000030;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account_call_int_permitted", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.919", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ec6dceef-e737-4c5b-a62b-70c6d7f193d6", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID400384@osvpi_proc_connectab_ctd-0000002d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_worker", "Event": "BridgeEnter", "Exten": "ID400384", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "31", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.868", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ec6dceef-e737-4c5b-a62b-70c6d7f193d6", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID400384@osvpi_proc_connectab_ctd-0000002d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_worker", "Event": "BridgeLeave", "Exten": "ID400384", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "31", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.868", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "d6577936-46f3-4b0b-be54-d017e8fd8acc", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/202@osvpi_account_call_int_permitted-00000030;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400384", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "202", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.921", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "d6577936-46f3-4b0b-be54-d017e8fd8acc", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID400384@osvpi_proc_connectab_ctd-0000002d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_worker", "Event": "BridgeEnter", "Exten": "ID400384", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "31", "Privilege": "call,all", "SwapUniqueid": "c4061ca6474c-1531990888.921", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.868", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ec6dceef-e737-4c5b-a62b-70c6d7f193d6", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "ID400384", "Channel": "Local/202@osvpi_account_call_int_permitted-00000030;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account_call_int_permitted", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.919", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ec6dceef-e737-4c5b-a62b-70c6d7f193d6", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400384", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/202@osvpi_account_call_int_permitted-00000030;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account_call_int_permitted", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.919", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/202@osvpi_account_call_int_permitted-00000030;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400384", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.921", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "fb3e33ec-1f03-4808-b01b-6814e5d645a8", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-0000001e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.929", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "d6577936-46f3-4b0b-be54-d017e8fd8acc", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000031;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.924", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "d6577936-46f3-4b0b-be54-d017e8fd8acc", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-0000001e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "c4061ca6474c-1531990888.924", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.929", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "fb3e33ec-1f03-4808-b01b-6814e5d645a8", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000031;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "202", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.925", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "fb3e33ec-1f03-4808-b01b-6814e5d645a8", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000031;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.925", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "202", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000031;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.924", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Bob", "CallerIDNum": "150010002", "Channel": "SIP/150010002-0000001f", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "203", "Language": "en", "Linkedid": "c4061ca6474c-1531990893.962", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990893.962", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Bob", "CallerIDNum": "150010002", "Channel": "SIP/150010002-0000001f", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newstate", "Exten": "203", "Language": "nl", "Linkedid": "c4061ca6474c-1531990893.962", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990893.962", "content": ""}, + {"AccountCode": "150010002", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Christina Arroyo", "CallerIDNum": "150010002", "Channel": "SIP/150010002-0000001f", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "203", "Language": "nl", "Linkedid": "c4061ca6474c-1531990893.962", "Priority": "5", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990893.962", "content": ""}, + {"AccountCode": "150010002", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "SIP/150010002-0000001f", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "203", "Language": "nl", "Linkedid": "c4061ca6474c-1531990893.962", "Priority": "6", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990893.962", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000032;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730152", "Language": "en", "Linkedid": "c4061ca6474c-1531990893.962", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990893.965", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000032;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730152", "Language": "en", "Linkedid": "c4061ca6474c-1531990893.962", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990893.967", "content": ""}, + {"AccountCode": "150010002", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000032;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "203", "Language": "en", "Linkedid": "c4061ca6474c-1531990893.962", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990893.965", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000032;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "203", "Language": "en", "Linkedid": "c4061ca6474c-1531990893.962", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990893.965", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000032;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "203", "Language": "en", "Linkedid": "c4061ca6474c-1531990893.962", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990893.965", "content": ""}, + {"AccountCode": "150010002", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000032;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730152", "Language": "en", "Linkedid": "c4061ca6474c-1531990893.962", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990893.967", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000032;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730152", "Language": "en", "Linkedid": "c4061ca6474c-1531990893.962", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990893.967", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000032;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730152", "Language": "en", "Linkedid": "c4061ca6474c-1531990893.962", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990893.967", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730152", "LocalOneAccountCode": "150010002", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "203", "LocalOneChannel": "Local/ID730152@osvpi_route_phoneaccount-00000032;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Christina Arroyo", "LocalOneConnectedLineNum": "202", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "203", "LocalOneLanguage": "en", "LocalOneLinkedid": "c4061ca6474c-1531990893.962", "LocalOnePriority": "1", "LocalOneUniqueid": "c4061ca6474c-1531990893.965", "LocalOptimization": "Yes", "LocalTwoAccountCode": "150010002", "LocalTwoCallerIDName": "Christina Arroyo", "LocalTwoCallerIDNum": "202", "LocalTwoChannel": "Local/ID730152@osvpi_route_phoneaccount-00000032;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "203", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730152", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "c4061ca6474c-1531990893.962", "LocalTwoPriority": "1", "LocalTwoUniqueid": "c4061ca6474c-1531990893.967", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "SIP/150010002-0000001f", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010002", "DestCallerIDName": "", "DestCallerIDNum": "203", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-00000032;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Christina Arroyo", "DestConnectedLineNum": "202", "DestContext": "osvpi_route_phoneaccount", "DestExten": "203", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990893.962", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990893.965", "DialString": "ID730152@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "203", "Language": "nl", "Linkedid": "c4061ca6474c-1531990893.962", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990893.962", "content": ""}, + {"AccountCode": "150010003", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010003-00000020", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "c4061ca6474c-1531990893.962", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990893.970", "content": ""}, + {"AccountCode": "150010002", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-00000020", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "203", "Language": "nl", "Linkedid": "c4061ca6474c-1531990893.962", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990893.970", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-00000020", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "203", "Language": "nl", "Linkedid": "c4061ca6474c-1531990893.962", "OldAccountCode": "150010003", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990893.970", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-00000020", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "203", "Language": "nl", "Linkedid": "c4061ca6474c-1531990893.962", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990893.970", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000032;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010002", "DestCallerIDName": "", "DestCallerIDNum": "203", "DestChannel": "SIP/150010003-00000020", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Christina Arroyo", "DestConnectedLineNum": "202", "DestContext": "osvpi_account", "DestExten": "203", "DestLanguage": "nl", "DestLinkedid": "c4061ca6474c-1531990893.962", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990893.970", "DialString": "150010003/150010003/172.20.0.13!!202", "Event": "DialBegin", "Exten": "203", "Language": "en", "Linkedid": "c4061ca6474c-1531990893.962", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990893.967", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-00000020", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_account", "Event": "Newstate", "Exten": "203", "Language": "nl", "Linkedid": "c4061ca6474c-1531990893.962", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990893.970", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000032;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "203", "Language": "en", "Linkedid": "c4061ca6474c-1531990893.962", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990893.965", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-00000020", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_account", "Event": "Newstate", "Exten": "203", "Language": "nl", "Linkedid": "c4061ca6474c-1531990893.962", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990893.970", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000032;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010002", "DestCallerIDName": "", "DestCallerIDNum": "203", "DestChannel": "SIP/150010003-00000020", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Christina Arroyo", "DestConnectedLineNum": "202", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "c4061ca6474c-1531990893.962", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990893.970", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "203", "Language": "en", "Linkedid": "c4061ca6474c-1531990893.962", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990893.967", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000032;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "203", "Language": "en", "Linkedid": "c4061ca6474c-1531990893.962", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990893.967", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000032;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "203", "Language": "en", "Linkedid": "c4061ca6474c-1531990893.962", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990893.965", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "0282ab42-1d9b-4c17-b0e7-06f43971e1b5", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "SIP/150010002-0000001f", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010002", "DestCallerIDName": "", "DestCallerIDNum": "203", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-00000032;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Christina Arroyo", "DestConnectedLineNum": "202", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990893.962", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990893.965", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "203", "Language": "nl", "Linkedid": "c4061ca6474c-1531990893.962", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990893.962", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "SIP/150010002-0000001f", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "Newstate", "Exten": "203", "Language": "nl", "Linkedid": "c4061ca6474c-1531990893.962", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990893.962", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "9a0f76f1-b6f5-4c50-8f0c-d326cc95ec96", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "150010002", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "0282ab42-1d9b-4c17-b0e7-06f43971e1b5", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-00000020", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990893.962", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990893.970", "content": ""}, + {"AccountCode": "150010002", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "0282ab42-1d9b-4c17-b0e7-06f43971e1b5", "BridgeVideoSourceMode": "none", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000032;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "203", "Language": "en", "Linkedid": "c4061ca6474c-1531990893.962", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990893.967", "content": ""}, + {"AccountCode": "150010002", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "9a0f76f1-b6f5-4c50-8f0c-d326cc95ec96", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000032;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990893.962", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990893.965", "content": ""}, + {"AccountCode": "150010002", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "9a0f76f1-b6f5-4c50-8f0c-d326cc95ec96", "BridgeVideoSourceMode": "none", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "SIP/150010002-0000001f", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "203", "Language": "nl", "Linkedid": "c4061ca6474c-1531990893.962", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990893.962", "content": ""}, + {"AccountCode": "150010002", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "9a0f76f1-b6f5-4c50-8f0c-d326cc95ec96", "BridgeVideoSourceMode": "none", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "SIP/150010002-0000001f", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "203", "Language": "nl", "Linkedid": "c4061ca6474c-1531990893.962", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990893.962", "content": ""}, + {"AccountCode": "150010002", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "0282ab42-1d9b-4c17-b0e7-06f43971e1b5", "BridgeVideoSourceMode": "none", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000032;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "203", "Language": "en", "Linkedid": "c4061ca6474c-1531990893.962", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990893.967", "content": ""}, + {"AccountCode": "150010002", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "0282ab42-1d9b-4c17-b0e7-06f43971e1b5", "BridgeVideoSourceMode": "none", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "SIP/150010002-0000001f", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "203", "Language": "nl", "Linkedid": "c4061ca6474c-1531990893.962", "Priority": "12", "Privilege": "call,all", "SwapUniqueid": "c4061ca6474c-1531990893.967", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990893.962", "content": ""}, + {"AccountCode": "150010002", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "9a0f76f1-b6f5-4c50-8f0c-d326cc95ec96", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000032;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990893.962", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990893.965", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "9a0f76f1-b6f5-4c50-8f0c-d326cc95ec96", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "203", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000032;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990893.962", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990893.965", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000032;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531990893.962", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990893.967", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "d6577936-46f3-4b0b-be54-d017e8fd8acc", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID400384@osvpi_proc_connectab_ctd-0000002d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_worker", "Event": "BridgeLeave", "Exten": "ID400384", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "31", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.868", "content": ""}, + {"AccountCode": "150010002", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "0282ab42-1d9b-4c17-b0e7-06f43971e1b5", "BridgeVideoSourceMode": "none", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "SIP/150010002-0000001f", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "203", "Language": "nl", "Linkedid": "c4061ca6474c-1531990893.962", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990893.962", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "0282ab42-1d9b-4c17-b0e7-06f43971e1b5", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID400384@osvpi_proc_connectab_ctd-0000002d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_worker", "Event": "BridgeEnter", "Exten": "ID400384", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "31", "Privilege": "call,all", "SwapUniqueid": "c4061ca6474c-1531990893.962", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.868", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-00000020", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990893.970", "content": ""}, + {"DestBridgeUniqueid": "0282ab42-1d9b-4c17-b0e7-06f43971e1b5", "DestType": "Bridge", "Event": "AttendedTransfer", "IsExternal": "No", "OrigBridgeCreator": "", "OrigBridgeName": "", "OrigBridgeNumChannels": "2", "OrigBridgeTechnology": "simple_bridge", "OrigBridgeType": "basic", "OrigBridgeUniqueid": "d6577936-46f3-4b0b-be54-d017e8fd8acc", "OrigBridgeVideoSourceMode": "none", "OrigTransfererAccountCode": "15001", "OrigTransfererCallerIDName": "", "OrigTransfererCallerIDNum": "202", "OrigTransfererChannel": "SIP/150010002-0000001e", "OrigTransfererChannelState": "6", "OrigTransfererChannelStateDesc": "Up", "OrigTransfererConnectedLineName": "", "OrigTransfererConnectedLineNum": "201", "OrigTransfererContext": "osvpi_account", "OrigTransfererExten": "", "OrigTransfererLanguage": "nl", "OrigTransfererLinkedid": "c4061ca6474c-1531990887.868", "OrigTransfererPriority": "1", "OrigTransfererUniqueid": "c4061ca6474c-1531990888.929", "Privilege": "call,all", "Result": "Success", "SecondBridgeCreator": "", "SecondBridgeName": "", "SecondBridgeNumChannels": "2", "SecondBridgeTechnology": "simple_bridge", "SecondBridgeType": "basic", "SecondBridgeUniqueid": "0282ab42-1d9b-4c17-b0e7-06f43971e1b5", "SecondBridgeVideoSourceMode": "none", "SecondTransfererAccountCode": "150010002", "SecondTransfererCallerIDName": "Christina Arroyo", "SecondTransfererCallerIDNum": "202", "SecondTransfererChannel": "SIP/150010002-0000001f", "SecondTransfererChannelState": "6", "SecondTransfererChannelStateDesc": "Up", "SecondTransfererConnectedLineName": "", "SecondTransfererConnectedLineNum": "", "SecondTransfererContext": "osvpi_account_call_int", "SecondTransfererExten": "203", "SecondTransfererLanguage": "nl", "SecondTransfererLinkedid": "c4061ca6474c-1531990893.962", "SecondTransfererPriority": "12", "SecondTransfererUniqueid": "c4061ca6474c-1531990893.962", "SystemName": "c4061ca6474c", "TransferTargetAccountCode": "150010002", "TransferTargetCallerIDName": "", "TransferTargetCallerIDNum": "203", "TransferTargetChannel": "SIP/150010003-00000020", "TransferTargetChannelState": "6", "TransferTargetChannelStateDesc": "Up", "TransferTargetConnectedLineName": "Christina Arroyo", "TransferTargetConnectedLineNum": "202", "TransferTargetContext": "osvpi_account", "TransferTargetExten": "", "TransferTargetLanguage": "nl", "TransferTargetLinkedid": "c4061ca6474c-1531990893.962", "TransferTargetPriority": "1", "TransferTargetUniqueid": "c4061ca6474c-1531990893.970", "TransfereeAccountCode": "15001", "TransfereeCallerIDName": "", "TransfereeCallerIDNum": "201", "TransfereeChannel": "Local/ID400384@osvpi_proc_connectab_ctd-0000002d;1", "TransfereeChannelState": "6", "TransfereeChannelStateDesc": "Up", "TransfereeConnectedLineName": "", "TransfereeConnectedLineNum": "", "TransfereeContext": "osvpi_proc_connectab_worker", "TransfereeExten": "ID400384", "TransfereeLanguage": "en", "TransfereeLinkedid": "c4061ca6474c-1531990887.868", "TransfereePriority": "31", "TransfereeUniqueid": "c4061ca6474c-1531990887.868", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "d6577936-46f3-4b0b-be54-d017e8fd8acc", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-0000001e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.929", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "202", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010002-0000001e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990888.929", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "d6577936-46f3-4b0b-be54-d017e8fd8acc", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID400384@osvpi_proc_connectab_ctd-0000002d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_proc_connectab_worker", "Event": "NewConnectedLine", "Exten": "ID400384", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "31", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.868", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-0000001d", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.883", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010002-0000001f", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "c4061ca6474c-1531990893.962", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990893.962", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID400384@osvpi_proc_connectab_ctd-0000002d;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "Event": "NewCallerid", "Exten": "ID400384", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "24", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.870", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "65505f96-0519-4199-a087-34c81f50ccc9", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-0000001d", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.883", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010001-0000001d", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.883", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "65505f96-0519-4199-a087-34c81f50ccc9", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID400384@osvpi_proc_connectab_ctd-0000002d;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "Event": "BridgeLeave", "Exten": "ID400384", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "24", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.870", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "65505f96-0519-4199-a087-34c81f50ccc9", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "203", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID400384@osvpi_proc_connectab_ctd-0000002d;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.870", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "0282ab42-1d9b-4c17-b0e7-06f43971e1b5", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID400384@osvpi_proc_connectab_ctd-0000002d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_proc_connectab_worker", "Event": "BridgeLeave", "Exten": "ID400384", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "31", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.868", "content": ""}, + {"AccountCode": "150010002", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "0282ab42-1d9b-4c17-b0e7-06f43971e1b5", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-00000020", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990893.970", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "203", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010003-00000020", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990893.970", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "0282ab42-1d9b-4c17-b0e7-06f43971e1b5", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID400384@osvpi_proc_connectab_ctd-0000002d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531990887.868", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990887.868", "content": ""} +] \ No newline at end of file diff --git a/tests/fixtures/originate/ctd-account-account.json b/tests/fixtures/originate/ctd-account-account.json new file mode 100644 index 0000000..91b336f --- /dev/null +++ b/tests/fixtures/originate/ctd-account-account.json @@ -0,0 +1,144 @@ +[ + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400377@osvpi_proc_connectab_ctd-00000005;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_ctd", "Event": "Newchannel", "Exten": "ID400377", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.86", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400377@osvpi_proc_connectab_ctd-00000005;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_ctd", "Event": "Newchannel", "Exten": "ID400377", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.88", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400377@osvpi_proc_connectab_ctd-00000005;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_ctd", "Event": "NewAccountCode", "Exten": "ID400377", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.86", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400377@osvpi_proc_connectab_ctd-00000005;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_ctd", "Event": "NewAccountCode", "Exten": "ID400377", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.88", "content": ""}, + {"Context": "osvpi_proc_connectab_ctd", "Event": "LocalBridge", "Exten": "ID400377", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "", "LocalOneChannel": "Local/ID400377@osvpi_proc_connectab_ctd-00000005;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "", "LocalOneContext": "osvpi_proc_connectab_ctd", "LocalOneExten": "ID400377", "LocalOneLanguage": "en", "LocalOneLinkedid": "c4061ca6474c-1531990397.86", "LocalOnePriority": "1", "LocalOneUniqueid": "c4061ca6474c-1531990397.86", "LocalOptimization": "No", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "", "LocalTwoChannel": "Local/ID400377@osvpi_proc_connectab_ctd-00000005;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "", "LocalTwoContext": "osvpi_proc_connectab_ctd", "LocalTwoExten": "ID400377", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "c4061ca6474c-1531990397.86", "LocalTwoPriority": "1", "LocalTwoUniqueid": "c4061ca6474c-1531990397.88", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "", "DestChannel": "Local/ID400377@osvpi_proc_connectab_ctd-00000005;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "", "DestContext": "osvpi_proc_connectab_ctd", "DestExten": "ID400377", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990397.86", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990397.86", "DialString": "ID400377@osvpi_proc_connectab_ctd/n", "Event": "DialBegin", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "Calling...", "CallerIDNum": "", "Channel": "Local/ID400377@osvpi_proc_connectab_ctd-00000005;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "Event": "NewCallerid", "Exten": "ID400377", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "11", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.88", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/ID400377@osvpi_proc_connectab_ctd-00000005;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_set_cli", "Event": "NewCallerid", "Exten": "a_number", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.88", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/201@osvpi_account_call_int_permitted-00000006;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int_permitted", "Event": "Newchannel", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.91", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/201@osvpi_account_call_int_permitted-00000006;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int_permitted", "Event": "Newchannel", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.93", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "ID400377", "Channel": "Local/201@osvpi_account_call_int_permitted-00000006;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_account_call_int_permitted", "Event": "NewCallerid", "Exten": "ID400377", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.91", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400377", "Channel": "Local/201@osvpi_account_call_int_permitted-00000006;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_account_call_int_permitted", "Event": "NewAccountCode", "Exten": "ID400377", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.91", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400377", "Channel": "Local/201@osvpi_account_call_int_permitted-00000006;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_account_call_int_permitted", "Event": "NewConnectedLine", "Exten": "ID400377", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.91", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/201@osvpi_account_call_int_permitted-00000006;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400377", "Context": "osvpi_account_call_int_permitted", "Event": "NewCallerid", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.93", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/201@osvpi_account_call_int_permitted-00000006;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400377", "Context": "osvpi_account_call_int_permitted", "Event": "NewAccountCode", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.93", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/201@osvpi_account_call_int_permitted-00000006;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400377", "Context": "osvpi_account_call_int_permitted", "Event": "NewConnectedLine", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.93", "content": ""}, + {"Context": "osvpi_account_call_int_permitted", "Event": "LocalBridge", "Exten": "201", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "ID400377", "LocalOneChannel": "Local/201@osvpi_account_call_int_permitted-00000006;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Calling...", "LocalOneConnectedLineNum": "201", "LocalOneContext": "osvpi_account_call_int_permitted", "LocalOneExten": "ID400377", "LocalOneLanguage": "en", "LocalOneLinkedid": "c4061ca6474c-1531990397.86", "LocalOnePriority": "1", "LocalOneUniqueid": "c4061ca6474c-1531990397.91", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "Calling...", "LocalTwoCallerIDNum": "201", "LocalTwoChannel": "Local/201@osvpi_account_call_int_permitted-00000006;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "ID400377", "LocalTwoContext": "osvpi_account_call_int_permitted", "LocalTwoExten": "201", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "c4061ca6474c-1531990397.86", "LocalTwoPriority": "1", "LocalTwoUniqueid": "c4061ca6474c-1531990397.93", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/ID400377@osvpi_proc_connectab_ctd-00000005;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "ID400377", "DestChannel": "Local/201@osvpi_account_call_int_permitted-00000006;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "201", "DestContext": "osvpi_account_call_int_permitted", "DestExten": "ID400377", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990397.86", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990397.91", "DialString": "201@osvpi_account_call_int_permitted", "Event": "DialBegin", "Exten": "ID400377", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "24", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.88", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000007;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730150", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.96", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000007;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730150", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.98", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000007;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.96", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000007;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.96", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000007;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.96", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000007;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730150", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.98", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000007;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730150", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.98", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000007;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730150", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.98", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730150", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "201", "LocalOneChannel": "Local/ID730150@osvpi_route_phoneaccount-00000007;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Calling...", "LocalOneConnectedLineNum": "201", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "201", "LocalOneLanguage": "en", "LocalOneLinkedid": "c4061ca6474c-1531990397.86", "LocalOnePriority": "1", "LocalOneUniqueid": "c4061ca6474c-1531990397.96", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "Calling...", "LocalTwoCallerIDNum": "201", "LocalTwoChannel": "Local/ID730150@osvpi_route_phoneaccount-00000007;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "201", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730150", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "c4061ca6474c-1531990397.86", "LocalTwoPriority": "1", "LocalTwoUniqueid": "c4061ca6474c-1531990397.98", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/201@osvpi_account_call_int_permitted-00000006;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400377", "Context": "osvpi_account_call_int", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "201", "DestChannel": "Local/ID730150@osvpi_route_phoneaccount-00000007;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "201", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990397.86", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990397.96", "DialString": "ID730150@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.93", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010001-00000002", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.101", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000002", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.101", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000002", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531990397.86", "OldAccountCode": "150010001", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.101", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000002", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.101", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000007;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "201", "DestChannel": "SIP/150010001-00000002", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "201", "DestLanguage": "nl", "DestLinkedid": "c4061ca6474c-1531990397.86", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990397.101", "DialString": "150010001/150010001/172.20.0.13!!201", "Event": "DialBegin", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.98", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000002", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.101", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000007;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.96", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400377", "Channel": "Local/201@osvpi_account_call_int_permitted-00000006;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_account_call_int_permitted", "Event": "Newstate", "Exten": "ID400377", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.91", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400377@osvpi_proc_connectab_ctd-00000005;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_ctd", "Event": "Newstate", "Exten": "ID400377", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.86", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000002", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.101", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000007;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "201", "DestChannel": "SIP/150010001-00000002", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "c4061ca6474c-1531990397.86", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990397.101", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.98", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000007;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.98", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000007;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.96", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/201@osvpi_account_call_int_permitted-00000006;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400377", "Context": "osvpi_account_call_int", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "201", "DestChannel": "Local/ID730150@osvpi_route_phoneaccount-00000007;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990397.86", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990397.96", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.93", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/201@osvpi_account_call_int_permitted-00000006;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400377", "Context": "osvpi_account_call_int", "Event": "Newstate", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.93", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c3f295d5-318b-40c8-88ac-78dbe4dbe861", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400377", "Channel": "Local/201@osvpi_account_call_int_permitted-00000006;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_account_call_int_permitted", "Event": "Newstate", "Exten": "ID400377", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.91", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/ID400377@osvpi_proc_connectab_ctd-00000005;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "ID400377", "DestChannel": "Local/201@osvpi_account_call_int_permitted-00000006;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "201", "DestContext": "osvpi_account_call_int_permitted", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990397.86", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990397.91", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "ID400377", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "24", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.88", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/ID400377@osvpi_proc_connectab_ctd-00000005;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "Event": "Newstate", "Exten": "ID400377", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "24", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.88", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "eb26f2fd-9e8b-4c8d-a827-ee99af51e34a", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "fe6cf9d3-eaf5-4c9e-b353-9bb9dc0a505a", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c3f295d5-318b-40c8-88ac-78dbe4dbe861", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000002", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.101", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "eb26f2fd-9e8b-4c8d-a827-ee99af51e34a", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000007;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.96", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "eb26f2fd-9e8b-4c8d-a827-ee99af51e34a", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/201@osvpi_account_call_int_permitted-00000006;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400377", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.93", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400377@osvpi_proc_connectab_ctd-00000005;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_ctd", "Event": "Newstate", "Exten": "ID400377", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.86", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c3f295d5-318b-40c8-88ac-78dbe4dbe861", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000007;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.98", "content": ""}, + {"DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "", "DestChannel": "Local/ID400377@osvpi_proc_connectab_ctd-00000005;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "", "DestContext": "osvpi_proc_connectab_ctd", "DestExten": "ID400377", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990397.86", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990397.86", "DialStatus": "ANSWER", "Event": "DialEnd", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "fe6cf9d3-eaf5-4c9e-b353-9bb9dc0a505a", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "ID400377", "Channel": "Local/201@osvpi_account_call_int_permitted-00000006;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_account_call_int_permitted", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.91", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "fe6cf9d3-eaf5-4c9e-b353-9bb9dc0a505a", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/ID400377@osvpi_proc_connectab_ctd-00000005;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "Event": "BridgeEnter", "Exten": "ID400377", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "24", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.88", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c3f295d5-318b-40c8-88ac-78dbe4dbe861", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000002", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.101", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "eb26f2fd-9e8b-4c8d-a827-ee99af51e34a", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000007;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.96", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "eb26f2fd-9e8b-4c8d-a827-ee99af51e34a", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000002", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "c4061ca6474c-1531990397.96", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.101", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c3f295d5-318b-40c8-88ac-78dbe4dbe861", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000007;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.98", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000007;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.96", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c3f295d5-318b-40c8-88ac-78dbe4dbe861", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000007;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.98", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "eb26f2fd-9e8b-4c8d-a827-ee99af51e34a", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000002", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.101", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "fe6cf9d3-eaf5-4c9e-b353-9bb9dc0a505a", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "ID400377", "Channel": "Local/201@osvpi_account_call_int_permitted-00000006;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_account_call_int_permitted", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.91", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "fe6cf9d3-eaf5-4c9e-b353-9bb9dc0a505a", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000002", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "c4061ca6474c-1531990397.91", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.101", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "eb26f2fd-9e8b-4c8d-a827-ee99af51e34a", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/201@osvpi_account_call_int_permitted-00000006;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400377", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.93", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "eb26f2fd-9e8b-4c8d-a827-ee99af51e34a", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400377", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/201@osvpi_account_call_int_permitted-00000006;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_account_call_int_permitted", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.91", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/201@osvpi_account_call_int_permitted-00000006;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400377", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.93", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID400377@osvpi_proc_connectab_ctd-00000005;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_set_cli", "Event": "NewCallerid", "Exten": "a_number", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.86", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/202@osvpi_account_call_int_permitted-00000008;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int_permitted", "Event": "Newchannel", "Exten": "202", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.137", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/202@osvpi_account_call_int_permitted-00000008;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int_permitted", "Event": "Newchannel", "Exten": "202", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.139", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "ID400377", "Channel": "Local/202@osvpi_account_call_int_permitted-00000008;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account_call_int_permitted", "Event": "NewCallerid", "Exten": "ID400377", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.137", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400377", "Channel": "Local/202@osvpi_account_call_int_permitted-00000008;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account_call_int_permitted", "Event": "NewAccountCode", "Exten": "ID400377", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.137", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400377", "Channel": "Local/202@osvpi_account_call_int_permitted-00000008;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account_call_int_permitted", "Event": "NewConnectedLine", "Exten": "ID400377", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.137", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/202@osvpi_account_call_int_permitted-00000008;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400377", "Context": "osvpi_account_call_int_permitted", "Event": "NewCallerid", "Exten": "202", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.139", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/202@osvpi_account_call_int_permitted-00000008;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400377", "Context": "osvpi_account_call_int_permitted", "Event": "NewAccountCode", "Exten": "202", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.139", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/202@osvpi_account_call_int_permitted-00000008;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400377", "Context": "osvpi_account_call_int_permitted", "Event": "NewConnectedLine", "Exten": "202", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.139", "content": ""}, + {"Context": "osvpi_account_call_int_permitted", "Event": "LocalBridge", "Exten": "202", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "ID400377", "LocalOneChannel": "Local/202@osvpi_account_call_int_permitted-00000008;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "201", "LocalOneContext": "osvpi_account_call_int_permitted", "LocalOneExten": "ID400377", "LocalOneLanguage": "en", "LocalOneLinkedid": "c4061ca6474c-1531990397.86", "LocalOnePriority": "1", "LocalOneUniqueid": "c4061ca6474c-1531990398.137", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "201", "LocalTwoChannel": "Local/202@osvpi_account_call_int_permitted-00000008;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "ID400377", "LocalTwoContext": "osvpi_account_call_int_permitted", "LocalTwoExten": "202", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "c4061ca6474c-1531990397.86", "LocalTwoPriority": "1", "LocalTwoUniqueid": "c4061ca6474c-1531990398.139", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID400377@osvpi_proc_connectab_ctd-00000005;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_worker", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "ID400377", "DestChannel": "Local/202@osvpi_account_call_int_permitted-00000008;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "201", "DestContext": "osvpi_account_call_int_permitted", "DestExten": "ID400377", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990397.86", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990398.137", "DialString": "202@osvpi_account_call_int_permitted", "Event": "DialBegin", "Exten": "ID400377", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "31", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.86", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000009;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.142", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000009;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.144", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000009;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "202", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.142", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000009;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "202", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.142", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000009;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "202", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.142", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000009;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730151", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.144", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000009;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730151", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.144", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000009;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730151", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.144", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730151", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "202", "LocalOneChannel": "Local/ID730151@osvpi_route_phoneaccount-00000009;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "201", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "202", "LocalOneLanguage": "en", "LocalOneLinkedid": "c4061ca6474c-1531990397.86", "LocalOnePriority": "1", "LocalOneUniqueid": "c4061ca6474c-1531990398.142", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "201", "LocalTwoChannel": "Local/ID730151@osvpi_route_phoneaccount-00000009;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "202", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730151", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "c4061ca6474c-1531990397.86", "LocalTwoPriority": "1", "LocalTwoUniqueid": "c4061ca6474c-1531990398.144", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/202@osvpi_account_call_int_permitted-00000008;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400377", "Context": "osvpi_account_call_int", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-00000009;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "202", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990397.86", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990398.142", "DialString": "ID730151@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "202", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.139", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010002-00000003", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.147", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000003", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.147", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000003", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "202", "Language": "nl", "Linkedid": "c4061ca6474c-1531990397.86", "OldAccountCode": "150010002", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.147", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000003", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "202", "Language": "nl", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.147", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000009;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "SIP/150010002-00000003", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "202", "DestLanguage": "nl", "DestLinkedid": "c4061ca6474c-1531990397.86", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990398.147", "DialString": "150010002/150010002/172.20.0.13!!201", "Event": "DialBegin", "Exten": "202", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.144", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000003", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.147", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000009;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.142", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400377", "Channel": "Local/202@osvpi_account_call_int_permitted-00000008;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account_call_int_permitted", "Event": "Newstate", "Exten": "ID400377", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.137", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000003", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.147", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000009;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "SIP/150010002-00000003", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "c4061ca6474c-1531990397.86", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990398.147", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "202", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.144", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000009;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.144", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000009;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.142", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/202@osvpi_account_call_int_permitted-00000008;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400377", "Context": "osvpi_account_call_int", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-00000009;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990397.86", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990398.142", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "202", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.139", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c1463dfa-4b08-4fdd-9bc8-4a5218c3a84a", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/202@osvpi_account_call_int_permitted-00000008;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400377", "Context": "osvpi_account_call_int", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.139", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400377", "Channel": "Local/202@osvpi_account_call_int_permitted-00000008;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account_call_int_permitted", "Event": "Newstate", "Exten": "ID400377", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.137", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "fe55275e-05ea-46c3-8ee0-214cc9682f7c", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c1463dfa-4b08-4fdd-9bc8-4a5218c3a84a", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000003", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.147", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c1463dfa-4b08-4fdd-9bc8-4a5218c3a84a", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000009;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "202", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.144", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "fe55275e-05ea-46c3-8ee0-214cc9682f7c", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000009;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.142", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "fe55275e-05ea-46c3-8ee0-214cc9682f7c", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/202@osvpi_account_call_int_permitted-00000008;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400377", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "202", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.139", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID400377@osvpi_proc_connectab_ctd-00000005;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_worker", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "ID400377", "DestChannel": "Local/202@osvpi_account_call_int_permitted-00000008;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "201", "DestContext": "osvpi_account_call_int_permitted", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990397.86", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990398.137", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "ID400377", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "31", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.86", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ab617b07-c800-4f70-aae5-a435532834a4", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ab617b07-c800-4f70-aae5-a435532834a4", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "ID400377", "Channel": "Local/202@osvpi_account_call_int_permitted-00000008;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account_call_int_permitted", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.137", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ab617b07-c800-4f70-aae5-a435532834a4", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID400377@osvpi_proc_connectab_ctd-00000005;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_worker", "Event": "BridgeEnter", "Exten": "ID400377", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "31", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.86", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ab617b07-c800-4f70-aae5-a435532834a4", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID400377@osvpi_proc_connectab_ctd-00000005;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_worker", "Event": "BridgeLeave", "Exten": "ID400377", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "31", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.86", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "fe55275e-05ea-46c3-8ee0-214cc9682f7c", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/202@osvpi_account_call_int_permitted-00000008;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400377", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "202", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.139", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "fe55275e-05ea-46c3-8ee0-214cc9682f7c", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID400377@osvpi_proc_connectab_ctd-00000005;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_worker", "Event": "BridgeEnter", "Exten": "ID400377", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "31", "Privilege": "call,all", "SwapUniqueid": "c4061ca6474c-1531990398.139", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.86", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ab617b07-c800-4f70-aae5-a435532834a4", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "ID400377", "Channel": "Local/202@osvpi_account_call_int_permitted-00000008;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account_call_int_permitted", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.137", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ab617b07-c800-4f70-aae5-a435532834a4", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400377", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/202@osvpi_account_call_int_permitted-00000008;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account_call_int_permitted", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.137", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/202@osvpi_account_call_int_permitted-00000008;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400377", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.139", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c1463dfa-4b08-4fdd-9bc8-4a5218c3a84a", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000003", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.147", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "fe55275e-05ea-46c3-8ee0-214cc9682f7c", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000009;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.142", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "fe55275e-05ea-46c3-8ee0-214cc9682f7c", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000003", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "c4061ca6474c-1531990398.142", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.147", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c1463dfa-4b08-4fdd-9bc8-4a5218c3a84a", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000009;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "202", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.144", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c1463dfa-4b08-4fdd-9bc8-4a5218c3a84a", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "202", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000009;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.142", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000009;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.144", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "fe55275e-05ea-46c3-8ee0-214cc9682f7c", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000003", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.147", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "fe55275e-05ea-46c3-8ee0-214cc9682f7c", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID400377@osvpi_proc_connectab_ctd-00000005;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_worker", "Event": "BridgeLeave", "Exten": "ID400377", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "31", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.86", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "fe55275e-05ea-46c3-8ee0-214cc9682f7c", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "202", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010002-00000003", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990398.147", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID400377@osvpi_proc_connectab_ctd-00000005;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.86", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "fe6cf9d3-eaf5-4c9e-b353-9bb9dc0a505a", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "201", "Channel": "Local/ID400377@osvpi_proc_connectab_ctd-00000005;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "Event": "BridgeLeave", "Exten": "ID400377", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "24", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.88", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "fe6cf9d3-eaf5-4c9e-b353-9bb9dc0a505a", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000002", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.101", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "fe6cf9d3-eaf5-4c9e-b353-9bb9dc0a505a", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010001-00000002", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.101", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID400377@osvpi_proc_connectab_ctd-00000005;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531990397.86", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990397.88", "content": ""} +] \ No newline at end of file diff --git a/tests/fixtures/originate/ctd-account-world-deny-a.json b/tests/fixtures/originate/ctd-account-world-deny-a.json new file mode 100644 index 0000000..9d1c2dd --- /dev/null +++ b/tests/fixtures/originate/ctd-account-world-deny-a.json @@ -0,0 +1,51 @@ +[ + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400381@osvpi_proc_connectab_ctd-0000001c;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_ctd", "Event": "Newchannel", "Exten": "ID400381", "Language": "en", "Linkedid": "c4061ca6474c-1531990682.554", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.554", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400381@osvpi_proc_connectab_ctd-0000001c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_ctd", "Event": "Newchannel", "Exten": "ID400381", "Language": "en", "Linkedid": "c4061ca6474c-1531990682.554", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.556", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400381@osvpi_proc_connectab_ctd-0000001c;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_ctd", "Event": "NewAccountCode", "Exten": "ID400381", "Language": "en", "Linkedid": "c4061ca6474c-1531990682.554", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.554", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400381@osvpi_proc_connectab_ctd-0000001c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_ctd", "Event": "NewAccountCode", "Exten": "ID400381", "Language": "en", "Linkedid": "c4061ca6474c-1531990682.554", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.556", "content": ""}, + {"Context": "osvpi_proc_connectab_ctd", "Event": "LocalBridge", "Exten": "ID400381", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "", "LocalOneChannel": "Local/ID400381@osvpi_proc_connectab_ctd-0000001c;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "", "LocalOneContext": "osvpi_proc_connectab_ctd", "LocalOneExten": "ID400381", "LocalOneLanguage": "en", "LocalOneLinkedid": "c4061ca6474c-1531990682.554", "LocalOnePriority": "1", "LocalOneUniqueid": "c4061ca6474c-1531990682.554", "LocalOptimization": "No", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "", "LocalTwoChannel": "Local/ID400381@osvpi_proc_connectab_ctd-0000001c;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "", "LocalTwoContext": "osvpi_proc_connectab_ctd", "LocalTwoExten": "ID400381", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "c4061ca6474c-1531990682.554", "LocalTwoPriority": "1", "LocalTwoUniqueid": "c4061ca6474c-1531990682.556", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "", "DestChannel": "Local/ID400381@osvpi_proc_connectab_ctd-0000001c;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "", "DestContext": "osvpi_proc_connectab_ctd", "DestExten": "ID400381", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990682.554", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990682.554", "DialString": "ID400381@osvpi_proc_connectab_ctd/n", "Event": "DialBegin", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "Calling...", "CallerIDNum": "", "Channel": "Local/ID400381@osvpi_proc_connectab_ctd-0000001c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "Event": "NewCallerid", "Exten": "ID400381", "Language": "en", "Linkedid": "c4061ca6474c-1531990682.554", "Priority": "11", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.556", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID400381@osvpi_proc_connectab_ctd-0000001c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_set_cli", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990682.554", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.556", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/201@osvpi_account_call_int_permitted-0000001d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int_permitted", "Event": "Newchannel", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990682.554", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.559", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/201@osvpi_account_call_int_permitted-0000001d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int_permitted", "Event": "Newchannel", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990682.554", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.561", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "ID400381", "Channel": "Local/201@osvpi_account_call_int_permitted-0000001d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_call_int_permitted", "Event": "NewCallerid", "Exten": "ID400381", "Language": "en", "Linkedid": "c4061ca6474c-1531990682.554", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.559", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400381", "Channel": "Local/201@osvpi_account_call_int_permitted-0000001d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_call_int_permitted", "Event": "NewAccountCode", "Exten": "ID400381", "Language": "en", "Linkedid": "c4061ca6474c-1531990682.554", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.559", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400381", "Channel": "Local/201@osvpi_account_call_int_permitted-0000001d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_call_int_permitted", "Event": "NewConnectedLine", "Exten": "ID400381", "Language": "en", "Linkedid": "c4061ca6474c-1531990682.554", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.559", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/201@osvpi_account_call_int_permitted-0000001d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400381", "Context": "osvpi_account_call_int_permitted", "Event": "NewCallerid", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990682.554", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.561", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/201@osvpi_account_call_int_permitted-0000001d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400381", "Context": "osvpi_account_call_int_permitted", "Event": "NewAccountCode", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990682.554", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.561", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/201@osvpi_account_call_int_permitted-0000001d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400381", "Context": "osvpi_account_call_int_permitted", "Event": "NewConnectedLine", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990682.554", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.561", "content": ""}, + {"Context": "osvpi_account_call_int_permitted", "Event": "LocalBridge", "Exten": "201", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "ID400381", "LocalOneChannel": "Local/201@osvpi_account_call_int_permitted-0000001d;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Calling...", "LocalOneConnectedLineNum": "+31150010001", "LocalOneContext": "osvpi_account_call_int_permitted", "LocalOneExten": "ID400381", "LocalOneLanguage": "en", "LocalOneLinkedid": "c4061ca6474c-1531990682.554", "LocalOnePriority": "1", "LocalOneUniqueid": "c4061ca6474c-1531990682.559", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "Calling...", "LocalTwoCallerIDNum": "+31150010001", "LocalTwoChannel": "Local/201@osvpi_account_call_int_permitted-0000001d;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "ID400381", "LocalTwoContext": "osvpi_account_call_int_permitted", "LocalTwoExten": "201", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "c4061ca6474c-1531990682.554", "LocalTwoPriority": "1", "LocalTwoUniqueid": "c4061ca6474c-1531990682.561", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID400381@osvpi_proc_connectab_ctd-0000001c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "ID400381", "DestChannel": "Local/201@osvpi_account_call_int_permitted-0000001d;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_account_call_int_permitted", "DestExten": "ID400381", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990682.554", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990682.559", "DialString": "201@osvpi_account_call_int_permitted", "Event": "DialBegin", "Exten": "ID400381", "Language": "en", "Linkedid": "c4061ca6474c-1531990682.554", "Priority": "24", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.556", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000001e;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730150", "Language": "en", "Linkedid": "c4061ca6474c-1531990682.554", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.564", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000001e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730150", "Language": "en", "Linkedid": "c4061ca6474c-1531990682.554", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.565", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000001e;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990682.554", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.564", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000001e;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990682.554", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.564", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000001e;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990682.554", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.564", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000001e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730150", "Language": "en", "Linkedid": "c4061ca6474c-1531990682.554", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.565", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000001e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730150", "Language": "en", "Linkedid": "c4061ca6474c-1531990682.554", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.565", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000001e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730150", "Language": "en", "Linkedid": "c4061ca6474c-1531990682.554", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.565", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730150", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "201", "LocalOneChannel": "Local/ID730150@osvpi_route_phoneaccount-0000001e;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Calling...", "LocalOneConnectedLineNum": "+31150010001", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "201", "LocalOneLanguage": "en", "LocalOneLinkedid": "c4061ca6474c-1531990682.554", "LocalOnePriority": "1", "LocalOneUniqueid": "c4061ca6474c-1531990682.564", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "Calling...", "LocalTwoCallerIDNum": "+31150010001", "LocalTwoChannel": "Local/ID730150@osvpi_route_phoneaccount-0000001e;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "201", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730150", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "c4061ca6474c-1531990682.554", "LocalTwoPriority": "1", "LocalTwoUniqueid": "c4061ca6474c-1531990682.565", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/201@osvpi_account_call_int_permitted-0000001d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400381", "Context": "osvpi_account_call_int", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "201", "DestChannel": "Local/ID730150@osvpi_route_phoneaccount-0000001e;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "201", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990682.554", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990682.564", "DialString": "ID730150@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990682.554", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.561", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010001-00000010", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "c4061ca6474c-1531990682.554", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.569", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000010", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531990682.554", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.569", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000010", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531990682.554", "OldAccountCode": "150010001", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.569", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000010", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531990682.554", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.569", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000001e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "201", "DestChannel": "SIP/150010001-00000010", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_account", "DestExten": "201", "DestLanguage": "nl", "DestLinkedid": "c4061ca6474c-1531990682.554", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990682.569", "DialString": "150010001/150010001/172.20.0.13!!0150010001", "Event": "DialBegin", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990682.554", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.565", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000010", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531990682.554", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.569", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000001e;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990682.554", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.564", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400381", "Channel": "Local/201@osvpi_account_call_int_permitted-0000001d;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_call_int_permitted", "Event": "Newstate", "Exten": "ID400381", "Language": "en", "Linkedid": "c4061ca6474c-1531990682.554", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.559", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400381@osvpi_proc_connectab_ctd-0000001c;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_ctd", "Event": "Newstate", "Exten": "ID400381", "Language": "en", "Linkedid": "c4061ca6474c-1531990682.554", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.554", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000001e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "201", "DestChannel": "SIP/150010001-00000010", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_account", "DestExten": "201", "DestLanguage": "nl", "DestLinkedid": "c4061ca6474c-1531990682.554", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990682.569", "DialStatus": "BUSY", "Event": "DialEnd", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990682.554", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.565", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Cause": "17", "Cause-txt": "User busy", "Channel": "SIP/150010001-00000010", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "Hangup", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531990682.554", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.569", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Cause": "17", "Cause-txt": "User busy", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000001e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531990682.554", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.565", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/201@osvpi_account_call_int_permitted-0000001d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400381", "Context": "osvpi_account_call_int", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "201", "DestChannel": "Local/ID730150@osvpi_route_phoneaccount-0000001e;1", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "201", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990682.554", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990682.564", "DialStatus": "BUSY", "Event": "DialEnd", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990682.554", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.561", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Cause": "17", "Cause-txt": "User busy", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000001e;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990682.554", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.564", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Cause": "17", "Cause-txt": "User busy", "Channel": "Local/201@osvpi_account_call_int_permitted-0000001d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400381", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531990682.554", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.561", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID400381@osvpi_proc_connectab_ctd-0000001c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "ID400381", "DestChannel": "Local/201@osvpi_account_call_int_permitted-0000001d;1", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_account_call_int_permitted", "DestExten": "ID400381", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990682.554", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990682.559", "DialStatus": "BUSY", "Event": "DialEnd", "Exten": "ID400381", "Language": "en", "Linkedid": "c4061ca6474c-1531990682.554", "Priority": "24", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.556", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400381", "Cause": "17", "Cause-txt": "User busy", "Channel": "Local/201@osvpi_account_call_int_permitted-0000001d;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_call_int_permitted", "Event": "Hangup", "Exten": "ID400381", "Language": "en", "Linkedid": "c4061ca6474c-1531990682.554", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.559", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Cause": "17", "Cause-txt": "User busy", "Channel": "Local/ID400381@osvpi_proc_connectab_ctd-0000001c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531990682.554", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.556", "content": ""}, + {"DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "", "DestChannel": "Local/ID400381@osvpi_proc_connectab_ctd-0000001c;1", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "", "DestConnectedLineNum": "", "DestContext": "osvpi_proc_connectab_ctd", "DestExten": "ID400381", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990682.554", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990682.554", "DialStatus": "BUSY", "Event": "DialEnd", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "", "Cause": "17", "Cause-txt": "User busy", "Channel": "Local/ID400381@osvpi_proc_connectab_ctd-0000001c;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_ctd", "Event": "Hangup", "Exten": "ID400381", "Language": "en", "Linkedid": "c4061ca6474c-1531990682.554", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990682.554", "content": ""} +] \ No newline at end of file diff --git a/tests/fixtures/originate/ctd-account-world-deny-b.json b/tests/fixtures/originate/ctd-account-world-deny-b.json new file mode 100644 index 0000000..fcc5651 --- /dev/null +++ b/tests/fixtures/originate/ctd-account-world-deny-b.json @@ -0,0 +1,117 @@ +[ + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400382@osvpi_proc_connectab_ctd-0000001f;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_ctd", "Event": "Newchannel", "Exten": "ID400382", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.589", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400382@osvpi_proc_connectab_ctd-0000001f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_ctd", "Event": "Newchannel", "Exten": "ID400382", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.590", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400382@osvpi_proc_connectab_ctd-0000001f;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_ctd", "Event": "NewAccountCode", "Exten": "ID400382", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.589", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400382@osvpi_proc_connectab_ctd-0000001f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_ctd", "Event": "NewAccountCode", "Exten": "ID400382", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.590", "content": ""}, + {"Context": "osvpi_proc_connectab_ctd", "Event": "LocalBridge", "Exten": "ID400382", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "", "LocalOneChannel": "Local/ID400382@osvpi_proc_connectab_ctd-0000001f;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "", "LocalOneContext": "osvpi_proc_connectab_ctd", "LocalOneExten": "ID400382", "LocalOneLanguage": "en", "LocalOneLinkedid": "c4061ca6474c-1531990698.589", "LocalOnePriority": "1", "LocalOneUniqueid": "c4061ca6474c-1531990698.589", "LocalOptimization": "No", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "", "LocalTwoChannel": "Local/ID400382@osvpi_proc_connectab_ctd-0000001f;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "", "LocalTwoContext": "osvpi_proc_connectab_ctd", "LocalTwoExten": "ID400382", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "c4061ca6474c-1531990698.589", "LocalTwoPriority": "1", "LocalTwoUniqueid": "c4061ca6474c-1531990698.590", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "", "DestChannel": "Local/ID400382@osvpi_proc_connectab_ctd-0000001f;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "", "DestContext": "osvpi_proc_connectab_ctd", "DestExten": "ID400382", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990698.589", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990698.589", "DialString": "ID400382@osvpi_proc_connectab_ctd/n", "Event": "DialBegin", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "Calling...", "CallerIDNum": "", "Channel": "Local/ID400382@osvpi_proc_connectab_ctd-0000001f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "Event": "NewCallerid", "Exten": "ID400382", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "11", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.590", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID400382@osvpi_proc_connectab_ctd-0000001f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_set_cli", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.590", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/201@osvpi_account_call_int_permitted-00000020;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int_permitted", "Event": "Newchannel", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.594", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/201@osvpi_account_call_int_permitted-00000020;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int_permitted", "Event": "Newchannel", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.596", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "ID400382", "Channel": "Local/201@osvpi_account_call_int_permitted-00000020;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_call_int_permitted", "Event": "NewCallerid", "Exten": "ID400382", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.594", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400382", "Channel": "Local/201@osvpi_account_call_int_permitted-00000020;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_call_int_permitted", "Event": "NewAccountCode", "Exten": "ID400382", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.594", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400382", "Channel": "Local/201@osvpi_account_call_int_permitted-00000020;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_call_int_permitted", "Event": "NewConnectedLine", "Exten": "ID400382", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.594", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/201@osvpi_account_call_int_permitted-00000020;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400382", "Context": "osvpi_account_call_int_permitted", "Event": "NewCallerid", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.596", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/201@osvpi_account_call_int_permitted-00000020;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400382", "Context": "osvpi_account_call_int_permitted", "Event": "NewAccountCode", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.596", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/201@osvpi_account_call_int_permitted-00000020;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400382", "Context": "osvpi_account_call_int_permitted", "Event": "NewConnectedLine", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.596", "content": ""}, + {"Context": "osvpi_account_call_int_permitted", "Event": "LocalBridge", "Exten": "201", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "ID400382", "LocalOneChannel": "Local/201@osvpi_account_call_int_permitted-00000020;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Calling...", "LocalOneConnectedLineNum": "+31150010001", "LocalOneContext": "osvpi_account_call_int_permitted", "LocalOneExten": "ID400382", "LocalOneLanguage": "en", "LocalOneLinkedid": "c4061ca6474c-1531990698.589", "LocalOnePriority": "1", "LocalOneUniqueid": "c4061ca6474c-1531990698.594", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "Calling...", "LocalTwoCallerIDNum": "+31150010001", "LocalTwoChannel": "Local/201@osvpi_account_call_int_permitted-00000020;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "ID400382", "LocalTwoContext": "osvpi_account_call_int_permitted", "LocalTwoExten": "201", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "c4061ca6474c-1531990698.589", "LocalTwoPriority": "1", "LocalTwoUniqueid": "c4061ca6474c-1531990698.596", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID400382@osvpi_proc_connectab_ctd-0000001f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "ID400382", "DestChannel": "Local/201@osvpi_account_call_int_permitted-00000020;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_account_call_int_permitted", "DestExten": "ID400382", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990698.589", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990698.594", "DialString": "201@osvpi_account_call_int_permitted", "Event": "DialBegin", "Exten": "ID400382", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "24", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.590", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000021;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730150", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.599", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000021;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730150", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.601", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000021;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.599", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000021;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.599", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000021;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.599", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000021;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730150", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.601", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000021;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730150", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.601", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000021;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730150", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.601", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730150", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "201", "LocalOneChannel": "Local/ID730150@osvpi_route_phoneaccount-00000021;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Calling...", "LocalOneConnectedLineNum": "+31150010001", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "201", "LocalOneLanguage": "en", "LocalOneLinkedid": "c4061ca6474c-1531990698.589", "LocalOnePriority": "1", "LocalOneUniqueid": "c4061ca6474c-1531990698.599", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "Calling...", "LocalTwoCallerIDNum": "+31150010001", "LocalTwoChannel": "Local/ID730150@osvpi_route_phoneaccount-00000021;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "201", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730150", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "c4061ca6474c-1531990698.589", "LocalTwoPriority": "1", "LocalTwoUniqueid": "c4061ca6474c-1531990698.601", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/201@osvpi_account_call_int_permitted-00000020;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400382", "Context": "osvpi_account_call_int", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "201", "DestChannel": "Local/ID730150@osvpi_route_phoneaccount-00000021;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "201", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990698.589", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990698.599", "DialString": "ID730150@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.596", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010001-00000011", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.604", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000011", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.604", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000011", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531990698.589", "OldAccountCode": "150010001", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.604", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000011", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.604", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000021;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "201", "DestChannel": "SIP/150010001-00000011", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_account", "DestExten": "201", "DestLanguage": "nl", "DestLinkedid": "c4061ca6474c-1531990698.589", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990698.604", "DialString": "150010001/150010001/172.20.0.13!!0150010001", "Event": "DialBegin", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.601", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000011", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.604", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000021;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.599", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400382", "Channel": "Local/201@osvpi_account_call_int_permitted-00000020;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_call_int_permitted", "Event": "Newstate", "Exten": "ID400382", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.594", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400382@osvpi_proc_connectab_ctd-0000001f;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_ctd", "Event": "Newstate", "Exten": "ID400382", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.589", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000011", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.604", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000021;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "201", "DestChannel": "SIP/150010001-00000011", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "c4061ca6474c-1531990698.589", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990698.604", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.601", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000021;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.601", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000021;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.599", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/201@osvpi_account_call_int_permitted-00000020;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400382", "Context": "osvpi_account_call_int", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "201", "DestChannel": "Local/ID730150@osvpi_route_phoneaccount-00000021;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990698.589", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990698.599", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.596", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/201@osvpi_account_call_int_permitted-00000020;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400382", "Context": "osvpi_account_call_int", "Event": "Newstate", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.596", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c79953c1-fd43-4f53-98bf-588ebb30198b", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400382", "Channel": "Local/201@osvpi_account_call_int_permitted-00000020;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_call_int_permitted", "Event": "Newstate", "Exten": "ID400382", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.594", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1932b861-e286-45c0-8e52-b7bccb8a6a77", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c79953c1-fd43-4f53-98bf-588ebb30198b", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000021;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.599", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID400382@osvpi_proc_connectab_ctd-0000001f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "ID400382", "DestChannel": "Local/201@osvpi_account_call_int_permitted-00000020;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_account_call_int_permitted", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990698.589", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990698.594", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "ID400382", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "24", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.590", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID400382@osvpi_proc_connectab_ctd-0000001f;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "Event": "Newstate", "Exten": "ID400382", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "24", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.590", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400382@osvpi_proc_connectab_ctd-0000001f;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_ctd", "Event": "Newstate", "Exten": "ID400382", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.589", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c79953c1-fd43-4f53-98bf-588ebb30198b", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/201@osvpi_account_call_int_permitted-00000020;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400382", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.596", "content": ""}, + {"DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "", "DestChannel": "Local/ID400382@osvpi_proc_connectab_ctd-0000001f;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "", "DestContext": "osvpi_proc_connectab_ctd", "DestExten": "ID400382", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990698.589", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990698.589", "DialStatus": "ANSWER", "Event": "DialEnd", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "5700ea2c-c9a3-49d0-9114-9cfdedb65be1", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "5700ea2c-c9a3-49d0-9114-9cfdedb65be1", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "ID400382", "Channel": "Local/201@osvpi_account_call_int_permitted-00000020;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_call_int_permitted", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.594", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "5700ea2c-c9a3-49d0-9114-9cfdedb65be1", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID400382@osvpi_proc_connectab_ctd-0000001f;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "Event": "BridgeEnter", "Exten": "ID400382", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "24", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.590", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1932b861-e286-45c0-8e52-b7bccb8a6a77", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000011", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.604", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1932b861-e286-45c0-8e52-b7bccb8a6a77", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000021;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.601", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1932b861-e286-45c0-8e52-b7bccb8a6a77", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000011", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.604", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c79953c1-fd43-4f53-98bf-588ebb30198b", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000021;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.599", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c79953c1-fd43-4f53-98bf-588ebb30198b", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000011", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "c4061ca6474c-1531990698.599", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.604", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1932b861-e286-45c0-8e52-b7bccb8a6a77", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000021;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.601", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1932b861-e286-45c0-8e52-b7bccb8a6a77", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000021;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.601", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000021;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.599", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c79953c1-fd43-4f53-98bf-588ebb30198b", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000011", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.604", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "5700ea2c-c9a3-49d0-9114-9cfdedb65be1", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "ID400382", "Channel": "Local/201@osvpi_account_call_int_permitted-00000020;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_call_int_permitted", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.594", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "5700ea2c-c9a3-49d0-9114-9cfdedb65be1", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000011", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "c4061ca6474c-1531990698.594", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.604", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c79953c1-fd43-4f53-98bf-588ebb30198b", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/201@osvpi_account_call_int_permitted-00000020;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400382", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.596", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c79953c1-fd43-4f53-98bf-588ebb30198b", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400382", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/201@osvpi_account_call_int_permitted-00000020;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_call_int_permitted", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.594", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/201@osvpi_account_call_int_permitted-00000020;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400382", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.596", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID400382@osvpi_proc_connectab_ctd-0000001f;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_set_cli", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.589", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000022;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world_call_permittedplus", "Event": "Newchannel", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990699.640", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000022;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world_call_permittedplus", "Event": "Newchannel", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990699.642", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "ID400382", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000022;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_world_call_permittedplus", "Event": "NewCallerid", "Exten": "ID400382", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990699.640", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400382", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000022;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_world_call_permittedplus", "Event": "NewAccountCode", "Exten": "ID400382", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990699.640", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400382", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000022;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_world_call_permittedplus", "Event": "NewConnectedLine", "Exten": "ID400382", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990699.640", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000022;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400382", "Context": "osvpi_world_call_permittedplus", "Event": "NewCallerid", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990699.642", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000022;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400382", "Context": "osvpi_world_call_permittedplus", "Event": "NewAccountCode", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990699.642", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000022;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400382", "Context": "osvpi_world_call_permittedplus", "Event": "NewConnectedLine", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990699.642", "content": ""}, + {"Context": "osvpi_world_call_permittedplus", "Event": "LocalBridge", "Exten": "+31260010001", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "ID400382", "LocalOneChannel": "Local/+31260010001@osvpi_world_call_permittedplus-00000022;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31150010001", "LocalOneContext": "osvpi_world_call_permittedplus", "LocalOneExten": "ID400382", "LocalOneLanguage": "en", "LocalOneLinkedid": "c4061ca6474c-1531990698.589", "LocalOnePriority": "1", "LocalOneUniqueid": "c4061ca6474c-1531990699.640", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31150010001", "LocalTwoChannel": "Local/+31260010001@osvpi_world_call_permittedplus-00000022;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "ID400382", "LocalTwoContext": "osvpi_world_call_permittedplus", "LocalTwoExten": "+31260010001", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "c4061ca6474c-1531990698.589", "LocalTwoPriority": "1", "LocalTwoUniqueid": "c4061ca6474c-1531990699.642", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID400382@osvpi_proc_connectab_ctd-0000001f;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_worker", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "ID400382", "DestChannel": "Local/+31260010001@osvpi_world_call_permittedplus-00000022;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_world_call_permittedplus", "DestExten": "ID400382", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990698.589", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990699.640", "DialString": "+31260010001@osvpi_world_call_permittedplus", "Event": "DialBegin", "Exten": "ID400382", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "28", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.589", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31260010001@world_out-00000023;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "world_out", "Event": "Newchannel", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990699.645", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31260010001@world_out-00000023;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "world_out", "Event": "Newchannel", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990699.646", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-00000023;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewCallerid", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990699.645", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-00000023;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewAccountCode", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990699.645", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-00000023;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewConnectedLine", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990699.645", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-00000023;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "NewCallerid", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990699.646", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-00000023;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "NewAccountCode", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990699.646", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-00000023;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "NewConnectedLine", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990699.646", "content": ""}, + {"Context": "world_out", "Event": "LocalBridge", "Exten": "+31260010001", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31260010001", "LocalOneChannel": "Local/+31260010001@world_out-00000023;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31150010001", "LocalOneContext": "world_out", "LocalOneExten": "+31260010001", "LocalOneLanguage": "en", "LocalOneLinkedid": "c4061ca6474c-1531990698.589", "LocalOnePriority": "1", "LocalOneUniqueid": "c4061ca6474c-1531990699.645", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31150010001", "LocalTwoChannel": "Local/+31260010001@world_out-00000023;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31260010001", "LocalTwoContext": "world_out", "LocalTwoExten": "+31260010001", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "c4061ca6474c-1531990698.589", "LocalTwoPriority": "1", "LocalTwoUniqueid": "c4061ca6474c-1531990699.646", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000022;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400382", "Context": "osvpi_world_call", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "Local/+31260010001@world_out-00000023;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "world_out", "DestExten": "+31260010001", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990698.589", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990699.645", "DialString": "+31260010001@world_out", "Event": "DialBegin", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "15", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990699.642", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/voipgrid-siproute-docker-00000012", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990699.650", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000012", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "NewCallerid", "Exten": "+31260010001", "Language": "nl", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990699.650", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000012", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "NewAccountCode", "Exten": "+31260010001", "Language": "nl", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990699.650", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000012", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "NewConnectedLine", "Exten": "+31260010001", "Language": "nl", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990699.650", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-00000023;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "SIP/voipgrid-siproute-docker-00000012", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "voipgrid_in", "DestExten": "+31260010001", "DestLanguage": "nl", "DestLinkedid": "c4061ca6474c-1531990698.589", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990699.650", "DialString": "+31260010001@voipgrid-siproute-docker", "Event": "DialBegin", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990699.646", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000012", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31260010001", "Language": "nl", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990699.650", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-00000023;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "Newstate", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990699.645", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400382", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000022;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_world_call_permittedplus", "Event": "Newstate", "Exten": "ID400382", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990699.640", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-00000023;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "SIP/voipgrid-siproute-docker-00000012", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "voipgrid_in", "DestExten": "+31260010001", "DestLanguage": "nl", "DestLinkedid": "c4061ca6474c-1531990698.589", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990699.650", "DialStatus": "BUSY", "Event": "DialEnd", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990699.646", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "17", "Cause-txt": "User busy", "Channel": "SIP/voipgrid-siproute-docker-00000012", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "Hangup", "Exten": "+31260010001", "Language": "nl", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990699.650", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "17", "Cause-txt": "User busy", "Channel": "Local/+31260010001@world_out-00000023;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990699.646", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000022;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400382", "Context": "osvpi_world_call", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "Local/+31260010001@world_out-00000023;1", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "world_out", "DestExten": "+31260010001", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990698.589", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990699.645", "DialStatus": "BUSY", "Event": "DialEnd", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "15", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990699.642", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "17", "Cause-txt": "User busy", "Channel": "Local/+31260010001@world_out-00000023;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "Hangup", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990699.645", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "17", "Cause-txt": "User busy", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000022;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400382", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990699.642", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID400382@osvpi_proc_connectab_ctd-0000001f;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_worker", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "ID400382", "DestChannel": "Local/+31260010001@osvpi_world_call_permittedplus-00000022;1", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_world_call_permittedplus", "DestExten": "ID400382", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990698.589", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990699.640", "DialStatus": "BUSY", "Event": "DialEnd", "Exten": "ID400382", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "28", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.589", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400382", "Cause": "17", "Cause-txt": "User busy", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000022;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_world_call_permittedplus", "Event": "Hangup", "Exten": "ID400382", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990699.640", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "17", "Cause-txt": "User busy", "Channel": "Local/ID400382@osvpi_proc_connectab_ctd-0000001f;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.589", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "5700ea2c-c9a3-49d0-9114-9cfdedb65be1", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID400382@osvpi_proc_connectab_ctd-0000001f;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "Event": "BridgeLeave", "Exten": "ID400382", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "24", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.590", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "5700ea2c-c9a3-49d0-9114-9cfdedb65be1", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000011", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.604", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "5700ea2c-c9a3-49d0-9114-9cfdedb65be1", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Cause": "17", "Cause-txt": "User busy", "Channel": "SIP/150010001-00000011", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.604", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Cause": "17", "Cause-txt": "User busy", "Channel": "Local/ID400382@osvpi_proc_connectab_ctd-0000001f;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531990698.589", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990698.590", "content": ""} +] diff --git a/tests/fixtures/originate/ctd-account-world-xfer-attn-abacbc.json b/tests/fixtures/originate/ctd-account-world-xfer-attn-abacbc.json new file mode 100644 index 0000000..d7cbdff --- /dev/null +++ b/tests/fixtures/originate/ctd-account-world-xfer-attn-abacbc.json @@ -0,0 +1,200 @@ +[ + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400386@osvpi_proc_connectab_ctd-00000039;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_ctd", "Event": "Newchannel", "Exten": "ID400386", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1164", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400386@osvpi_proc_connectab_ctd-00000039;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_ctd", "Event": "Newchannel", "Exten": "ID400386", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1165", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400386@osvpi_proc_connectab_ctd-00000039;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_ctd", "Event": "NewAccountCode", "Exten": "ID400386", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1164", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400386@osvpi_proc_connectab_ctd-00000039;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_ctd", "Event": "NewAccountCode", "Exten": "ID400386", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1165", "content": ""}, + {"Context": "osvpi_proc_connectab_ctd", "Event": "LocalBridge", "Exten": "ID400386", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "", "LocalOneChannel": "Local/ID400386@osvpi_proc_connectab_ctd-00000039;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "", "LocalOneContext": "osvpi_proc_connectab_ctd", "LocalOneExten": "ID400386", "LocalOneLanguage": "en", "LocalOneLinkedid": "c4061ca6474c-1531991604.1164", "LocalOnePriority": "1", "LocalOneUniqueid": "c4061ca6474c-1531991604.1164", "LocalOptimization": "No", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "", "LocalTwoChannel": "Local/ID400386@osvpi_proc_connectab_ctd-00000039;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "", "LocalTwoContext": "osvpi_proc_connectab_ctd", "LocalTwoExten": "ID400386", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "c4061ca6474c-1531991604.1164", "LocalTwoPriority": "1", "LocalTwoUniqueid": "c4061ca6474c-1531991604.1165", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "", "DestChannel": "Local/ID400386@osvpi_proc_connectab_ctd-00000039;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "", "DestContext": "osvpi_proc_connectab_ctd", "DestExten": "ID400386", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531991604.1164", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531991604.1164", "DialString": "ID400386@osvpi_proc_connectab_ctd/n", "Event": "DialBegin", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "Calling...", "CallerIDNum": "", "Channel": "Local/ID400386@osvpi_proc_connectab_ctd-00000039;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "Event": "NewCallerid", "Exten": "ID400386", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "11", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1165", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID400386@osvpi_proc_connectab_ctd-00000039;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_set_cli", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1165", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/201@osvpi_account_call_int_permitted-0000003a;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int_permitted", "Event": "Newchannel", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1169", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/201@osvpi_account_call_int_permitted-0000003a;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int_permitted", "Event": "Newchannel", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1170", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "ID400386", "Channel": "Local/201@osvpi_account_call_int_permitted-0000003a;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_call_int_permitted", "Event": "NewCallerid", "Exten": "ID400386", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1169", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400386", "Channel": "Local/201@osvpi_account_call_int_permitted-0000003a;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_call_int_permitted", "Event": "NewAccountCode", "Exten": "ID400386", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1169", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400386", "Channel": "Local/201@osvpi_account_call_int_permitted-0000003a;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_call_int_permitted", "Event": "NewConnectedLine", "Exten": "ID400386", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1169", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/201@osvpi_account_call_int_permitted-0000003a;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400386", "Context": "osvpi_account_call_int_permitted", "Event": "NewCallerid", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1170", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/201@osvpi_account_call_int_permitted-0000003a;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400386", "Context": "osvpi_account_call_int_permitted", "Event": "NewAccountCode", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1170", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/201@osvpi_account_call_int_permitted-0000003a;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400386", "Context": "osvpi_account_call_int_permitted", "Event": "NewConnectedLine", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1170", "content": ""}, + {"Context": "osvpi_account_call_int_permitted", "Event": "LocalBridge", "Exten": "201", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "ID400386", "LocalOneChannel": "Local/201@osvpi_account_call_int_permitted-0000003a;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Calling...", "LocalOneConnectedLineNum": "+31150010001", "LocalOneContext": "osvpi_account_call_int_permitted", "LocalOneExten": "ID400386", "LocalOneLanguage": "en", "LocalOneLinkedid": "c4061ca6474c-1531991604.1164", "LocalOnePriority": "1", "LocalOneUniqueid": "c4061ca6474c-1531991604.1169", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "Calling...", "LocalTwoCallerIDNum": "+31150010001", "LocalTwoChannel": "Local/201@osvpi_account_call_int_permitted-0000003a;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "ID400386", "LocalTwoContext": "osvpi_account_call_int_permitted", "LocalTwoExten": "201", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "c4061ca6474c-1531991604.1164", "LocalTwoPriority": "1", "LocalTwoUniqueid": "c4061ca6474c-1531991604.1170", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID400386@osvpi_proc_connectab_ctd-00000039;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "ID400386", "DestChannel": "Local/201@osvpi_account_call_int_permitted-0000003a;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_account_call_int_permitted", "DestExten": "ID400386", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531991604.1164", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531991604.1169", "DialString": "201@osvpi_account_call_int_permitted", "Event": "DialBegin", "Exten": "ID400386", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "24", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1165", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000003b;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730150", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1174", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000003b;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730150", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1176", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000003b;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1174", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000003b;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1174", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000003b;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1174", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000003b;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730150", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1176", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000003b;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730150", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1176", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000003b;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730150", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1176", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730150", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "201", "LocalOneChannel": "Local/ID730150@osvpi_route_phoneaccount-0000003b;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Calling...", "LocalOneConnectedLineNum": "+31150010001", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "201", "LocalOneLanguage": "en", "LocalOneLinkedid": "c4061ca6474c-1531991604.1164", "LocalOnePriority": "1", "LocalOneUniqueid": "c4061ca6474c-1531991604.1174", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "Calling...", "LocalTwoCallerIDNum": "+31150010001", "LocalTwoChannel": "Local/ID730150@osvpi_route_phoneaccount-0000003b;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "201", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730150", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "c4061ca6474c-1531991604.1164", "LocalTwoPriority": "1", "LocalTwoUniqueid": "c4061ca6474c-1531991604.1176", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/201@osvpi_account_call_int_permitted-0000003a;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400386", "Context": "osvpi_account_call_int", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "201", "DestChannel": "Local/ID730150@osvpi_route_phoneaccount-0000003b;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "201", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531991604.1164", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531991604.1174", "DialString": "ID730150@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1170", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010001-00000025", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1179", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000025", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1179", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000025", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531991604.1164", "OldAccountCode": "150010001", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1179", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000025", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1179", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000003b;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "201", "DestChannel": "SIP/150010001-00000025", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_account", "DestExten": "201", "DestLanguage": "nl", "DestLinkedid": "c4061ca6474c-1531991604.1164", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531991604.1179", "DialString": "150010001/150010001/172.20.0.13!!0150010001", "Event": "DialBegin", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1176", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000025", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1179", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000003b;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1174", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400386", "Channel": "Local/201@osvpi_account_call_int_permitted-0000003a;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_call_int_permitted", "Event": "Newstate", "Exten": "ID400386", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1169", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400386@osvpi_proc_connectab_ctd-00000039;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_ctd", "Event": "Newstate", "Exten": "ID400386", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1164", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000025", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1179", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000003b;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "201", "DestChannel": "SIP/150010001-00000025", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "c4061ca6474c-1531991604.1164", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531991604.1179", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1176", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000003b;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1176", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000003b;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1174", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "0203a720-3afb-4f92-9deb-3a5c9b2ed842", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/201@osvpi_account_call_int_permitted-0000003a;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400386", "Context": "osvpi_account_call_int", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "201", "DestChannel": "Local/ID730150@osvpi_route_phoneaccount-0000003b;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531991604.1164", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531991604.1174", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1170", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/201@osvpi_account_call_int_permitted-0000003a;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400386", "Context": "osvpi_account_call_int", "Event": "Newstate", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1170", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400386", "Channel": "Local/201@osvpi_account_call_int_permitted-0000003a;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_call_int_permitted", "Event": "Newstate", "Exten": "ID400386", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1169", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "7a749519-be8c-41cd-8b48-b70fe3483733", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID400386@osvpi_proc_connectab_ctd-00000039;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "ID400386", "DestChannel": "Local/201@osvpi_account_call_int_permitted-0000003a;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_account_call_int_permitted", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531991604.1164", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531991604.1169", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "ID400386", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "24", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1165", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID400386@osvpi_proc_connectab_ctd-00000039;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "Event": "Newstate", "Exten": "ID400386", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "24", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1165", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400386@osvpi_proc_connectab_ctd-00000039;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_ctd", "Event": "Newstate", "Exten": "ID400386", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1164", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "7a749519-be8c-41cd-8b48-b70fe3483733", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000003b;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1174", "content": ""}, + {"DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "", "DestChannel": "Local/ID400386@osvpi_proc_connectab_ctd-00000039;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "", "DestContext": "osvpi_proc_connectab_ctd", "DestExten": "ID400386", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531991604.1164", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531991604.1164", "DialStatus": "ANSWER", "Event": "DialEnd", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "7a749519-be8c-41cd-8b48-b70fe3483733", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/201@osvpi_account_call_int_permitted-0000003a;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400386", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1170", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "dbbee54d-1261-4be4-b27d-18c56798ea4a", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "dbbee54d-1261-4be4-b27d-18c56798ea4a", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "ID400386", "Channel": "Local/201@osvpi_account_call_int_permitted-0000003a;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_call_int_permitted", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1169", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "dbbee54d-1261-4be4-b27d-18c56798ea4a", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID400386@osvpi_proc_connectab_ctd-00000039;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "Event": "BridgeEnter", "Exten": "ID400386", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "24", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1165", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "0203a720-3afb-4f92-9deb-3a5c9b2ed842", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000025", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1179", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "0203a720-3afb-4f92-9deb-3a5c9b2ed842", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000003b;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1176", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "0203a720-3afb-4f92-9deb-3a5c9b2ed842", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000025", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1179", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "7a749519-be8c-41cd-8b48-b70fe3483733", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000003b;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1174", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "7a749519-be8c-41cd-8b48-b70fe3483733", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000025", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "c4061ca6474c-1531991604.1174", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1179", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "0203a720-3afb-4f92-9deb-3a5c9b2ed842", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000003b;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1176", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "0203a720-3afb-4f92-9deb-3a5c9b2ed842", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000003b;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1174", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000003b;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1176", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "7a749519-be8c-41cd-8b48-b70fe3483733", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000025", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1179", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "dbbee54d-1261-4be4-b27d-18c56798ea4a", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "ID400386", "Channel": "Local/201@osvpi_account_call_int_permitted-0000003a;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_call_int_permitted", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1169", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "dbbee54d-1261-4be4-b27d-18c56798ea4a", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000025", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "c4061ca6474c-1531991604.1169", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1179", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "7a749519-be8c-41cd-8b48-b70fe3483733", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/201@osvpi_account_call_int_permitted-0000003a;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400386", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1170", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "7a749519-be8c-41cd-8b48-b70fe3483733", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/201@osvpi_account_call_int_permitted-0000003a;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400386", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1170", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400386", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/201@osvpi_account_call_int_permitted-0000003a;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_call_int_permitted", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1169", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID400386@osvpi_proc_connectab_ctd-00000039;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_set_cli", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1164", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-0000003c;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world_call_permittedplus", "Event": "Newchannel", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1215", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-0000003c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world_call_permittedplus", "Event": "Newchannel", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1217", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "ID400386", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-0000003c;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_world_call_permittedplus", "Event": "NewCallerid", "Exten": "ID400386", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1215", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400386", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-0000003c;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_world_call_permittedplus", "Event": "NewAccountCode", "Exten": "ID400386", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1215", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400386", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-0000003c;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_world_call_permittedplus", "Event": "NewConnectedLine", "Exten": "ID400386", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1215", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-0000003c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400386", "Context": "osvpi_world_call_permittedplus", "Event": "NewCallerid", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1217", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-0000003c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400386", "Context": "osvpi_world_call_permittedplus", "Event": "NewAccountCode", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1217", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-0000003c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400386", "Context": "osvpi_world_call_permittedplus", "Event": "NewConnectedLine", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1217", "content": ""}, + {"Context": "osvpi_world_call_permittedplus", "Event": "LocalBridge", "Exten": "+31260010001", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "ID400386", "LocalOneChannel": "Local/+31260010001@osvpi_world_call_permittedplus-0000003c;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31150010001", "LocalOneContext": "osvpi_world_call_permittedplus", "LocalOneExten": "ID400386", "LocalOneLanguage": "en", "LocalOneLinkedid": "c4061ca6474c-1531991604.1164", "LocalOnePriority": "1", "LocalOneUniqueid": "c4061ca6474c-1531991605.1215", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31150010001", "LocalTwoChannel": "Local/+31260010001@osvpi_world_call_permittedplus-0000003c;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "ID400386", "LocalTwoContext": "osvpi_world_call_permittedplus", "LocalTwoExten": "+31260010001", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "c4061ca6474c-1531991604.1164", "LocalTwoPriority": "1", "LocalTwoUniqueid": "c4061ca6474c-1531991605.1217", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID400386@osvpi_proc_connectab_ctd-00000039;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_worker", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "ID400386", "DestChannel": "Local/+31260010001@osvpi_world_call_permittedplus-0000003c;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_world_call_permittedplus", "DestExten": "ID400386", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531991604.1164", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531991605.1215", "DialString": "+31260010001@osvpi_world_call_permittedplus", "Event": "DialBegin", "Exten": "ID400386", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "28", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1164", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31260010001@world_out-0000003d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "world_out", "Event": "Newchannel", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1220", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31260010001@world_out-0000003d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "world_out", "Event": "Newchannel", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1222", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-0000003d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewCallerid", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1220", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-0000003d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewAccountCode", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1220", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-0000003d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewConnectedLine", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1220", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-0000003d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "NewCallerid", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1222", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-0000003d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "NewAccountCode", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1222", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-0000003d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "NewConnectedLine", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1222", "content": ""}, + {"Context": "world_out", "Event": "LocalBridge", "Exten": "+31260010001", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31260010001", "LocalOneChannel": "Local/+31260010001@world_out-0000003d;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31150010001", "LocalOneContext": "world_out", "LocalOneExten": "+31260010001", "LocalOneLanguage": "en", "LocalOneLinkedid": "c4061ca6474c-1531991604.1164", "LocalOnePriority": "1", "LocalOneUniqueid": "c4061ca6474c-1531991605.1220", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31150010001", "LocalTwoChannel": "Local/+31260010001@world_out-0000003d;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31260010001", "LocalTwoContext": "world_out", "LocalTwoExten": "+31260010001", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "c4061ca6474c-1531991604.1164", "LocalTwoPriority": "1", "LocalTwoUniqueid": "c4061ca6474c-1531991605.1222", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-0000003c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400386", "Context": "osvpi_world_call", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "Local/+31260010001@world_out-0000003d;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "world_out", "DestExten": "+31260010001", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531991604.1164", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531991605.1220", "DialString": "+31260010001@world_out", "Event": "DialBegin", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "15", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1217", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/voipgrid-siproute-docker-00000026", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1225", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000026", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "NewCallerid", "Exten": "+31260010001", "Language": "nl", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1225", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000026", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "NewAccountCode", "Exten": "+31260010001", "Language": "nl", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1225", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000026", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "NewConnectedLine", "Exten": "+31260010001", "Language": "nl", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1225", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-0000003d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "SIP/voipgrid-siproute-docker-00000026", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "voipgrid_in", "DestExten": "+31260010001", "DestLanguage": "nl", "DestLinkedid": "c4061ca6474c-1531991604.1164", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531991605.1225", "DialString": "+31260010001@voipgrid-siproute-docker", "Event": "DialBegin", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1222", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000026", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31260010001", "Language": "nl", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1225", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-0000003d;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "Newstate", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1220", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400386", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-0000003c;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_world_call_permittedplus", "Event": "Newstate", "Exten": "ID400386", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1215", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c276a877-abd1-48a5-a986-47f143d74c90", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "68514cd8-c9d6-4202-86ac-36f00c48dc92", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000026", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31260010001", "Language": "nl", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1225", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-0000003d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "SIP/voipgrid-siproute-docker-00000026", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "voipgrid_in", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "c4061ca6474c-1531991604.1164", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531991605.1225", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1222", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-0000003d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "Newstate", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1220", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-0000003c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400386", "Context": "osvpi_world_call", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "Local/+31260010001@world_out-0000003d;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "world_out", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531991604.1164", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531991605.1220", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "15", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1217", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-0000003c;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400386", "Context": "osvpi_world_call", "Event": "Newstate", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "15", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1217", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400386", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-0000003c;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_world_call_permittedplus", "Event": "Newstate", "Exten": "ID400386", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1215", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "54fd4f31-9963-49a0-8dc5-1bf189bf3dc9", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-0000003d;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_out", "Event": "Newstate", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1222", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "58ff9e7b-c50f-46fa-b97d-f4505a7bca56", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "58ff9e7b-c50f-46fa-b97d-f4505a7bca56", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000026", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1225", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "58ff9e7b-c50f-46fa-b97d-f4505a7bca56", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-0000003d;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_out", "Event": "BridgeEnter", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1222", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "54fd4f31-9963-49a0-8dc5-1bf189bf3dc9", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-0000003d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1220", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "54fd4f31-9963-49a0-8dc5-1bf189bf3dc9", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-0000003c;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400386", "Context": "osvpi_world_call", "Event": "BridgeEnter", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "15", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1217", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID400386@osvpi_proc_connectab_ctd-00000039;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_worker", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "ID400386", "DestChannel": "Local/+31260010001@osvpi_world_call_permittedplus-0000003c;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_world_call_permittedplus", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531991604.1164", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531991605.1215", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "ID400386", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "28", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1164", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "78d0cf87-e6d1-43b4-a4cd-a2ad4d018219", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "78d0cf87-e6d1-43b4-a4cd-a2ad4d018219", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "ID400386", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-0000003c;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_world_call_permittedplus", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1215", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "78d0cf87-e6d1-43b4-a4cd-a2ad4d018219", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID400386@osvpi_proc_connectab_ctd-00000039;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_worker", "Event": "BridgeEnter", "Exten": "ID400386", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "28", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1164", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "78d0cf87-e6d1-43b4-a4cd-a2ad4d018219", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID400386@osvpi_proc_connectab_ctd-00000039;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_worker", "Event": "BridgeLeave", "Exten": "ID400386", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "28", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1164", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "54fd4f31-9963-49a0-8dc5-1bf189bf3dc9", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-0000003c;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400386", "Context": "osvpi_world_call", "Event": "BridgeLeave", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "15", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1217", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "54fd4f31-9963-49a0-8dc5-1bf189bf3dc9", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID400386@osvpi_proc_connectab_ctd-00000039;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_worker", "Event": "BridgeEnter", "Exten": "ID400386", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "28", "Privilege": "call,all", "SwapUniqueid": "c4061ca6474c-1531991605.1217", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1164", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "78d0cf87-e6d1-43b4-a4cd-a2ad4d018219", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "ID400386", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-0000003c;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_world_call_permittedplus", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1215", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "78d0cf87-e6d1-43b4-a4cd-a2ad4d018219", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400386", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-0000003c;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_world_call_permittedplus", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1215", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-0000003c;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400386", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1217", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "54fd4f31-9963-49a0-8dc5-1bf189bf3dc9", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID400386@osvpi_proc_connectab_ctd-00000039;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_worker", "Event": "BridgeLeave", "Exten": "ID400386", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "28", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1164", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "58ff9e7b-c50f-46fa-b97d-f4505a7bca56", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-0000003d;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_out", "Event": "BridgeLeave", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1222", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "58ff9e7b-c50f-46fa-b97d-f4505a7bca56", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID400386@osvpi_proc_connectab_ctd-00000039;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_worker", "Event": "BridgeEnter", "Exten": "ID400386", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "28", "Privilege": "call,all", "SwapUniqueid": "c4061ca6474c-1531991605.1222", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1164", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "54fd4f31-9963-49a0-8dc5-1bf189bf3dc9", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-0000003d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1220", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "54fd4f31-9963-49a0-8dc5-1bf189bf3dc9", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/+31260010001@world_out-0000003d;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1222", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/+31260010001@world_out-0000003d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1220", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c276a877-abd1-48a5-a986-47f143d74c90", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000029", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "203", "Language": "en", "Linkedid": "c4061ca6474c-1531991613.1286", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991613.1286", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000029", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newstate", "Exten": "203", "Language": "nl", "Linkedid": "c4061ca6474c-1531991613.1286", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991613.1286", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000029", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "203", "Language": "nl", "Linkedid": "c4061ca6474c-1531991613.1286", "Priority": "5", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991613.1286", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000029", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "203", "Language": "nl", "Linkedid": "c4061ca6474c-1531991613.1286", "Priority": "6", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991613.1286", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000003f;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730152", "Language": "en", "Linkedid": "c4061ca6474c-1531991613.1286", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991613.1289", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000003f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730152", "Language": "en", "Linkedid": "c4061ca6474c-1531991613.1286", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991613.1291", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000003f;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "203", "Language": "en", "Linkedid": "c4061ca6474c-1531991613.1286", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991613.1289", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000003f;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "203", "Language": "en", "Linkedid": "c4061ca6474c-1531991613.1286", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991613.1289", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000003f;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "203", "Language": "en", "Linkedid": "c4061ca6474c-1531991613.1286", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991613.1289", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000003f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730152", "Language": "en", "Linkedid": "c4061ca6474c-1531991613.1286", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991613.1291", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000003f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730152", "Language": "en", "Linkedid": "c4061ca6474c-1531991613.1286", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991613.1291", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000003f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730152", "Language": "en", "Linkedid": "c4061ca6474c-1531991613.1286", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991613.1291", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730152", "LocalOneAccountCode": "150010001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "203", "LocalOneChannel": "Local/ID730152@osvpi_route_phoneaccount-0000003f;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Andrew Garza", "LocalOneConnectedLineNum": "201", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "203", "LocalOneLanguage": "en", "LocalOneLinkedid": "c4061ca6474c-1531991613.1286", "LocalOnePriority": "1", "LocalOneUniqueid": "c4061ca6474c-1531991613.1289", "LocalOptimization": "Yes", "LocalTwoAccountCode": "150010001", "LocalTwoCallerIDName": "Andrew Garza", "LocalTwoCallerIDNum": "201", "LocalTwoChannel": "Local/ID730152@osvpi_route_phoneaccount-0000003f;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "203", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730152", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "c4061ca6474c-1531991613.1286", "LocalTwoPriority": "1", "LocalTwoUniqueid": "c4061ca6474c-1531991613.1291", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000029", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "203", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-0000003f;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "203", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531991613.1286", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531991613.1289", "DialString": "ID730152@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "203", "Language": "nl", "Linkedid": "c4061ca6474c-1531991613.1286", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991613.1286", "content": ""}, + {"AccountCode": "150010003", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010003-0000002a", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "c4061ca6474c-1531991613.1286", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991613.1294", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-0000002a", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "203", "Language": "nl", "Linkedid": "c4061ca6474c-1531991613.1286", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991613.1294", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-0000002a", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "203", "Language": "nl", "Linkedid": "c4061ca6474c-1531991613.1286", "OldAccountCode": "150010003", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991613.1294", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-0000002a", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "203", "Language": "nl", "Linkedid": "c4061ca6474c-1531991613.1286", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991613.1294", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000003f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "203", "DestChannel": "SIP/150010003-0000002a", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "203", "DestLanguage": "nl", "DestLinkedid": "c4061ca6474c-1531991613.1286", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531991613.1294", "DialString": "150010003/150010003/172.20.0.13!!201", "Event": "DialBegin", "Exten": "203", "Language": "en", "Linkedid": "c4061ca6474c-1531991613.1286", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991613.1291", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-0000002a", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "203", "Language": "nl", "Linkedid": "c4061ca6474c-1531991613.1286", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991613.1294", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000003f;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "203", "Language": "en", "Linkedid": "c4061ca6474c-1531991613.1286", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991613.1289", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-0000002a", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "203", "Language": "nl", "Linkedid": "c4061ca6474c-1531991613.1286", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991613.1294", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000003f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "203", "DestChannel": "SIP/150010003-0000002a", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "c4061ca6474c-1531991613.1286", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531991613.1294", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "203", "Language": "en", "Linkedid": "c4061ca6474c-1531991613.1286", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991613.1291", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000003f;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "203", "Language": "en", "Linkedid": "c4061ca6474c-1531991613.1286", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991613.1291", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "6d4dc2a6-e431-4cda-9595-4e9d7288b448", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000003f;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "203", "Language": "en", "Linkedid": "c4061ca6474c-1531991613.1286", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991613.1289", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000029", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "203", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-0000003f;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531991613.1286", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531991613.1289", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "203", "Language": "nl", "Linkedid": "c4061ca6474c-1531991613.1286", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991613.1286", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000029", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "Newstate", "Exten": "203", "Language": "nl", "Linkedid": "c4061ca6474c-1531991613.1286", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991613.1286", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "6d4dc2a6-e431-4cda-9595-4e9d7288b448", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-0000002a", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531991613.1286", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991613.1294", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1c39da9e-d210-4cf1-8f65-dc484703bf41", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "6d4dc2a6-e431-4cda-9595-4e9d7288b448", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000003f;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "203", "Language": "en", "Linkedid": "c4061ca6474c-1531991613.1286", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991613.1291", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1c39da9e-d210-4cf1-8f65-dc484703bf41", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000003f;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531991613.1286", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991613.1289", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1c39da9e-d210-4cf1-8f65-dc484703bf41", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000029", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "203", "Language": "nl", "Linkedid": "c4061ca6474c-1531991613.1286", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991613.1286", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1c39da9e-d210-4cf1-8f65-dc484703bf41", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000029", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "203", "Language": "nl", "Linkedid": "c4061ca6474c-1531991613.1286", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991613.1286", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "6d4dc2a6-e431-4cda-9595-4e9d7288b448", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000003f;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "203", "Language": "en", "Linkedid": "c4061ca6474c-1531991613.1286", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991613.1291", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "6d4dc2a6-e431-4cda-9595-4e9d7288b448", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000029", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "203", "Language": "nl", "Linkedid": "c4061ca6474c-1531991613.1286", "Priority": "12", "Privilege": "call,all", "SwapUniqueid": "c4061ca6474c-1531991613.1291", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991613.1286", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1c39da9e-d210-4cf1-8f65-dc484703bf41", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000003f;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531991613.1286", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991613.1289", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1c39da9e-d210-4cf1-8f65-dc484703bf41", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000003f;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531991613.1286", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991613.1291", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000003f;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531991613.1286", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991613.1289", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "dbbee54d-1261-4be4-b27d-18c56798ea4a", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID400386@osvpi_proc_connectab_ctd-00000039;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "Event": "BridgeLeave", "Exten": "ID400386", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "24", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1165", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "6d4dc2a6-e431-4cda-9595-4e9d7288b448", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000029", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "203", "Language": "nl", "Linkedid": "c4061ca6474c-1531991613.1286", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991613.1286", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "6d4dc2a6-e431-4cda-9595-4e9d7288b448", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID400386@osvpi_proc_connectab_ctd-00000039;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "Event": "BridgeEnter", "Exten": "ID400386", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "24", "Privilege": "call,all", "SwapUniqueid": "c4061ca6474c-1531991613.1286", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1165", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-0000002a", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991613.1294", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID400386@osvpi_proc_connectab_ctd-00000039;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_proc_connectab", "Event": "NewConnectedLine", "Exten": "ID400386", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "24", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1165", "content": ""}, + {"DestBridgeUniqueid": "6d4dc2a6-e431-4cda-9595-4e9d7288b448", "DestType": "Bridge", "Event": "AttendedTransfer", "IsExternal": "No", "OrigBridgeCreator": "", "OrigBridgeName": "", "OrigBridgeNumChannels": "2", "OrigBridgeTechnology": "simple_bridge", "OrigBridgeType": "basic", "OrigBridgeUniqueid": "dbbee54d-1261-4be4-b27d-18c56798ea4a", "OrigBridgeVideoSourceMode": "none", "OrigTransfererAccountCode": "15001", "OrigTransfererCallerIDName": "", "OrigTransfererCallerIDNum": "201", "OrigTransfererChannel": "SIP/150010001-00000025", "OrigTransfererChannelState": "6", "OrigTransfererChannelStateDesc": "Up", "OrigTransfererConnectedLineName": "Calling...", "OrigTransfererConnectedLineNum": "+31150010001", "OrigTransfererContext": "osvpi_account", "OrigTransfererExten": "", "OrigTransfererLanguage": "nl", "OrigTransfererLinkedid": "c4061ca6474c-1531991604.1164", "OrigTransfererPriority": "1", "OrigTransfererUniqueid": "c4061ca6474c-1531991604.1179", "Privilege": "call,all", "Result": "Success", "SecondBridgeCreator": "", "SecondBridgeName": "", "SecondBridgeNumChannels": "2", "SecondBridgeTechnology": "simple_bridge", "SecondBridgeType": "basic", "SecondBridgeUniqueid": "6d4dc2a6-e431-4cda-9595-4e9d7288b448", "SecondBridgeVideoSourceMode": "none", "SecondTransfererAccountCode": "150010001", "SecondTransfererCallerIDName": "Andrew Garza", "SecondTransfererCallerIDNum": "201", "SecondTransfererChannel": "SIP/150010001-00000029", "SecondTransfererChannelState": "6", "SecondTransfererChannelStateDesc": "Up", "SecondTransfererConnectedLineName": "", "SecondTransfererConnectedLineNum": "", "SecondTransfererContext": "osvpi_account_call_int", "SecondTransfererExten": "203", "SecondTransfererLanguage": "nl", "SecondTransfererLinkedid": "c4061ca6474c-1531991613.1286", "SecondTransfererPriority": "12", "SecondTransfererUniqueid": "c4061ca6474c-1531991613.1286", "SystemName": "c4061ca6474c", "TransferTargetAccountCode": "150010001", "TransferTargetCallerIDName": "", "TransferTargetCallerIDNum": "203", "TransferTargetChannel": "SIP/150010003-0000002a", "TransferTargetChannelState": "6", "TransferTargetChannelStateDesc": "Up", "TransferTargetConnectedLineName": "Andrew Garza", "TransferTargetConnectedLineNum": "201", "TransferTargetContext": "osvpi_account", "TransferTargetExten": "", "TransferTargetLanguage": "nl", "TransferTargetLinkedid": "c4061ca6474c-1531991613.1286", "TransferTargetPriority": "1", "TransferTargetUniqueid": "c4061ca6474c-1531991613.1294", "TransfereeAccountCode": "15001", "TransfereeCallerIDName": "Calling...", "TransfereeCallerIDNum": "+31150010001", "TransfereeChannel": "Local/ID400386@osvpi_proc_connectab_ctd-00000039;2", "TransfereeChannelState": "6", "TransfereeChannelStateDesc": "Up", "TransfereeConnectedLineName": "", "TransfereeConnectedLineNum": "", "TransfereeContext": "osvpi_proc_connectab", "TransfereeExten": "ID400386", "TransfereeLanguage": "en", "TransfereeLinkedid": "c4061ca6474c-1531991604.1164", "TransfereePriority": "24", "TransfereeUniqueid": "c4061ca6474c-1531991604.1165", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000026", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "voipgrid_in", "Event": "NewConnectedLine", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1225", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "dbbee54d-1261-4be4-b27d-18c56798ea4a", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000025", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1179", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "dbbee54d-1261-4be4-b27d-18c56798ea4a", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010001-00000025", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1179", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010001-00000029", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "c4061ca6474c-1531991613.1286", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991613.1286", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "68514cd8-c9d6-4202-86ac-36f00c48dc92", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID400386@osvpi_proc_connectab_ctd-00000039;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_worker", "Event": "NewCallerid", "Exten": "ID400386", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "28", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1164", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "58ff9e7b-c50f-46fa-b97d-f4505a7bca56", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000026", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "voipgrid_in", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1225", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "58ff9e7b-c50f-46fa-b97d-f4505a7bca56", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID400386@osvpi_proc_connectab_ctd-00000039;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_worker", "Event": "BridgeLeave", "Exten": "ID400386", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "28", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1164", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/voipgrid-siproute-docker-00000026", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "voipgrid_in", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991605.1225", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "58ff9e7b-c50f-46fa-b97d-f4505a7bca56", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "203", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID400386@osvpi_proc_connectab_ctd-00000039;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1164", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "6d4dc2a6-e431-4cda-9595-4e9d7288b448", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID400386@osvpi_proc_connectab_ctd-00000039;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_proc_connectab", "Event": "BridgeLeave", "Exten": "ID400386", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "24", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1165", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "6d4dc2a6-e431-4cda-9595-4e9d7288b448", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-0000002a", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991613.1294", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "6d4dc2a6-e431-4cda-9595-4e9d7288b448", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010003-0000002a", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991613.1294", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID400386@osvpi_proc_connectab_ctd-00000039;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531991604.1164", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531991604.1165", "content": ""} +] diff --git a/tests/fixtures/originate/ctd-account-world.json b/tests/fixtures/originate/ctd-account-world.json new file mode 100644 index 0000000..0c150d5 --- /dev/null +++ b/tests/fixtures/originate/ctd-account-world.json @@ -0,0 +1,148 @@ +[ + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400379@osvpi_proc_connectab_ctd-00000010;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_ctd", "Event": "Newchannel", "Exten": "ID400379", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.302", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400379@osvpi_proc_connectab_ctd-00000010;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_ctd", "Event": "Newchannel", "Exten": "ID400379", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.304", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400379@osvpi_proc_connectab_ctd-00000010;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_ctd", "Event": "NewAccountCode", "Exten": "ID400379", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.302", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400379@osvpi_proc_connectab_ctd-00000010;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_ctd", "Event": "NewAccountCode", "Exten": "ID400379", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.304", "content": ""}, + {"Context": "osvpi_proc_connectab_ctd", "Event": "LocalBridge", "Exten": "ID400379", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "", "LocalOneChannel": "Local/ID400379@osvpi_proc_connectab_ctd-00000010;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "", "LocalOneContext": "osvpi_proc_connectab_ctd", "LocalOneExten": "ID400379", "LocalOneLanguage": "en", "LocalOneLinkedid": "c4061ca6474c-1531990515.302", "LocalOnePriority": "1", "LocalOneUniqueid": "c4061ca6474c-1531990515.302", "LocalOptimization": "No", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "", "LocalTwoChannel": "Local/ID400379@osvpi_proc_connectab_ctd-00000010;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "", "LocalTwoContext": "osvpi_proc_connectab_ctd", "LocalTwoExten": "ID400379", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "c4061ca6474c-1531990515.302", "LocalTwoPriority": "1", "LocalTwoUniqueid": "c4061ca6474c-1531990515.304", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "", "DestChannel": "Local/ID400379@osvpi_proc_connectab_ctd-00000010;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "", "DestContext": "osvpi_proc_connectab_ctd", "DestExten": "ID400379", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990515.302", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990515.302", "DialString": "ID400379@osvpi_proc_connectab_ctd/n", "Event": "DialBegin", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "Calling...", "CallerIDNum": "", "Channel": "Local/ID400379@osvpi_proc_connectab_ctd-00000010;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "Event": "NewCallerid", "Exten": "ID400379", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "11", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.304", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID400379@osvpi_proc_connectab_ctd-00000010;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_set_cli", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.304", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/201@osvpi_account_call_int_permitted-00000011;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int_permitted", "Event": "Newchannel", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.307", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/201@osvpi_account_call_int_permitted-00000011;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int_permitted", "Event": "Newchannel", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.309", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "ID400379", "Channel": "Local/201@osvpi_account_call_int_permitted-00000011;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_call_int_permitted", "Event": "NewCallerid", "Exten": "ID400379", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.307", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400379", "Channel": "Local/201@osvpi_account_call_int_permitted-00000011;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_call_int_permitted", "Event": "NewAccountCode", "Exten": "ID400379", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.307", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400379", "Channel": "Local/201@osvpi_account_call_int_permitted-00000011;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_call_int_permitted", "Event": "NewConnectedLine", "Exten": "ID400379", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.307", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/201@osvpi_account_call_int_permitted-00000011;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400379", "Context": "osvpi_account_call_int_permitted", "Event": "NewCallerid", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.309", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/201@osvpi_account_call_int_permitted-00000011;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400379", "Context": "osvpi_account_call_int_permitted", "Event": "NewAccountCode", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.309", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/201@osvpi_account_call_int_permitted-00000011;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400379", "Context": "osvpi_account_call_int_permitted", "Event": "NewConnectedLine", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.309", "content": ""}, + {"Context": "osvpi_account_call_int_permitted", "Event": "LocalBridge", "Exten": "201", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "ID400379", "LocalOneChannel": "Local/201@osvpi_account_call_int_permitted-00000011;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Calling...", "LocalOneConnectedLineNum": "+31150010001", "LocalOneContext": "osvpi_account_call_int_permitted", "LocalOneExten": "ID400379", "LocalOneLanguage": "en", "LocalOneLinkedid": "c4061ca6474c-1531990515.302", "LocalOnePriority": "1", "LocalOneUniqueid": "c4061ca6474c-1531990515.307", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "Calling...", "LocalTwoCallerIDNum": "+31150010001", "LocalTwoChannel": "Local/201@osvpi_account_call_int_permitted-00000011;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "ID400379", "LocalTwoContext": "osvpi_account_call_int_permitted", "LocalTwoExten": "201", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "c4061ca6474c-1531990515.302", "LocalTwoPriority": "1", "LocalTwoUniqueid": "c4061ca6474c-1531990515.309", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID400379@osvpi_proc_connectab_ctd-00000010;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "ID400379", "DestChannel": "Local/201@osvpi_account_call_int_permitted-00000011;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_account_call_int_permitted", "DestExten": "ID400379", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990515.302", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990515.307", "DialString": "201@osvpi_account_call_int_permitted", "Event": "DialBegin", "Exten": "ID400379", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "24", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.304", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000012;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730150", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.312", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000012;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730150", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.314", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000012;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.312", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000012;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.312", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000012;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.312", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000012;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730150", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.314", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000012;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730150", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.314", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000012;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730150", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.314", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730150", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "201", "LocalOneChannel": "Local/ID730150@osvpi_route_phoneaccount-00000012;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Calling...", "LocalOneConnectedLineNum": "+31150010001", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "201", "LocalOneLanguage": "en", "LocalOneLinkedid": "c4061ca6474c-1531990515.302", "LocalOnePriority": "1", "LocalOneUniqueid": "c4061ca6474c-1531990515.312", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "Calling...", "LocalTwoCallerIDNum": "+31150010001", "LocalTwoChannel": "Local/ID730150@osvpi_route_phoneaccount-00000012;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "201", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730150", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "c4061ca6474c-1531990515.302", "LocalTwoPriority": "1", "LocalTwoUniqueid": "c4061ca6474c-1531990515.314", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/201@osvpi_account_call_int_permitted-00000011;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400379", "Context": "osvpi_account_call_int", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "201", "DestChannel": "Local/ID730150@osvpi_route_phoneaccount-00000012;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "201", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990515.302", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990515.312", "DialString": "ID730150@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.309", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010001-00000008", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.317", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000008", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.317", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000008", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531990515.302", "OldAccountCode": "150010001", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.317", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000008", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.317", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000012;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "201", "DestChannel": "SIP/150010001-00000008", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_account", "DestExten": "201", "DestLanguage": "nl", "DestLinkedid": "c4061ca6474c-1531990515.302", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990515.317", "DialString": "150010001/150010001/172.20.0.13!!0150010001", "Event": "DialBegin", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.314", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000008", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.317", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000012;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.312", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400379", "Channel": "Local/201@osvpi_account_call_int_permitted-00000011;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_call_int_permitted", "Event": "Newstate", "Exten": "ID400379", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.307", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400379@osvpi_proc_connectab_ctd-00000010;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_ctd", "Event": "Newstate", "Exten": "ID400379", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.302", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000008", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.317", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000012;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "201", "DestChannel": "SIP/150010001-00000008", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "c4061ca6474c-1531990515.302", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990515.317", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.314", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000012;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.314", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000012;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.312", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "21aab7da-6426-4233-9397-42bd7a363cad", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/201@osvpi_account_call_int_permitted-00000011;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400379", "Context": "osvpi_account_call_int", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "201", "DestChannel": "Local/ID730150@osvpi_route_phoneaccount-00000012;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990515.302", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990515.312", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.309", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/201@osvpi_account_call_int_permitted-00000011;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400379", "Context": "osvpi_account_call_int", "Event": "Newstate", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.309", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400379", "Channel": "Local/201@osvpi_account_call_int_permitted-00000011;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_call_int_permitted", "Event": "Newstate", "Exten": "ID400379", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.307", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "21aab7da-6426-4233-9397-42bd7a363cad", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000008", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.317", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ecf07f14-6206-444f-9f93-8494ffb03fc5", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "21aab7da-6426-4233-9397-42bd7a363cad", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000012;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.314", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID400379@osvpi_proc_connectab_ctd-00000010;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "ID400379", "DestChannel": "Local/201@osvpi_account_call_int_permitted-00000011;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Calling...", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_account_call_int_permitted", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990515.302", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990515.307", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "ID400379", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "24", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.304", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID400379@osvpi_proc_connectab_ctd-00000010;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_ctd", "Event": "Newstate", "Exten": "ID400379", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.302", "content": ""}, + {"DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "", "DestChannel": "Local/ID400379@osvpi_proc_connectab_ctd-00000010;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "", "DestContext": "osvpi_proc_connectab_ctd", "DestExten": "ID400379", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990515.302", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990515.302", "DialStatus": "ANSWER", "Event": "DialEnd", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ecf07f14-6206-444f-9f93-8494ffb03fc5", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000012;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.312", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID400379@osvpi_proc_connectab_ctd-00000010;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "Event": "Newstate", "Exten": "ID400379", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "24", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.304", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "8a137cbe-e676-4a0e-b262-3a344635ae79", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ecf07f14-6206-444f-9f93-8494ffb03fc5", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/201@osvpi_account_call_int_permitted-00000011;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400379", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.309", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "8a137cbe-e676-4a0e-b262-3a344635ae79", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "ID400379", "Channel": "Local/201@osvpi_account_call_int_permitted-00000011;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_call_int_permitted", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.307", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "8a137cbe-e676-4a0e-b262-3a344635ae79", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID400379@osvpi_proc_connectab_ctd-00000010;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "Event": "BridgeEnter", "Exten": "ID400379", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "24", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.304", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "21aab7da-6426-4233-9397-42bd7a363cad", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000008", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.317", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ecf07f14-6206-444f-9f93-8494ffb03fc5", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000012;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.312", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ecf07f14-6206-444f-9f93-8494ffb03fc5", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000008", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "c4061ca6474c-1531990515.312", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.317", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "21aab7da-6426-4233-9397-42bd7a363cad", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000012;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.314", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000012;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.312", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "21aab7da-6426-4233-9397-42bd7a363cad", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000012;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.314", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ecf07f14-6206-444f-9f93-8494ffb03fc5", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000008", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.317", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "8a137cbe-e676-4a0e-b262-3a344635ae79", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "ID400379", "Channel": "Local/201@osvpi_account_call_int_permitted-00000011;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_call_int_permitted", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.307", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "8a137cbe-e676-4a0e-b262-3a344635ae79", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000008", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "c4061ca6474c-1531990515.307", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.317", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ecf07f14-6206-444f-9f93-8494ffb03fc5", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/201@osvpi_account_call_int_permitted-00000011;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400379", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.309", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ecf07f14-6206-444f-9f93-8494ffb03fc5", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400379", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/201@osvpi_account_call_int_permitted-00000011;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_call_int_permitted", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.307", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/201@osvpi_account_call_int_permitted-00000011;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400379", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.309", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID400379@osvpi_proc_connectab_ctd-00000010;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_set_cli", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.302", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000013;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world_call_permittedplus", "Event": "Newchannel", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.353", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000013;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world_call_permittedplus", "Event": "Newchannel", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.355", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "ID400379", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000013;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_world_call_permittedplus", "Event": "NewCallerid", "Exten": "ID400379", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.353", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400379", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000013;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_world_call_permittedplus", "Event": "NewAccountCode", "Exten": "ID400379", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.353", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400379", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000013;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_world_call_permittedplus", "Event": "NewConnectedLine", "Exten": "ID400379", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.353", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000013;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400379", "Context": "osvpi_world_call_permittedplus", "Event": "NewCallerid", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.355", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000013;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400379", "Context": "osvpi_world_call_permittedplus", "Event": "NewAccountCode", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.355", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000013;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400379", "Context": "osvpi_world_call_permittedplus", "Event": "NewConnectedLine", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.355", "content": ""}, + {"Context": "osvpi_world_call_permittedplus", "Event": "LocalBridge", "Exten": "+31260010001", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "ID400379", "LocalOneChannel": "Local/+31260010001@osvpi_world_call_permittedplus-00000013;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31150010001", "LocalOneContext": "osvpi_world_call_permittedplus", "LocalOneExten": "ID400379", "LocalOneLanguage": "en", "LocalOneLinkedid": "c4061ca6474c-1531990515.302", "LocalOnePriority": "1", "LocalOneUniqueid": "c4061ca6474c-1531990517.353", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31150010001", "LocalTwoChannel": "Local/+31260010001@osvpi_world_call_permittedplus-00000013;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "ID400379", "LocalTwoContext": "osvpi_world_call_permittedplus", "LocalTwoExten": "+31260010001", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "c4061ca6474c-1531990515.302", "LocalTwoPriority": "1", "LocalTwoUniqueid": "c4061ca6474c-1531990517.355", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID400379@osvpi_proc_connectab_ctd-00000010;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_worker", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "ID400379", "DestChannel": "Local/+31260010001@osvpi_world_call_permittedplus-00000013;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_world_call_permittedplus", "DestExten": "ID400379", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990515.302", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990517.353", "DialString": "+31260010001@osvpi_world_call_permittedplus", "Event": "DialBegin", "Exten": "ID400379", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "28", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.302", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31260010001@world_out-00000014;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "world_out", "Event": "Newchannel", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.358", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31260010001@world_out-00000014;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "world_out", "Event": "Newchannel", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.360", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-00000014;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewCallerid", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.358", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-00000014;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewAccountCode", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.358", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-00000014;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewConnectedLine", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.358", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-00000014;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "NewCallerid", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.360", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-00000014;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "NewAccountCode", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.360", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-00000014;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "NewConnectedLine", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.360", "content": ""}, + {"Context": "world_out", "Event": "LocalBridge", "Exten": "+31260010001", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31260010001", "LocalOneChannel": "Local/+31260010001@world_out-00000014;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31150010001", "LocalOneContext": "world_out", "LocalOneExten": "+31260010001", "LocalOneLanguage": "en", "LocalOneLinkedid": "c4061ca6474c-1531990515.302", "LocalOnePriority": "1", "LocalOneUniqueid": "c4061ca6474c-1531990517.358", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31150010001", "LocalTwoChannel": "Local/+31260010001@world_out-00000014;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31260010001", "LocalTwoContext": "world_out", "LocalTwoExten": "+31260010001", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "c4061ca6474c-1531990515.302", "LocalTwoPriority": "1", "LocalTwoUniqueid": "c4061ca6474c-1531990517.360", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000013;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400379", "Context": "osvpi_world_call", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "Local/+31260010001@world_out-00000014;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "world_out", "DestExten": "+31260010001", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990515.302", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990517.358", "DialString": "+31260010001@world_out", "Event": "DialBegin", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "15", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.355", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/voipgrid-siproute-docker-00000009", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.363", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000009", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "NewCallerid", "Exten": "+31260010001", "Language": "nl", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.363", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000009", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "NewAccountCode", "Exten": "+31260010001", "Language": "nl", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.363", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000009", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "NewConnectedLine", "Exten": "+31260010001", "Language": "nl", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.363", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-00000014;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "SIP/voipgrid-siproute-docker-00000009", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "voipgrid_in", "DestExten": "+31260010001", "DestLanguage": "nl", "DestLinkedid": "c4061ca6474c-1531990515.302", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990517.363", "DialString": "+31260010001@voipgrid-siproute-docker", "Event": "DialBegin", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.360", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000009", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31260010001", "Language": "nl", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.363", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-00000014;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "Newstate", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.358", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400379", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000013;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_world_call_permittedplus", "Event": "Newstate", "Exten": "ID400379", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.353", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "717a20a1-6e48-481a-b36d-6ca08bc42e59", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "bf942660-5612-41da-9467-6857263d7591", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000009", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31260010001", "Language": "nl", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.363", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-00000014;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "SIP/voipgrid-siproute-docker-00000009", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "voipgrid_in", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "c4061ca6474c-1531990515.302", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990517.363", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.360", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-00000014;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_out", "Event": "Newstate", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.360", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "e0a53d7e-a0f5-4414-a8f7-4f76a52e8338", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-00000014;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "Newstate", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.358", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000013;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "ID400379", "Context": "osvpi_world_call", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "Local/+31260010001@world_out-00000014;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "world_out", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990515.302", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990517.358", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "15", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.355", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000013;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400379", "Context": "osvpi_world_call", "Event": "Newstate", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "15", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.355", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400379", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000013;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_world_call_permittedplus", "Event": "Newstate", "Exten": "ID400379", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.353", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "6cd835ef-bbcc-4f43-876e-e581d9dea4c5", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "e0a53d7e-a0f5-4414-a8f7-4f76a52e8338", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000009", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.363", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "6cd835ef-bbcc-4f43-876e-e581d9dea4c5", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-00000014;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.358", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "e0a53d7e-a0f5-4414-a8f7-4f76a52e8338", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-00000014;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_out", "Event": "BridgeEnter", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.360", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "6cd835ef-bbcc-4f43-876e-e581d9dea4c5", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000013;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400379", "Context": "osvpi_world_call", "Event": "BridgeEnter", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "15", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.355", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID400379@osvpi_proc_connectab_ctd-00000010;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_worker", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "ID400379", "DestChannel": "Local/+31260010001@osvpi_world_call_permittedplus-00000013;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_world_call_permittedplus", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531990515.302", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531990517.353", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "ID400379", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "28", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.302", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4097efa2-0bb0-4e06-b7d6-a9d1de97f223", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4097efa2-0bb0-4e06-b7d6-a9d1de97f223", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "ID400379", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000013;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_world_call_permittedplus", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.353", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "717a20a1-6e48-481a-b36d-6ca08bc42e59", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4097efa2-0bb0-4e06-b7d6-a9d1de97f223", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID400379@osvpi_proc_connectab_ctd-00000010;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_worker", "Event": "BridgeEnter", "Exten": "ID400379", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "28", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.302", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "e0a53d7e-a0f5-4414-a8f7-4f76a52e8338", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000009", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.363", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "6cd835ef-bbcc-4f43-876e-e581d9dea4c5", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-00000014;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.358", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "6cd835ef-bbcc-4f43-876e-e581d9dea4c5", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000009", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "c4061ca6474c-1531990517.358", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.363", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "e0a53d7e-a0f5-4414-a8f7-4f76a52e8338", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-00000014;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_out", "Event": "BridgeLeave", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.360", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/+31260010001@world_out-00000014;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.358", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "e0a53d7e-a0f5-4414-a8f7-4f76a52e8338", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/+31260010001@world_out-00000014;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.360", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4097efa2-0bb0-4e06-b7d6-a9d1de97f223", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID400379@osvpi_proc_connectab_ctd-00000010;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_worker", "Event": "BridgeLeave", "Exten": "ID400379", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "28", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.302", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "6cd835ef-bbcc-4f43-876e-e581d9dea4c5", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000013;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400379", "Context": "osvpi_world_call", "Event": "BridgeLeave", "Exten": "+31260010001", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "15", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.355", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "6cd835ef-bbcc-4f43-876e-e581d9dea4c5", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID400379@osvpi_proc_connectab_ctd-00000010;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_worker", "Event": "BridgeEnter", "Exten": "ID400379", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "28", "Privilege": "call,all", "SwapUniqueid": "c4061ca6474c-1531990517.355", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.302", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4097efa2-0bb0-4e06-b7d6-a9d1de97f223", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "ID400379", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000013;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_world_call_permittedplus", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.353", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4097efa2-0bb0-4e06-b7d6-a9d1de97f223", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "ID400379", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000013;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_world_call_permittedplus", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.353", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/+31260010001@osvpi_world_call_permittedplus-00000013;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "ID400379", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.355", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "bf942660-5612-41da-9467-6857263d7591", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "6cd835ef-bbcc-4f43-876e-e581d9dea4c5", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000009", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.363", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/voipgrid-siproute-docker-00000009", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990517.363", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "6cd835ef-bbcc-4f43-876e-e581d9dea4c5", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID400379@osvpi_proc_connectab_ctd-00000010;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab_worker", "Event": "BridgeLeave", "Exten": "ID400379", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "28", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.302", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "6cd835ef-bbcc-4f43-876e-e581d9dea4c5", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID400379@osvpi_proc_connectab_ctd-00000010;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.302", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "8a137cbe-e676-4a0e-b262-3a344635ae79", "BridgeVideoSourceMode": "none", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Channel": "Local/ID400379@osvpi_proc_connectab_ctd-00000010;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_connectab", "Event": "BridgeLeave", "Exten": "ID400379", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "24", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.304", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "8a137cbe-e676-4a0e-b262-3a344635ae79", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000008", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.317", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "8a137cbe-e676-4a0e-b262-3a344635ae79", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010001-00000008", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Calling...", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.317", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Calling...", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID400379@osvpi_proc_connectab_ctd-00000010;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531990515.302", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531990515.304", "content": ""} +] diff --git a/tests/fixtures/queue/queue_a_cancel.json b/tests/fixtures/queue/queue_a_cancel.json new file mode 100644 index 0000000..c528cc7 --- /dev/null +++ b/tests/fixtures/queue/queue_a_cancel.json @@ -0,0 +1,57 @@ +[ + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000020", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newchannel", "Exten": "+31150010004", "Language": "en", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939079.449", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000020", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31150010004", "Language": "nl", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939079.449", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000020", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world", "Event": "NewAccountCode", "Exten": "+31150010004", "Language": "nl", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "10", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939079.449", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000020", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_lazyanswer", "Event": "Newstate", "Exten": "+31150010004", "Language": "nl", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "2", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939079.449", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "e9985e02-2e92-435d-941a-f03dad6ab1be", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "8355805b-078c-4830-aa44-5b2aac4bbc01", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "8355805b-078c-4830-aa44-5b2aac4bbc01", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000012;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730152", "Language": "en", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939081.469", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000012;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730152", "Language": "en", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939081.471", "content": ""}, + {"AccountCode": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000012;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730152", "Language": "en", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939081.469", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000012;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730152", "Language": "en", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939081.471", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000012;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730152", "Language": "en", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939081.471", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000012;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730152", "Language": "en", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939081.471", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730152", "LocalOneAccountCode": "", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31150010004", "LocalOneChannel": "Local/ID730152@osvpi_route_phoneaccount-00000012;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "ID730152", "LocalOneLanguage": "en", "LocalOneLinkedid": "195176c06ab8-1529939079.449", "LocalOnePriority": "1", "LocalOneUniqueid": "195176c06ab8-1529939081.469", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31150010001", "LocalTwoChannel": "Local/ID730152@osvpi_route_phoneaccount-00000012;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31150010004", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730152", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "195176c06ab8-1529939079.449", "LocalTwoPriority": "1", "LocalTwoUniqueid": "195176c06ab8-1529939081.471", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000020", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_queue_step", "DestAccountCode": "", "DestCallerIDName": "", "DestCallerIDNum": "+31150010004", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-00000012;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "", "DestContext": "osvpi_route_phoneaccount", "DestExten": "ID730152", "DestLanguage": "en", "DestLinkedid": "195176c06ab8-1529939079.449", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529939081.469", "DialString": "Local/ID730152@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "ID550315", "Language": "vg_nl_NL_F", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "21", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939079.449", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000013;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939081.473", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000013;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939081.475", "content": ""}, + {"AccountCode": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000013;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939081.473", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000013;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939081.475", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000013;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939081.475", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000013;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939081.475", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730151", "LocalOneAccountCode": "", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31150010004", "LocalOneChannel": "Local/ID730151@osvpi_route_phoneaccount-00000013;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "ID730151", "LocalOneLanguage": "en", "LocalOneLinkedid": "195176c06ab8-1529939079.449", "LocalOnePriority": "1", "LocalOneUniqueid": "195176c06ab8-1529939081.473", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31150010001", "LocalTwoChannel": "Local/ID730151@osvpi_route_phoneaccount-00000013;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31150010004", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730151", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "195176c06ab8-1529939079.449", "LocalTwoPriority": "1", "LocalTwoUniqueid": "195176c06ab8-1529939081.475", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000020", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_queue_step", "DestAccountCode": "", "DestCallerIDName": "", "DestCallerIDNum": "+31150010004", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-00000013;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "", "DestContext": "osvpi_route_phoneaccount", "DestExten": "ID730151", "DestLanguage": "en", "DestLinkedid": "195176c06ab8-1529939079.449", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529939081.473", "DialString": "Local/ID730151@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "ID550315", "Language": "vg_nl_NL_F", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "21", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939079.449", "content": ""}, + {"AccountCode": "150010003", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010003-00000021", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939081.478", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "SIP/150010003-00000021", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "+31150010004", "Language": "nl", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939081.478", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "SIP/150010003-00000021", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "+31150010004", "Language": "nl", "Linkedid": "195176c06ab8-1529939079.449", "OldAccountCode": "150010003", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939081.478", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "SIP/150010003-00000021", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "+31150010004", "Language": "nl", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939081.478", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000012;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010004", "DestChannel": "SIP/150010003-00000021", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_account", "DestExten": "+31150010004", "DestLanguage": "nl", "DestLinkedid": "195176c06ab8-1529939079.449", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529939081.478", "DialString": "150010003/150010003/172.20.0.13!!0150010001", "Event": "DialBegin", "Exten": "+31150010004", "Language": "en", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939081.471", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010002-00000022", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939081.481", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "SIP/150010002-00000022", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "+31150010004", "Language": "nl", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939081.481", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "SIP/150010002-00000022", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "+31150010004", "Language": "nl", "Linkedid": "195176c06ab8-1529939079.449", "OldAccountCode": "150010002", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939081.481", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "SIP/150010002-00000022", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "+31150010004", "Language": "nl", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939081.481", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000013;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010004", "DestChannel": "SIP/150010002-00000022", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_account", "DestExten": "+31150010004", "DestLanguage": "nl", "DestLinkedid": "195176c06ab8-1529939079.449", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529939081.481", "DialString": "150010002/150010002/172.20.0.13!!0150010001", "Event": "DialBegin", "Exten": "+31150010004", "Language": "en", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939081.475", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "SIP/150010002-00000022", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "+31150010004", "Language": "nl", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939081.481", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000013;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "ID550315", "Language": "en", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939081.473", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000013;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID550315", "Language": "en", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939081.473", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "SIP/150010003-00000021", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "+31150010004", "Language": "nl", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939081.478", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000012;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "ID550315", "Language": "en", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939081.469", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000012;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID550315", "Language": "en", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939081.469", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "e9985e02-2e92-435d-941a-f03dad6ab1be", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000020", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_queue_step", "DestAccountCode": "", "DestCallerIDName": "", "DestCallerIDNum": "+31150010004", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-00000012;1", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "ID550315", "DestLanguage": "en", "DestLinkedid": "195176c06ab8-1529939079.449", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529939081.469", "DialStatus": "CANCEL", "Event": "DialEnd", "Exten": "ID550315", "Language": "vg_nl_NL_F", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "21", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939079.449", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000020", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_queue_step", "DestAccountCode": "", "DestCallerIDName": "", "DestCallerIDNum": "+31150010004", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-00000013;1", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "ID550315", "DestLanguage": "en", "DestLinkedid": "195176c06ab8-1529939079.449", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529939081.473", "DialStatus": "CANCEL", "Event": "DialEnd", "Exten": "ID550315", "Language": "vg_nl_NL_F", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "21", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939079.449", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000020", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_queue_step", "DestAccountCode": "", "DestCallerIDName": "", "DestCallerIDNum": "+31150010004", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-00000012;1", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "ID550315", "DestLanguage": "en", "DestLinkedid": "195176c06ab8-1529939079.449", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529939081.469", "DialStatus": "CANCEL", "Event": "DialEnd", "Exten": "ID550315", "Language": "vg_nl_NL_F", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "21", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939079.449", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010004", "Cause": "0", "Cause-txt": "Unknown", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000012;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "ID550315", "Language": "en", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939081.469", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000012;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010004", "DestChannel": "SIP/150010003-00000021", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_account", "DestExten": "+31150010004", "DestLanguage": "nl", "DestLinkedid": "195176c06ab8-1529939079.449", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529939081.478", "DialStatus": "CANCEL", "Event": "DialEnd", "Exten": "+31150010004", "Language": "en", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939081.471", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000020", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_queue_step", "DestAccountCode": "", "DestCallerIDName": "", "DestCallerIDNum": "+31150010004", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-00000013;1", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "ID550315", "DestLanguage": "en", "DestLinkedid": "195176c06ab8-1529939079.449", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529939081.473", "DialStatus": "CANCEL", "Event": "DialEnd", "Exten": "ID550315", "Language": "vg_nl_NL_F", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "21", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939079.449", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010004", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010003-00000021", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "Hangup", "Exten": "+31150010004", "Language": "nl", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939081.478", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010004", "Cause": "0", "Cause-txt": "Unknown", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000013;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "ID550315", "Language": "en", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939081.473", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "0", "Cause-txt": "Unknown", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000012;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "4", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939081.471", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000013;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010004", "DestChannel": "SIP/150010002-00000022", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_account", "DestExten": "+31150010004", "DestLanguage": "nl", "DestLinkedid": "195176c06ab8-1529939079.449", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529939081.481", "DialStatus": "CANCEL", "Event": "DialEnd", "Exten": "+31150010004", "Language": "en", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939081.475", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010004", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010002-00000022", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "Hangup", "Exten": "+31150010004", "Language": "nl", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939081.481", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "0", "Cause-txt": "Unknown", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000013;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "4", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939081.475", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "0", "Cause-txt": "Unknown", "Channel": "SIP/voipgrid-siproute-docker-00000020", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "vg_nl_NL_F", "Linkedid": "195176c06ab8-1529939079.449", "Priority": "4", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939079.449", "content": ""} +] diff --git a/tests/fixtures/queue/queue_a_cancel_hangup.json b/tests/fixtures/queue/queue_a_cancel_hangup.json deleted file mode 100644 index 575348f..0000000 --- a/tests/fixtures/queue/queue_a_cancel_hangup.json +++ /dev/null @@ -1,286 +0,0 @@ -[ - {"Event": "FullyBooted", "Privilege": "system,all", "content": "", "Status": "Fully Booted"}, - {"Exten": "401", "AccountCode": "150010003", "Uniqueid": "0f00dcaa884f-1508767736.46", "ChannelState": "0", "Event": "Newchannel", "Channel": "SIP/150010003-00000014", "content": "", "CallerIDNum": "150010003", "CallerIDName": "", "Privilege": "call,all", "ChannelStateDesc": "Down", "Context": "osvpi_account"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "SIPURI", "Privilege": "dialplan,all", "Value": "sip:150010003@10.13.37.110:5080"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "SIPDOMAIN", "Privilege": "dialplan,all", "Value": "10.13.37.110"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "SIPCALLID", "Privilege": "dialplan,all", "Value": "1542926064"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "__client_id", "Privilege": "dialplan,all", "Value": "15001"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "__account_id", "Privilege": "dialplan,all", "Value": "150010003"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "__record_call", "Privilege": "dialplan,all", "Value": "no"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "__intprefix", "Privilege": "dialplan,all", "Value": "31"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "__limit_account", "Privilege": "dialplan,all", "Value": "4"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "__limit_client", "Privilege": "dialplan,all", "Value": "0"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "__hide_ext_cliname", "Privilege": "dialplan,all", "Value": "1"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "__TRANSFER_CONTEXT", "Privilege": "dialplan,all", "Value": "osvpi_account_transfer"}, - {"Event": "Newstate", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "ConnectedLineName": "", "CallerIDName": "", "Privilege": "call,all", "ChannelStateDesc": "Ring", "ConnectedLineNum": "", "CallerIDNum": "150010003", "ChannelState": "4"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "0?GotoIf(0?osvpi_proc_hangup_insecure,401,1)", "Application": "ExecIf", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "1", "Extension": "401", "Context": "osvpi_account"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "osvpi_proc_check_forwards,s,1", "Application": "Gosub", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "2", "Extension": "401", "Context": "osvpi_account"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Value": "0"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "0?check,1", "Application": "GotoIf", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "1", "Extension": "s", "Context": "osvpi_proc_check_forwards"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "LOCAL(tmp)=70", "Application": "Set", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "2", "Extension": "s", "Context": "osvpi_proc_check_forwards"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "LOCAL(tmp)", "Privilege": "dialplan,all", "Value": "70"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "0?Goto(init,1)", "Application": "ExecIf", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "3", "Extension": "s", "Context": "osvpi_proc_check_forwards"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "1?Goto(init,1)", "Application": "ExecIf", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "4", "Extension": "s", "Context": "osvpi_proc_check_forwards"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "MASTER_CHANNEL(SIP_MAX_FORWARDS)=16", "Application": "Set", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "1", "Extension": "init", "Context": "osvpi_proc_check_forwards"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "SIP_MAX_FORWARDS", "Privilege": "dialplan,all", "Value": "16"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "DEBUG: MaxForwards: initialized to: 16", "Application": "NoOp", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "2", "Extension": "init", "Context": "osvpi_proc_check_forwards"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "", "Application": "Return", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "3", "Extension": "init", "Context": "osvpi_proc_check_forwards"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Value": ""}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "0?osvpi_account_transfer,401,1", "Application": "GotoIf", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "3", "Extension": "401", "Context": "osvpi_account"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "ENTRY POINT username=150010003,ip=172.20.0.13/172.20.0.13,from=sip:150010003@10.13.37.110,contact=sip:150010003@10.13.37.110:5080,ua=Linphone/3.6.1 (eXosip2/4.1.0),name=,num=150010003,pres=allowed_not_screened", "Application": "NoOp", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "4", "Extension": "401", "Context": "osvpi_account"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "is_transfer=0", "Application": "Set", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "5", "Extension": "401", "Context": "osvpi_account"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "is_transfer", "Privilege": "dialplan,all", "Value": "0"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "CDR(amaflags)=BILLING", "Application": "Set", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "6", "Extension": "401", "Context": "osvpi_account"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "user_privacy=0", "Application": "Set", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "7", "Extension": "401", "Context": "osvpi_account"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "user_privacy", "Privilege": "dialplan,all", "Value": "0"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "1?Set(__supports_progress=1)", "Application": "ExecIf", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "8", "Extension": "401", "Context": "osvpi_account"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "__supports_progress", "Privilege": "dialplan,all", "Value": "1"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "osvpi_proc_record_call,s-no,1(out,15001,150010003)", "Application": "Gosub", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "9", "Extension": "401", "Context": "osvpi_account"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Value": "out"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "Value": "15001"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "LOCAL(ARG3)", "Privilege": "dialplan,all", "Value": "150010003"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Value": "3"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "", "Application": "Return", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "1", "Extension": "s-no", "Context": "osvpi_proc_record_call"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Value": ""}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "l_tmp=", "Application": "Set", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "10", "Extension": "401", "Context": "osvpi_account"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "l_tmp", "Privilege": "dialplan,all", "Value": ""}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "1?Set(l_tmp=)", "Application": "ExecIf", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "11", "Extension": "401", "Context": "osvpi_account"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "l_tmp", "Privilege": "dialplan,all", "Value": ""}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "1?checkprivacy", "Application": "GotoIf", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "12", "Extension": "401", "Context": "osvpi_account"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "0?Set(CALLERID(pres)=allowed_passed_screen)", "Application": "ExecIf", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "16", "Extension": "401", "Context": "osvpi_account"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "0?Set(CALLERID(pres)=prohib_passed_screen)", "Application": "ExecIf", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "17", "Extension": "401", "Context": "osvpi_account"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "0?Set(CHANNEL(musicclass)=)", "Application": "ExecIf", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "18", "Extension": "401", "Context": "osvpi_account"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "1?continue", "Application": "GotoIf", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "19", "Extension": "401", "Context": "osvpi_account"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "osvpi_proc_set_i18n_region,31,1", "Application": "Gosub", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "22", "Extension": "401", "Context": "osvpi_account"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Value": "0"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "i18n_region=NL", "Application": "Set", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "1", "Extension": "31", "Context": "osvpi_proc_set_i18n_region"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "i18n_region", "Privilege": "dialplan,all", "Value": "NL"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "", "Application": "Return", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "2", "Extension": "31", "Context": "osvpi_proc_set_i18n_region"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Value": ""}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "osvpi_account_emergency_NL,401,1", "Application": "Goto", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "23", "Extension": "401", "Context": "osvpi_account"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "osvpi_account_no_emergency,401,1", "Application": "Goto", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "1", "Extension": "401", "Context": "osvpi_account_emergency_NL"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "osvpi_account,401,no-emergency", "Application": "Goto", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "1", "Extension": "401", "Context": "osvpi_account_no_emergency"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "osvpi_account_clean,401,1", "Application": "Goto", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "24", "Extension": "401", "Context": "osvpi_account"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "return=osvpi_account_clean", "Application": "Set", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "1", "Extension": "401", "Context": "osvpi_account_clean"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "return", "Privilege": "dialplan,all", "Value": "osvpi_account_clean"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "osvpi_return_to_canonical,31i401,1", "Application": "Goto", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "2", "Extension": "401", "Context": "osvpi_account_clean"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "INVALID_EXTEN", "Privilege": "dialplan,all", "Value": "31i401"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "osvpi_account_clean,401,local", "Application": "Goto", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "1", "Extension": "i", "Context": "osvpi_return_to_canonical"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "0?extern", "Application": "GotoIf", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "3", "Extension": "401", "Context": "osvpi_account_clean"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "osvpi_proc_set_callerid,401,1(150010003,0,0)", "Application": "Gosub", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "4", "Extension": "401", "Context": "osvpi_account_clean"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Value": "150010003"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "Value": "0"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "LOCAL(ARG3)", "Privilege": "dialplan,all", "Value": "0"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Value": "3"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "0?done", "Application": "GotoIf", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "1", "Extension": "401", "Context": "osvpi_proc_set_callerid"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Value": "1"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Value": "SUCCESS"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "Value": "set,privacy,name,number_int,number_ext"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "ARRAY(LOCAL(set),LOCAL(privacy),LOCAL(name),LOCAL(number_int),LOCAL(number_ext))=1,0,Tom Kline,203,+31150010003", "Application": "Set", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "2", "Extension": "401", "Context": "osvpi_proc_set_callerid"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "LOCAL(set)", "Privilege": "dialplan,all", "Value": "1"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "LOCAL(privacy)", "Privilege": "dialplan,all", "Value": "0"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "LOCAL(name)", "Privilege": "dialplan,all", "Value": "Tom Kline"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "LOCAL(number_int)", "Privilege": "dialplan,all", "Value": "203"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "LOCAL(number_ext)", "Privilege": "dialplan,all", "Value": "+31150010003"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "0?presentation", "Application": "GotoIf", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "3", "Extension": "401", "Context": "osvpi_proc_set_callerid"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "CALLERID(pres)=allowed_passed_screen", "Application": "Set", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "4", "Extension": "401", "Context": "osvpi_proc_set_callerid"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "CALLERID(name)=Tom Kline", "Application": "Set", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "5", "Extension": "401", "Context": "osvpi_proc_set_callerid"}, - {"Event": "NewCallerid", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "CallerIDNum": "150010003", "CallerIDName": "Tom Kline", "Privilege": "call,all", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "CALLERID(num)=203", "Application": "Set", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "6", "Extension": "401", "Context": "osvpi_proc_set_callerid"}, - {"Event": "NewCallerid", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "CallerIDNum": "203", "CallerIDName": "Tom Kline", "Privilege": "call,all", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "0?Set(CALLERID(pres)=prohib_passed_screen)", "Application": "ExecIf", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "7", "Extension": "401", "Context": "osvpi_proc_set_callerid"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "CALLERID(ANI)=203", "Application": "Set", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "8", "Extension": "401", "Context": "osvpi_proc_set_callerid"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "osvpi_proc_set_callerid_internal,401,1", "Application": "Gosub", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "9", "Extension": "401", "Context": "osvpi_proc_set_callerid"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Value": ""}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "Value": ""}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "LOCAL(ARG3)", "Privilege": "dialplan,all", "Value": ""}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Value": "0"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "1?nop", "Application": "GotoIf", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "1", "Extension": "401", "Context": "osvpi_proc_set_callerid_internal"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "0?Set(CALLERID(ANI)=20)", "Application": "ExecIf", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "5", "Extension": "401", "Context": "osvpi_proc_set_callerid_internal"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "", "Application": "Return", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "6", "Extension": "401", "Context": "osvpi_proc_set_callerid_internal"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Value": ""}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "", "Application": "Return", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "10", "Extension": "401", "Context": "osvpi_proc_set_callerid"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Value": ""}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "3?osvpi_account_call_int,401,1:i,1", "Application": "GotoIf", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "5", "Extension": "401", "Context": "osvpi_account_clean"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "osvpi_proc_check_limits,401,1", "Application": "Gosub", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "1", "Extension": "401", "Context": "osvpi_account_call_int"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Value": "0"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "DEBUG: call_limit: client 0/0 and account 0/4", "Application": "NoOp", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "1", "Extension": "401", "Context": "osvpi_proc_check_limits"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "0?osvpi_handle_limit,401,client", "Application": "GotoIf", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "2", "Extension": "401", "Context": "osvpi_proc_check_limits"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "0?osvpi_handle_limit,401,account", "Application": "GotoIf", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "3", "Extension": "401", "Context": "osvpi_proc_check_limits"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "GROUP(account_lim)=150010003", "Application": "Set", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "4", "Extension": "401", "Context": "osvpi_proc_check_limits"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "GROUP(client_lim)=15001", "Application": "Set", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "5", "Extension": "401", "Context": "osvpi_proc_check_limits"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "", "Application": "Return", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "6", "Extension": "401", "Context": "osvpi_proc_check_limits"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Value": ""}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "osvpi_proc_check_recurse,401,1(15001)", "Application": "Gosub", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "2", "Extension": "401", "Context": "osvpi_account_call_int"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Value": "15001"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Value": "1"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "LOCAL(exten)=15001:401", "Application": "Set", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "1", "Extension": "401", "Context": "osvpi_proc_check_recurse"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "LOCAL(exten)", "Privilege": "dialplan,all", "Value": "15001:401"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "Recursion checking 15001:401 against ", "Application": "NoOp", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "2", "Extension": "401", "Context": "osvpi_proc_check_recurse"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "LOCAL(n)=0", "Application": "Set", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "3", "Extension": "401", "Context": "osvpi_proc_check_recurse"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "LOCAL(n)", "Privilege": "dialplan,all", "Value": "0"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "LOCAL(i)=1", "Application": "Set", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "4", "Extension": "401", "Context": "osvpi_proc_check_recurse"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "LOCAL(i)", "Privilege": "dialplan,all", "Value": "1"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "1?add", "Application": "GotoIf", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "5", "Extension": "401", "Context": "osvpi_proc_check_recurse"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "__EXTEN_LIST=15001:401 ", "Application": "Set", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "9", "Extension": "401", "Context": "osvpi_proc_check_recurse"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "__EXTEN_LIST", "Privilege": "dialplan,all", "Value": "15001:401 "}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "__EXTEN_LIST_LAST_EDIT_TIME=1508767736", "Application": "Set", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "10", "Extension": "401", "Context": "osvpi_proc_check_recurse"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "__EXTEN_LIST_LAST_EDIT_TIME", "Privilege": "dialplan,all", "Value": "1508767736"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "", "Application": "Return", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "11", "Extension": "401", "Context": "osvpi_proc_check_recurse"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Value": ""}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "__ORIG_EXTEN=401", "Application": "Set", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "3", "Extension": "401", "Context": "osvpi_account_call_int"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "__ORIG_EXTEN", "Privilege": "dialplan,all", "Value": "401"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Value": "0"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Value": "NODATA"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "ARRAY(conference_id,user_password,admin_password,conference_language)=", "Application": "Set", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "4", "Extension": "401", "Context": "osvpi_account_call_int"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "conference_id", "Privilege": "dialplan,all", "Value": ""}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "user_password", "Privilege": "dialplan,all", "Value": ""}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "admin_password", "Privilege": "dialplan,all", "Value": ""}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "conference_language", "Privilege": "dialplan,all", "Value": ""}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "0?osvpi_route_conference,ID,1", "Application": "GotoIf", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "5", "Extension": "401", "Context": "osvpi_account_call_int"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Value": "0"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Value": "NODATA"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "ARRAY(route_id,client_timezone)=", "Application": "Set", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "6", "Extension": "401", "Context": "osvpi_account_call_int"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "route_id", "Privilege": "dialplan,all", "Value": ""}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "client_timezone", "Privilege": "dialplan,all", "Value": ""}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "0?osvpi_route_root,401,restart", "Application": "GotoIf", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "7", "Extension": "401", "Context": "osvpi_account_call_int"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Value": "0"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Value": "NODATA"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "ARRAY(all_extensions,limited_extensions,password,account_spy_language)=", "Application": "Set", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "8", "Extension": "401", "Context": "osvpi_account_call_int"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "all_extensions", "Privilege": "dialplan,all", "Value": ""}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "limited_extensions", "Privilege": "dialplan,all", "Value": ""}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "password", "Privilege": "dialplan,all", "Value": ""}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "account_spy_language", "Privilege": "dialplan,all", "Value": ""}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "0?osvpi_account_spy,401,1", "Application": "GotoIf", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "9", "Extension": "401", "Context": "osvpi_account_call_int"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Value": "1"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Value": "SUCCESS"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "Value": "interfaces"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "ARRAY(interfaces)=Local/ID690150@osvpi_route_phoneaccount", "Application": "Set", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "10", "Extension": "401", "Context": "osvpi_account_call_int"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "interfaces", "Privilege": "dialplan,all", "Value": "Local/ID690150@osvpi_route_phoneaccount"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "0?osvpi_handle_unallocated,401,1", "Application": "GotoIf", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "11", "Extension": "401", "Context": "osvpi_account_call_int"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "Local/ID690150@osvpi_route_phoneaccount", "Application": "Dial", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "12", "Extension": "401", "Context": "osvpi_account_call_int"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "Value": ""}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Value": ""}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "Value": ""}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "Value": ""}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "Value": ""}, - {"Exten": "ID690150", "AccountCode": "", "Uniqueid": "0f00dcaa884f-1508767736.47", "ChannelState": "0", "Event": "Newchannel", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;1", "content": "", "CallerIDNum": "", "CallerIDName": "", "Privilege": "call,all", "ChannelStateDesc": "Down", "Context": "osvpi_route_phoneaccount"}, - {"Exten": "ID690150", "AccountCode": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "ChannelState": "4", "Event": "Newchannel", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "CallerIDNum": "", "CallerIDName": "", "Privilege": "call,all", "ChannelStateDesc": "Ring", "Context": "osvpi_route_phoneaccount"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;1", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.47", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Value": "ID690150@osvpi_route_phoneaccount"}, - {"Event": "NewCallerid", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;1", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.47", "CallerIDNum": "401", "CallerIDName": "", "Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"Event": "LocalBridge", "Exten": "ID690150", "Uniqueid2": "0f00dcaa884f-1508767736.48", "content": "", "Channel2": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "Channel1": "Local/ID690150@osvpi_route_phoneaccount-0000000d;1", "Privilege": "call,all", "Uniqueid1": "0f00dcaa884f-1508767736.47", "LocalOptimization": "Yes", "Context": "osvpi_route_phoneaccount"}, - {"UniqueID": "0f00dcaa884f-1508767736.46", "ConnectedLineNum": "", "ConnectedLineName": "", "Dialstring": "ID690150@osvpi_route_phoneaccount", "Event": "Dial", "Channel": "SIP/150010003-00000014", "SubEvent": "Begin", "CallerIDNum": "203", "CallerIDName": "Tom Kline", "content": "", "Destination": "Local/ID690150@osvpi_route_phoneaccount-0000000d;1", "Privilege": "call,all", "DestUniqueID": "0f00dcaa884f-1508767736.47"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Value": "1"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Value": "SUCCESS"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account"}, - {"Event": "Newexten", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=150010001,accountid,dutch,from,,0", "Application": "Set", "Uniqueid": "0f00dcaa884f-1508767736.48", "Privilege": "dialplan,all", "Priority": "1", "Extension": "ID690150", "Context": "osvpi_route_phoneaccount"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "__dst_account_id", "Privilege": "dialplan,all", "Value": "150010001"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "l_mangle_did", "Privilege": "dialplan,all", "Value": "accountid"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "l_mangle_cli", "Privilege": "dialplan,all", "Value": "dutch"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "l_cli_header", "Privilege": "dialplan,all", "Value": "from"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "l_primary_pickupgroup", "Privilege": "dialplan,all", "Value": ""}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "app_account", "Privilege": "dialplan,all", "Value": "0"}, - {"Event": "Newexten", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "AppData": "0?vialer", "Application": "GotoIf", "Uniqueid": "0f00dcaa884f-1508767736.48", "Privilege": "dialplan,all", "Priority": "2", "Extension": "ID690150", "Context": "osvpi_route_phoneaccount"}, - {"Event": "Newexten", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "AppData": "_PICKUPMARK=", "Application": "Set", "Uniqueid": "0f00dcaa884f-1508767736.48", "Privilege": "dialplan,all", "Priority": "3", "Extension": "ID690150", "Context": "osvpi_route_phoneaccount"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "_PICKUPMARK", "Privilege": "dialplan,all", "Value": ""}, - {"Event": "Newexten", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "AppData": "l_trunk=0", "Application": "Set", "Uniqueid": "0f00dcaa884f-1508767736.48", "Privilege": "dialplan,all", "Priority": "4", "Extension": "ID690150", "Context": "osvpi_route_phoneaccount"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "l_trunk", "Privilege": "dialplan,all", "Value": "0"}, - {"Event": "Newexten", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "AppData": "osvpi_route_account,ID690150,1", "Application": "Goto", "Uniqueid": "0f00dcaa884f-1508767736.48", "Privilege": "dialplan,all", "Priority": "5", "Extension": "ID690150", "Context": "osvpi_route_phoneaccount"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Value": "1"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Value": "SUCCESS"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "Value": "proxy"}, - {"Event": "Newexten", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "AppData": "ARRAY(l_proxy)=172.20.0.13", "Application": "Set", "Uniqueid": "0f00dcaa884f-1508767736.48", "Privilege": "dialplan,all", "Priority": "1", "Extension": "ID690150", "Context": "osvpi_route_account"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "l_proxy", "Privilege": "dialplan,all", "Value": "172.20.0.13"}, - {"Event": "Newexten", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "AppData": "osvpi_proc_mangle_number,accountid,1(150010001,401)", "Application": "Gosub", "Uniqueid": "0f00dcaa884f-1508767736.48", "Privilege": "dialplan,all", "Priority": "2", "Extension": "ID690150", "Context": "osvpi_route_account"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Value": "150010001"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "Value": "401"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Value": "2"}, - {"Event": "Newexten", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "AppData": "MANGLED_EXTEN=150010001", "Application": "Set", "Uniqueid": "0f00dcaa884f-1508767736.48", "Privilege": "dialplan,all", "Priority": "1", "Extension": "accountid", "Context": "osvpi_proc_mangle_number"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "MANGLED_EXTEN", "Privilege": "dialplan,all", "Value": "150010001"}, - {"Event": "Newexten", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "AppData": "", "Application": "Return", "Uniqueid": "0f00dcaa884f-1508767736.48", "Privilege": "dialplan,all", "Priority": "2", "Extension": "accountid", "Context": "osvpi_proc_mangle_number"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Value": ""}, - {"Event": "Newexten", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "AppData": "l_did=150010001", "Application": "Set", "Uniqueid": "0f00dcaa884f-1508767736.48", "Privilege": "dialplan,all", "Priority": "3", "Extension": "ID690150", "Context": "osvpi_route_account"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "l_did", "Privilege": "dialplan,all", "Value": "150010001"}, - {"Event": "Newexten", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "AppData": "osvpi_proc_mangle_number,dutch,1(150010001,203)", "Application": "Gosub", "Uniqueid": "0f00dcaa884f-1508767736.48", "Privilege": "dialplan,all", "Priority": "4", "Extension": "ID690150", "Context": "osvpi_route_account"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Value": "150010001"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "Value": "203"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Value": "2"}, - {"Event": "Newexten", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "AppData": "1?fullzero,1", "Application": "GotoIf", "Uniqueid": "0f00dcaa884f-1508767736.48", "Privilege": "dialplan,all", "Priority": "1", "Extension": "dutch", "Context": "osvpi_proc_mangle_number"}, - {"Event": "Newexten", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "AppData": "MANGLED_EXTEN=203", "Application": "Set", "Uniqueid": "0f00dcaa884f-1508767736.48", "Privilege": "dialplan,all", "Priority": "1", "Extension": "fullzero", "Context": "osvpi_proc_mangle_number"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "MANGLED_EXTEN", "Privilege": "dialplan,all", "Value": "203"}, - {"Event": "Newexten", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "AppData": "", "Application": "Return", "Uniqueid": "0f00dcaa884f-1508767736.48", "Privilege": "dialplan,all", "Priority": "2", "Extension": "fullzero", "Context": "osvpi_proc_mangle_number"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Value": ""}, - {"Event": "Newexten", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "AppData": "l_mangle_cli_hdr=from-dutch", "Application": "Set", "Uniqueid": "0f00dcaa884f-1508767736.48", "Privilege": "dialplan,all", "Priority": "5", "Extension": "ID690150", "Context": "osvpi_route_account"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "l_mangle_cli_hdr", "Privilege": "dialplan,all", "Value": "from-dutch"}, - {"Event": "Newexten", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "AppData": "l_fromuser=", "Application": "Set", "Uniqueid": "0f00dcaa884f-1508767736.48", "Privilege": "dialplan,all", "Priority": "6", "Extension": "ID690150", "Context": "osvpi_route_account"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "l_fromuser", "Privilege": "dialplan,all", "Value": ""}, - {"Event": "Newexten", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "AppData": "1?Set(l_fromuser=203)", "Application": "ExecIf", "Uniqueid": "0f00dcaa884f-1508767736.48", "Privilege": "dialplan,all", "Priority": "7", "Extension": "ID690150", "Context": "osvpi_route_account"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "l_fromuser", "Privilege": "dialplan,all", "Value": "203"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Value": "1"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Value": "SUCCESS"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "Value": "IF((SELECT 1 FROM baseaccount_account ba INNER JOIN userdestination_selecteduserdestination udsud ON udsud.phoneaccount_id = ba.id INNER JOIN userdestination_userdestination udud ON udud.id = udsud.userdestination_id INNER JOIN crm_cloudctiuser cccu O"}, - {"Event": "Newexten", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "AppData": "ARRAY(cloudcti)=0", "Application": "Set", "Uniqueid": "0f00dcaa884f-1508767736.48", "Privilege": "dialplan,all", "Priority": "8", "Extension": "ID690150", "Context": "osvpi_route_account"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "cloudcti", "Privilege": "dialplan,all", "Value": "0"}, - {"Event": "Newexten", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "AppData": "1?skipcloudcti", "Application": "GotoIf", "Uniqueid": "0f00dcaa884f-1508767736.48", "Privilege": "dialplan,all", "Priority": "9", "Extension": "ID690150", "Context": "osvpi_route_account"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Value": "1"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Value": "SUCCESS"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "Value": "GROUP_CONCAT(DISTINCT(csw.url) SEPARATOR ' '),internal_number,GROUP_CONCAT(DISTINCT(ud.internal_number) SEPARATOR ' ')"}, - {"Event": "Newexten", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "AppData": "ARRAY(webhooks,accountinternalnumber,userinternalnumbers)=http://localhost:8080/api/voipgrid/call-notifications/?key=f424011c7b217ee03e23f56fc6501c8a9b1c8565 https://requestb.in/vxjguyvx,201,601", "Application": "Set", "Uniqueid": "0f00dcaa884f-1508767736.48", "Privilege": "dialplan,all", "Priority": "11", "Extension": "ID690150", "Context": "osvpi_route_account"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "webhooks", "Privilege": "dialplan,all", "Value": "http://localhost:8080/api/voipgrid/call-notifications/?key=f424011c7b217ee03e23f56fc6501c8a9b1c8565 https://requestb.in/vxjguyvx"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "accountinternalnumber", "Privilege": "dialplan,all", "Value": "201"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "userinternalnumbers", "Privilege": "dialplan,all", "Value": "601"}, - {"Event": "Newexten", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "AppData": "NotifyCallstate,Provider: webhook,AccountCode: 150010001,WebhookUrls: http://localhost:8080/api/voipgrid/call-notifications/?key=f424011c7b217ee03e23f56fc6501c8a9b1c8565 https://requestb.in/vxjguyvx,AccountInternalNumber: 201,UserInternalNumbers: 601", "Application": "UserEvent", "Uniqueid": "0f00dcaa884f-1508767736.48", "Privilege": "dialplan,all", "Priority": "12", "Extension": "ID690150", "Context": "osvpi_route_account"}, - {"Event": "UserEvent", "WebhookUrls": "http://localhost:8080/api/voipgrid/call-notifications/?key=f424011c7b217ee03e23f56fc6501c8a9b1c8565 https://requestb.in/vxjguyvx", "UserEvent": "NotifyCallstate", "AccountCode": "150010001", "Uniqueid": "0f00dcaa884f-1508767736.48", "Provider": "webhook", "content": "", "UserInternalNumbers": "601", "Privilege": "user,all", "AccountInternalNumber": "201"}, - {"Event": "Newexten", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "AppData": "osvpi_proc_proxy_out,401,1", "Application": "Goto", "Uniqueid": "0f00dcaa884f-1508767736.48", "Privilege": "dialplan,all", "Priority": "13", "Extension": "ID690150", "Context": "osvpi_route_account"}, - {"Event": "Newexten", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "AppData": "X-Accountcode: 150010001", "Application": "SIPAddHeader", "Uniqueid": "0f00dcaa884f-1508767736.48", "Privilege": "dialplan,all", "Priority": "1", "Extension": "401", "Context": "osvpi_proc_proxy_out"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "__SIPADDHEADER01", "Privilege": "dialplan,all", "Value": "X-Accountcode: 150010001"}, - {"Event": "Newexten", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "AppData": "X-Insecure-Protection: geheim", "Application": "SIPAddHeader", "Uniqueid": "0f00dcaa884f-1508767736.48", "Privilege": "dialplan,all", "Priority": "2", "Extension": "401", "Context": "osvpi_proc_proxy_out"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "__SIPADDHEADER02", "Privilege": "dialplan,all", "Value": "X-Insecure-Protection: geheim"}, - {"Event": "Newexten", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "AppData": "X-Mangle-Cli: from-dutch", "Application": "SIPAddHeader", "Uniqueid": "0f00dcaa884f-1508767736.48", "Privilege": "dialplan,all", "Priority": "3", "Extension": "401", "Context": "osvpi_proc_proxy_out"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "__SIPADDHEADER03", "Privilege": "dialplan,all", "Value": "X-Mangle-Cli: from-dutch"}, - {"Event": "Newexten", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "AppData": "_dial_options_callaccept=", "Application": "Set", "Uniqueid": "0f00dcaa884f-1508767736.48", "Privilege": "dialplan,all", "Priority": "4", "Extension": "401", "Context": "osvpi_proc_proxy_out"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "_dial_options_callaccept", "Privilege": "dialplan,all", "Value": ""}, - {"Event": "Newexten", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "AppData": "_dial_options_callnotify=", "Application": "Set", "Uniqueid": "0f00dcaa884f-1508767736.48", "Privilege": "dialplan,all", "Priority": "5", "Extension": "401", "Context": "osvpi_proc_proxy_out"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "_dial_options_callnotify", "Privilege": "dialplan,all", "Value": ""}, - {"Event": "Newexten", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "AppData": "0?Set(l_proxy=opensipsfg)", "Application": "ExecIf", "Uniqueid": "0f00dcaa884f-1508767736.48", "Privilege": "dialplan,all", "Priority": "6", "Extension": "401", "Context": "osvpi_proc_proxy_out"}, - {"Event": "Newexten", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "AppData": "l_extra_options=", "Application": "Set", "Uniqueid": "0f00dcaa884f-1508767736.48", "Privilege": "dialplan,all", "Priority": "7", "Extension": "401", "Context": "osvpi_proc_proxy_out"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "l_extra_options", "Privilege": "dialplan,all", "Value": ""}, - {"Event": "Newexten", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "AppData": "SIP/150010001/150010001/172.20.0.13!!203,,", "Application": "Dial", "Uniqueid": "0f00dcaa884f-1508767736.48", "Privilege": "dialplan,all", "Priority": "8", "Extension": "401", "Context": "osvpi_proc_proxy_out"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "Value": ""}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Value": ""}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "Value": ""}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "Value": ""}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "Value": ""}, - {"Exten": "", "AccountCode": "150010001", "Uniqueid": "0f00dcaa884f-1508767736.49", "ChannelState": "0", "Event": "Newchannel", "Channel": "SIP/150010001-00000015", "content": "", "CallerIDNum": "", "CallerIDName": "", "Privilege": "call,all", "ChannelStateDesc": "Down", "Context": "osvpi_account"}, - {"Event": "VarSet", "Channel": "SIP/150010001-00000015", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.49", "Variable": "SIPCALLID", "Privilege": "dialplan,all", "Value": "6da93e1c71f94bdf097282287549c2b8@test.voipgrid.nl"}, - {"Event": "VarSet", "Channel": "SIP/150010001-00000015", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.49", "Variable": "__client_id", "Privilege": "dialplan,all", "Value": "15001"}, - {"Event": "VarSet", "Channel": "SIP/150010001-00000015", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.49", "Variable": "__account_id", "Privilege": "dialplan,all", "Value": "150010001"}, - {"Event": "VarSet", "Channel": "SIP/150010001-00000015", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.49", "Variable": "__record_call", "Privilege": "dialplan,all", "Value": "no"}, - {"Event": "VarSet", "Channel": "SIP/150010001-00000015", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.49", "Variable": "__intprefix", "Privilege": "dialplan,all", "Value": "31"}, - {"Event": "VarSet", "Channel": "SIP/150010001-00000015", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.49", "Variable": "__limit_account", "Privilege": "dialplan,all", "Value": "4"}, - {"Event": "VarSet", "Channel": "SIP/150010001-00000015", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.49", "Variable": "__limit_client", "Privilege": "dialplan,all", "Value": "0"}, - {"Event": "VarSet", "Channel": "SIP/150010001-00000015", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.49", "Variable": "__hide_ext_cliname", "Privilege": "dialplan,all", "Value": "1"}, - {"Event": "VarSet", "Channel": "SIP/150010001-00000015", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.49", "Variable": "__TRANSFER_CONTEXT", "Privilege": "dialplan,all", "Value": "osvpi_account_transfer"}, - {"Event": "VarSet", "Channel": "SIP/150010001-00000015", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.49", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Value": "150010001/150010001/172.20.0.13!!203"}, - {"Event": "NewCallerid", "Channel": "SIP/150010001-00000015", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.49", "CallerIDNum": "401", "CallerIDName": "", "Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"UniqueID": "0f00dcaa884f-1508767736.48", "ConnectedLineNum": "401", "ConnectedLineName": "", "Dialstring": "150010001/150010001/172.20.0.13!!203", "Event": "Dial", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "SubEvent": "Begin", "CallerIDNum": "203", "CallerIDName": "Tom Kline", "content": "", "Destination": "SIP/150010001-00000015", "Privilege": "call,all", "DestUniqueID": "0f00dcaa884f-1508767736.49"}, - {"Event": "Newstate", "Channel": "SIP/150010001-00000015", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.49", "ConnectedLineName": "Tom Kline", "CallerIDName": "", "Privilege": "call,all", "ChannelStateDesc": "Ringing", "ConnectedLineNum": "203", "CallerIDNum": "401", "ChannelState": "5"}, - {"Event": "Newstate", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;1", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.47", "ConnectedLineName": "Tom Kline", "CallerIDName": "", "Privilege": "call,all", "ChannelStateDesc": "Ringing", "ConnectedLineNum": "203", "CallerIDNum": "401", "ChannelState": "5"}, - {"Event": "HangupRequest", "Privilege": "call,all", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Channel": "SIP/150010003-00000014"}, - {"Event": "HangupRequest", "Privilege": "call,all", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2"}, - {"AccountCode": "150010003", "Uniqueid": "0f00dcaa884f-1508767736.47", "Cause-txt": "Unknown", "ConnectedLineNum": "203", "Event": "Hangup", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;1", "content": "", "CallerIDNum": "401", "CallerIDName": "", "Privilege": "call,all", "ConnectedLineName": "Tom Kline", "Cause": "0"}, - {"AccountCode": "150010003", "Uniqueid": "0f00dcaa884f-1508767736.49", "Cause-txt": "Normal Clearing", "ConnectedLineNum": "203", "Event": "Hangup", "Channel": "SIP/150010001-00000015", "content": "", "CallerIDNum": "401", "CallerIDName": "", "Privilege": "call,all", "ConnectedLineName": "Tom Kline", "Cause": "16"}, - {"Event": "VarSet", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "Value": "CANCEL"}, - {"Event": "Dial", "UniqueID": "0f00dcaa884f-1508767736.48", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "SubEvent": "End", "Privilege": "call,all", "DialStatus": "CANCEL"}, - {"Event": "SoftHangupRequest", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.48", "Privilege": "call,all", "Cause": "16"}, - {"Event": "Newexten", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "AppData": "1?nosip", "Application": "GotoIf", "Uniqueid": "0f00dcaa884f-1508767736.48", "Privilege": "dialplan,all", "Priority": "1", "Extension": "onhangup", "Context": "handlers"}, - {"Event": "Newexten", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "AppData": "0?osvpi_proc_httptouch,s,1()", "Application": "GosubIf", "Uniqueid": "0f00dcaa884f-1508767736.48", "Privilege": "dialplan,all", "Priority": "3", "Extension": "onhangup", "Context": "handlers"}, - {"AccountCode": "150010003", "Uniqueid": "0f00dcaa884f-1508767736.48", "Cause-txt": "Unknown", "ConnectedLineNum": "401", "Event": "Hangup", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000d;2", "content": "", "CallerIDNum": "203", "CallerIDName": "Tom Kline", "Privilege": "call,all", "ConnectedLineName": "", "Cause": "0"}, - {"Event": "VarSet", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "Value": "CANCEL"}, - {"Event": "Dial", "UniqueID": "0f00dcaa884f-1508767736.46", "Channel": "SIP/150010003-00000014", "content": "", "SubEvent": "End", "Privilege": "call,all", "DialStatus": "CANCEL"}, - {"Event": "SoftHangupRequest", "Channel": "SIP/150010003-00000014", "content": "", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "call,all", "Cause": "16"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "0?nosip", "Application": "GotoIf", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "1", "Extension": "onhangup", "Context": "handlers"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "LOG: rtpqos: caller=(null);asterisk=0.0.0.0:17742;ssrc=134457627;themssrc=0;lp=0;rxjitter=0.000000;rxcount=0;txjitter=0.000000;txcount=0;rlp=0;rtt=0.000000;billsec=0", "Application": "NoOp", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "2", "Extension": "onhangup", "Context": "handlers"}, - {"Event": "Newexten", "Channel": "SIP/150010003-00000014", "content": "", "AppData": "0?osvpi_proc_httptouch,s,1()", "Application": "GosubIf", "Uniqueid": "0f00dcaa884f-1508767736.46", "Privilege": "dialplan,all", "Priority": "3", "Extension": "onhangup", "Context": "handlers"}, - {"AccountCode": "150010003", "Uniqueid": "0f00dcaa884f-1508767736.46", "Cause-txt": "Unknown", "ConnectedLineNum": "", "Event": "Hangup", "Channel": "SIP/150010003-00000014", "content": "", "CallerIDNum": "203", "CallerIDName": "Tom Kline", "Privilege": "call,all", "ConnectedLineName": "", "Cause": "0"} -] diff --git a/tests/fixtures/queue/queue_attn_xfer.json b/tests/fixtures/queue/queue_attn_xfer.json index ea34198..e090c23 100644 --- a/tests/fixtures/queue/queue_attn_xfer.json +++ b/tests/fixtures/queue/queue_attn_xfer.json @@ -1,80 +1,101 @@ [ - {"Status": "Fully Booted", "Event": "FullyBooted", "Privilege": "system,all", "content": ""}, - {"Status": "Fully Booted", "Event": "FullyBooted", "Privilege": "system,all", "content": ""}, - {"ChannelStateDesc": "Down", "CallerIDNum": "+31150010001", "Exten": "+31150010004", "CallerIDName": "", "Context": "voipgrid_in", "AccountCode": "", "Channel": "SIP/voipgrid-siproute-docker-00000038", "content": "", "Event": "Newchannel", "ChannelState": "0", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037906.116"}, - {"Channel": "SIP/voipgrid-siproute-docker-00000038", "ChannelStateDesc": "Ring", "CallerIDNum": "+31150010001", "CallerIDName": "", "ConnectedLineName": "", "content": "", "Event": "Newstate", "ConnectedLineNum": "", "ChannelState": "4", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037906.116"}, - {"Event": "NewAccountCode", "AccountCode": "15001", "content": "", "Channel": "SIP/voipgrid-siproute-docker-00000038", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037906.116"}, - {"Channel": "SIP/voipgrid-siproute-docker-00000038", "ChannelStateDesc": "Up", "CallerIDNum": "+31150010001", "CallerIDName": "", "ConnectedLineName": "", "content": "", "Event": "Newstate", "ConnectedLineNum": "", "ChannelState": "6", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037906.116"}, - {"ChannelStateDesc": "Down", "CallerIDNum": "", "Exten": "ID690151", "CallerIDName": "", "Context": "osvpi_route_phoneaccount", "AccountCode": "", "Channel": "Local/ID690151@osvpi_route_phoneaccount-0000001e;1", "content": "", "Event": "Newchannel", "ChannelState": "0", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037909.117"}, - {"ChannelStateDesc": "Ring", "CallerIDNum": "", "Exten": "ID690151", "CallerIDName": "", "Context": "osvpi_route_phoneaccount", "AccountCode": "", "Channel": "Local/ID690151@osvpi_route_phoneaccount-0000001e;2", "content": "", "Event": "Newchannel", "ChannelState": "4", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037909.118"}, - {"Channel": "Local/ID690151@osvpi_route_phoneaccount-0000001e;1", "CallerIDNum": "+31150010004", "content": "", "Event": "NewCallerid", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037909.117"}, - {"Channel1": "Local/ID690151@osvpi_route_phoneaccount-0000001e;1", "content": "", "Uniqueid2": "e83df36bebbe-1507037909.118", "Exten": "ID690151", "Event": "LocalBridge", "LocalOptimization": "Yes", "Context": "osvpi_route_phoneaccount", "Privilege": "call,all", "Uniqueid1": "e83df36bebbe-1507037909.117", "Channel2": "Local/ID690151@osvpi_route_phoneaccount-0000001e;2"}, - {"Queue": "1-3", "ConnectedLineNum": "unknown", "DestinationChannel": "Local/ID690151@osvpi_route_phoneaccount-0000001e;1", "CallerIDNum": "+31150010001", "ChannelCalling": "SIP/voipgrid-siproute-docker-00000038", "CallerIDName": "unknown", "Extension": "ID510320", "Priority": "21", "Context": "osvpi_route_queue_step", "Privilege": "agent,all", "ConnectedLineName": "unknown", "content": "", "Event": "AgentCalled", "Uniqueid": "e83df36bebbe-1507037906.116", "AgentCalled": "Local/ID690151@osvpi_route_phoneaccount", "AgentName": "Local/ID690151@osvpi_route_phoneaccount"}, - {"ChannelStateDesc": "Down", "CallerIDNum": "", "Exten": "", "CallerIDName": "", "Context": "osvpi_account", "AccountCode": "150010002", "Channel": "SIP/150010002-00000039", "content": "", "Event": "Newchannel", "ChannelState": "0", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037909.119"}, - {"Channel": "SIP/150010002-00000039", "CallerIDNum": "+31150010004", "content": "", "Event": "NewCallerid", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037909.119"}, - {"Destination": "SIP/150010002-00000039", "ConnectedLineNum": "+31150010004", "CallerIDNum": "+31150010001", "CallerIDName": "", "SubEvent": "Begin", "Channel": "Local/ID690151@osvpi_route_phoneaccount-0000001e;2", "UniqueID": "e83df36bebbe-1507037909.118", "ConnectedLineName": "", "content": "", "DestUniqueID": "e83df36bebbe-1507037909.119", "Event": "Dial", "Dialstring": "150010002/150010002/172.20.0.13!!0150010001", "Privilege": "call,all"}, - {"Channel": "SIP/150010002-00000039", "ChannelStateDesc": "Ringing", "CallerIDNum": "+31150010004", "CallerIDName": "", "ConnectedLineName": "", "content": "", "Event": "Newstate", "ConnectedLineNum": "+31150010001", "ChannelState": "5", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037909.119"}, - {"Channel": "Local/ID690151@osvpi_route_phoneaccount-0000001e;1", "ChannelStateDesc": "Ringing", "CallerIDNum": "+31150010004", "CallerIDName": "", "ConnectedLineName": "", "content": "", "Event": "Newstate", "ConnectedLineNum": "+31150010001", "ChannelState": "5", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037909.117"}, - {"Channel": "SIP/150010002-00000039", "ChannelStateDesc": "Up", "CallerIDNum": "+31150010004", "CallerIDName": "", "ConnectedLineName": "", "content": "", "Event": "Newstate", "ConnectedLineNum": "+31150010001", "ChannelState": "6", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037909.119"}, - {"Channel": "Local/ID690151@osvpi_route_phoneaccount-0000001e;2", "ChannelStateDesc": "Up", "CallerIDNum": "+31150010001", "CallerIDName": "", "ConnectedLineName": "", "content": "", "Event": "Newstate", "ConnectedLineNum": "+31150010004", "ChannelState": "6", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037909.118"}, - {"Channel": "SIP/150010002-00000039", "AccountCode": "", "content": "", "Event": "NewAccountCode", "Privilege": "call,all", "OldAccountCode": "150010002", "Uniqueid": "e83df36bebbe-1507037909.119"}, - {"CallerID1": "+31150010001", "Channel1": "Local/ID690151@osvpi_route_phoneaccount-0000001e;2", "content": "", "Uniqueid2": "e83df36bebbe-1507037909.119", "Event": "Bridge", "Bridgetype": "core", "Bridgestate": "Link", "CallerID2": "+31150010004", "Channel2": "SIP/150010002-00000039", "Uniqueid1": "e83df36bebbe-1507037909.118", "Privilege": "call,all"}, - {"Channel": "Local/ID690151@osvpi_route_phoneaccount-0000001e;1", "ChannelStateDesc": "Up", "CallerIDNum": "+31150010004", "CallerIDName": "", "ConnectedLineName": "", "content": "", "Event": "Newstate", "ConnectedLineNum": "+31150010001", "ChannelState": "6", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037909.117"}, - {"HoldTime": "2", "Channel": "Local/ID690151@osvpi_route_phoneaccount-0000001e;1", "RingTime": "2", "Member": "Local/ID690151@osvpi_route_phoneaccount", "content": "", "MemberName": "Local/ID690151@osvpi_route_phoneaccount", "Event": "AgentConnect", "BridgedChannel": "e83df36bebbe-1507037909.117", "Queue": "1-3", "Privilege": "agent,all", "Uniqueid": "e83df36bebbe-1507037906.116"}, - {"Event": "NewAccountCode", "AccountCode": "15001", "content": "", "Channel": "Local/ID690151@osvpi_route_phoneaccount-0000001e;1", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037909.117"}, - {"CallerID1": "+31150010001", "Channel1": "SIP/voipgrid-siproute-docker-00000038", "content": "", "Uniqueid2": "e83df36bebbe-1507037909.117", "Event": "Bridge", "Bridgetype": "core", "Bridgestate": "Link", "CallerID2": "+31150010004", "Channel2": "Local/ID690151@osvpi_route_phoneaccount-0000001e;1", "Uniqueid1": "e83df36bebbe-1507037906.116", "Privilege": "call,all"}, - {"Event": "Masquerade", "CloneState": "Up", "content": "", "Original": "Local/ID690151@osvpi_route_phoneaccount-0000001e;1", "Clone": "SIP/150010002-00000039", "Privilege": "call,all", "OriginalState": "Up"}, - {"Event": "Rename", "content": "", "Channel": "SIP/150010002-00000039", "Newname": "SIP/150010002-00000039", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037909.119"}, - {"Event": "Rename", "content": "", "Channel": "Local/ID690151@osvpi_route_phoneaccount-0000001e;1", "Newname": "SIP/150010002-00000039", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037909.117"}, - {"Event": "Rename", "content": "", "Channel": "SIP/150010002-00000039", "Newname": "Local/ID690151@osvpi_route_phoneaccount-0000001e;1", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037909.119"}, - {"Channel": "SIP/150010002-00000039", "CallerIDNum": "+31150010004", "content": "", "Event": "NewCallerid", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037909.117"}, - {"CallerID1": "+31150010001", "Channel1": "Local/ID690151@osvpi_route_phoneaccount-0000001e;2", "content": "", "Uniqueid2": "e83df36bebbe-1507037909.119", "Event": "Bridge", "Bridgetype": "core", "Bridgestate": "Unlink", "CallerID2": "+31150010004", "Channel2": "Local/ID690151@osvpi_route_phoneaccount-0000001e;1", "Uniqueid1": "e83df36bebbe-1507037909.118", "Privilege": "call,all"}, - {"ConnectedLineNum": "+31150010001", "CallerIDNum": "+31150010004", "CallerIDName": "", "Cause-txt": "Normal Clearing", "AccountCode": "", "Channel": "Local/ID690151@osvpi_route_phoneaccount-0000001e;1", "Cause": "16", "ConnectedLineName": "", "content": "", "Event": "Hangup", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037909.119"}, - {"Channel": "Local/ID690151@osvpi_route_phoneaccount-0000001e;2", "UniqueID": "e83df36bebbe-1507037909.118", "content": "", "Event": "Dial", "DialStatus": "ANSWER", "Privilege": "call,all", "SubEvent": "End"}, - {"ConnectedLineNum": "+31150010004", "CallerIDNum": "+31150010001", "CallerIDName": "", "Cause-txt": "Normal Clearing", "AccountCode": "", "Channel": "Local/ID690151@osvpi_route_phoneaccount-0000001e;2", "Cause": "16", "ConnectedLineName": "", "content": "", "Event": "Hangup", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037909.118"}, - {"ChannelStateDesc": "Down", "CallerIDNum": "150010002", "Exten": "203", "CallerIDName": "Docker", "Context": "osvpi_account", "AccountCode": "150010002", "Channel": "SIP/150010002-0000003a", "content": "", "Event": "Newchannel", "ChannelState": "0", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037917.120"}, - {"Channel": "SIP/150010002-0000003a", "ChannelStateDesc": "Ring", "CallerIDNum": "150010002", "CallerIDName": "Docker", "ConnectedLineName": "", "content": "", "Event": "Newstate", "ConnectedLineNum": "", "ChannelState": "4", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037917.120"}, - {"Channel": "SIP/150010002-0000003a", "CallerIDNum": "150010002", "content": "", "Event": "NewCallerid", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Samantha Graham", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037917.120"}, - {"Channel": "SIP/150010002-0000003a", "CallerIDNum": "202", "content": "", "Event": "NewCallerid", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Samantha Graham", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037917.120"}, - {"ChannelStateDesc": "Down", "CallerIDNum": "", "Exten": "ID690152", "CallerIDName": "", "Context": "osvpi_route_phoneaccount", "AccountCode": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000001f;1", "content": "", "Event": "Newchannel", "ChannelState": "0", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037917.121"}, - {"ChannelStateDesc": "Ring", "CallerIDNum": "", "Exten": "ID690152", "CallerIDName": "", "Context": "osvpi_route_phoneaccount", "AccountCode": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000001f;2", "content": "", "Event": "Newchannel", "ChannelState": "4", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037917.122"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-0000001f;1", "CallerIDNum": "203", "content": "", "Event": "NewCallerid", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037917.121"}, - {"Channel1": "Local/ID690152@osvpi_route_phoneaccount-0000001f;1", "content": "", "Uniqueid2": "e83df36bebbe-1507037917.122", "Exten": "ID690152", "Event": "LocalBridge", "LocalOptimization": "Yes", "Context": "osvpi_route_phoneaccount", "Privilege": "call,all", "Uniqueid1": "e83df36bebbe-1507037917.121", "Channel2": "Local/ID690152@osvpi_route_phoneaccount-0000001f;2"}, - {"Destination": "Local/ID690152@osvpi_route_phoneaccount-0000001f;1", "ConnectedLineNum": "", "CallerIDNum": "202", "CallerIDName": "Samantha Graham", "SubEvent": "Begin", "Channel": "SIP/150010002-0000003a", "UniqueID": "e83df36bebbe-1507037917.120", "ConnectedLineName": "", "content": "", "DestUniqueID": "e83df36bebbe-1507037917.121", "Event": "Dial", "Dialstring": "ID690152@osvpi_route_phoneaccount", "Privilege": "call,all"}, - {"ChannelStateDesc": "Down", "CallerIDNum": "", "Exten": "", "CallerIDName": "", "Context": "osvpi_account", "AccountCode": "150010003", "Channel": "SIP/150010003-0000003b", "content": "", "Event": "Newchannel", "ChannelState": "0", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037917.123"}, - {"Channel": "SIP/150010003-0000003b", "CallerIDNum": "203", "content": "", "Event": "NewCallerid", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037917.123"}, - {"Destination": "SIP/150010003-0000003b", "ConnectedLineNum": "203", "CallerIDNum": "202", "CallerIDName": "Samantha Graham", "SubEvent": "Begin", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000001f;2", "UniqueID": "e83df36bebbe-1507037917.122", "ConnectedLineName": "", "content": "", "DestUniqueID": "e83df36bebbe-1507037917.123", "Event": "Dial", "Dialstring": "150010003/150010003/172.20.0.13!!202", "Privilege": "call,all"}, - {"Channel": "SIP/150010003-0000003b", "ChannelStateDesc": "Ringing", "CallerIDNum": "203", "CallerIDName": "", "ConnectedLineName": "Samantha Graham", "content": "", "Event": "Newstate", "ConnectedLineNum": "202", "ChannelState": "5", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037917.123"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-0000001f;1", "ChannelStateDesc": "Ringing", "CallerIDNum": "203", "CallerIDName": "", "ConnectedLineName": "Samantha Graham", "content": "", "Event": "Newstate", "ConnectedLineNum": "202", "ChannelState": "5", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037917.121"}, - {"Channel": "SIP/150010003-0000003b", "ChannelStateDesc": "Up", "CallerIDNum": "203", "CallerIDName": "", "ConnectedLineName": "Samantha Graham", "content": "", "Event": "Newstate", "ConnectedLineNum": "202", "ChannelState": "6", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037917.123"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-0000001f;2", "ChannelStateDesc": "Up", "CallerIDNum": "202", "CallerIDName": "Samantha Graham", "ConnectedLineName": "", "content": "", "Event": "Newstate", "ConnectedLineNum": "203", "ChannelState": "6", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037917.122"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-0000001f;1", "ChannelStateDesc": "Up", "CallerIDNum": "203", "CallerIDName": "", "ConnectedLineName": "Samantha Graham", "content": "", "Event": "Newstate", "ConnectedLineNum": "202", "ChannelState": "6", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037917.121"}, - {"Channel": "SIP/150010003-0000003b", "AccountCode": "150010002", "content": "", "Event": "NewAccountCode", "Privilege": "call,all", "OldAccountCode": "150010002", "Uniqueid": "e83df36bebbe-1507037917.123"}, - {"CallerID1": "202", "Channel1": "Local/ID690152@osvpi_route_phoneaccount-0000001f;2", "content": "", "Uniqueid2": "e83df36bebbe-1507037917.123", "Event": "Bridge", "Bridgetype": "core", "Bridgestate": "Link", "CallerID2": "203", "Channel2": "SIP/150010003-0000003b", "Uniqueid1": "e83df36bebbe-1507037917.122", "Privilege": "call,all"}, - {"Channel": "SIP/150010002-0000003a", "ChannelStateDesc": "Up", "CallerIDNum": "202", "CallerIDName": "Samantha Graham", "ConnectedLineName": "", "content": "", "Event": "Newstate", "ConnectedLineNum": "", "ChannelState": "6", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037917.120"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-0000001f;1", "AccountCode": "150010002", "content": "", "Event": "NewAccountCode", "Privilege": "call,all", "OldAccountCode": "150010002", "Uniqueid": "e83df36bebbe-1507037917.121"}, - {"CallerID1": "202", "Channel1": "SIP/150010002-0000003a", "content": "", "Uniqueid2": "e83df36bebbe-1507037917.121", "Event": "Bridge", "Bridgetype": "core", "Bridgestate": "Link", "CallerID2": "203", "Channel2": "Local/ID690152@osvpi_route_phoneaccount-0000001f;1", "Uniqueid1": "e83df36bebbe-1507037917.120", "Privilege": "call,all"}, - {"Event": "Masquerade", "CloneState": "Up", "content": "", "Original": "Local/ID690152@osvpi_route_phoneaccount-0000001f;1", "Clone": "SIP/150010003-0000003b", "Privilege": "call,all", "OriginalState": "Up"}, - {"Event": "Rename", "content": "", "Channel": "SIP/150010003-0000003b", "Newname": "SIP/150010003-0000003b", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037917.123"}, - {"Event": "Rename", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000001f;1", "Newname": "SIP/150010003-0000003b", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037917.121"}, - {"Event": "Rename", "content": "", "Channel": "SIP/150010003-0000003b", "Newname": "Local/ID690152@osvpi_route_phoneaccount-0000001f;1", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037917.123"}, - {"Channel": "SIP/150010003-0000003b", "CallerIDNum": "203", "content": "", "Event": "NewCallerid", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037917.121"}, - {"CallerID1": "202", "Channel1": "Local/ID690152@osvpi_route_phoneaccount-0000001f;2", "content": "", "Uniqueid2": "e83df36bebbe-1507037917.123", "Event": "Bridge", "Bridgetype": "core", "Bridgestate": "Unlink", "CallerID2": "203", "Channel2": "Local/ID690152@osvpi_route_phoneaccount-0000001f;1", "Uniqueid1": "e83df36bebbe-1507037917.122", "Privilege": "call,all"}, - {"ConnectedLineNum": "202", "CallerIDNum": "203", "CallerIDName": "", "Cause-txt": "Normal Clearing", "AccountCode": "150010002", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000001f;1", "Cause": "16", "ConnectedLineName": "Samantha Graham", "content": "", "Event": "Hangup", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037917.123"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-0000001f;2", "UniqueID": "e83df36bebbe-1507037917.122", "content": "", "Event": "Dial", "DialStatus": "ANSWER", "Privilege": "call,all", "SubEvent": "End"}, - {"ConnectedLineNum": "203", "CallerIDNum": "202", "CallerIDName": "Samantha Graham", "Cause-txt": "Normal Clearing", "AccountCode": "150010002", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000001f;2", "Cause": "16", "ConnectedLineName": "", "content": "", "Event": "Hangup", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037917.122"}, - {"SIP-Callid": "56a0593175f69c081c85c51c4af51393@test.voipgrid.nl", "Channel": "SIP/150010002-00000039", "TransferType": "Attended", "content": "", "TransferMethod": "SIP", "Event": "Transfer", "TargetChannel": "SIP/150010002-0000003a", "TargetUniqueid": "e83df36bebbe-1507037917.120", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037909.117"}, - {"Event": "Masquerade", "CloneState": "Up", "content": "", "Original": "SIP/150010002-0000003a", "Clone": "SIP/voipgrid-siproute-docker-00000038", "Privilege": "call,all", "OriginalState": "Up"}, - {"Event": "Rename", "content": "", "Channel": "SIP/voipgrid-siproute-docker-00000038", "Newname": "SIP/voipgrid-siproute-docker-00000038", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037906.116"}, - {"Event": "Rename", "content": "", "Channel": "SIP/150010002-0000003a", "Newname": "SIP/voipgrid-siproute-docker-00000038", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037917.120"}, - {"Event": "Rename", "content": "", "Channel": "SIP/voipgrid-siproute-docker-00000038", "Newname": "SIP/150010002-0000003a", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037906.116"}, - {"Channel": "SIP/voipgrid-siproute-docker-00000038", "CallerIDNum": "+31150010001", "content": "", "Event": "NewCallerid", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037917.120"}, - {"CallerID1": "202", "Channel1": "SIP/150010002-0000003a", "content": "", "Uniqueid2": "e83df36bebbe-1507037909.117", "Event": "Bridge", "Bridgetype": "core", "Bridgestate": "Unlink", "CallerID2": "+31150010004", "Channel2": "SIP/150010002-00000039", "Uniqueid1": "e83df36bebbe-1507037906.116", "Privilege": "call,all"}, - {"Channel": "SIP/150010002-00000039", "HoldTime": "2", "TalkTime": "16", "content": "", "Reason": "transfer", "Event": "AgentComplete", "Member": "Local/ID690151@osvpi_route_phoneaccount", "MemberName": "Local/ID690151@osvpi_route_phoneaccount", "Queue": "1-3", "Privilege": "agent,all", "Uniqueid": "e83df36bebbe-1507037906.116"}, - {"ConnectedLineNum": "+31150010001", "CallerIDNum": "+31150010004", "CallerIDName": "", "Cause-txt": "Normal Clearing", "AccountCode": "", "Channel": "SIP/150010002-00000039", "Cause": "16", "ConnectedLineName": "", "content": "", "Event": "Hangup", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037909.117"}, - {"ConnectedLineNum": "", "CallerIDNum": "202", "CallerIDName": "Samantha Graham", "Cause-txt": "Unknown", "AccountCode": "15001", "Channel": "SIP/150010002-0000003a", "Cause": "0", "ConnectedLineName": "", "content": "", "Event": "Hangup", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037906.116"}, - {"CallerID1": "+31150010001", "Channel1": "SIP/voipgrid-siproute-docker-00000038", "content": "", "Uniqueid2": "e83df36bebbe-1507037917.121", "Event": "Bridge", "Bridgetype": "core", "Bridgestate": "Unlink", "CallerID2": "203", "Channel2": "SIP/150010003-0000003b", "Uniqueid1": "e83df36bebbe-1507037917.120", "Privilege": "call,all"}, - {"ConnectedLineNum": "+31150010001", "CallerIDNum": "203", "CallerIDName": "", "Cause-txt": "Normal Clearing", "AccountCode": "150010002", "Channel": "SIP/150010003-0000003b", "Cause": "16", "ConnectedLineName": "", "content": "", "Event": "Hangup", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037917.121"}, - {"Channel": "SIP/voipgrid-siproute-docker-00000038", "UniqueID": "e83df36bebbe-1507037917.120", "content": "", "Event": "Dial", "DialStatus": "ANSWER", "Privilege": "call,all", "SubEvent": "End"}, - {"ConnectedLineNum": "", "CallerIDNum": "+31150010001", "CallerIDName": "", "Cause-txt": "Normal Clearing", "AccountCode": "15001", "Channel": "SIP/voipgrid-siproute-docker-00000038", "Cause": "16", "ConnectedLineName": "", "content": "", "Event": "Hangup", "Privilege": "call,all", "Uniqueid": "e83df36bebbe-1507037917.120"} + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000087", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newchannel", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530022819.2433", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022819.2433", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000087", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530022819.2433", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022819.2433", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000087", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530022819.2433", "Priority": "10", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022819.2433", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000087", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_lazyanswer", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530022819.2433", "Priority": "2", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022819.2433", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "254c2c5c-de91-491d-8fbe-e12928d477f9", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "6137164d-d24f-4341-a3b4-ddf9e5fd6c35", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "6137164d-d24f-4341-a3b4-ddf9e5fd6c35", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000059;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730150", "Language": "en", "Linkedid": "f29ea68048f6-1530022819.2433", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022821.2453", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000059;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730150", "Language": "en", "Linkedid": "f29ea68048f6-1530022819.2433", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022821.2455", "content": ""}, + {"AccountCode": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000059;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730150", "Language": "en", "Linkedid": "f29ea68048f6-1530022819.2433", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022821.2453", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000059;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730150", "Language": "en", "Linkedid": "f29ea68048f6-1530022819.2433", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022821.2455", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000059;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730150", "Language": "en", "Linkedid": "f29ea68048f6-1530022819.2433", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022821.2455", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000059;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730150", "Language": "en", "Linkedid": "f29ea68048f6-1530022819.2433", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022821.2455", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730150", "LocalOneAccountCode": "", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31150010001", "LocalOneChannel": "Local/ID730150@osvpi_route_phoneaccount-00000059;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "ID730150", "LocalOneLanguage": "en", "LocalOneLinkedid": "f29ea68048f6-1530022819.2433", "LocalOnePriority": "1", "LocalOneUniqueid": "f29ea68048f6-1530022821.2453", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31260010001", "LocalTwoChannel": "Local/ID730150@osvpi_route_phoneaccount-00000059;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31150010001", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730150", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "f29ea68048f6-1530022819.2433", "LocalTwoPriority": "1", "LocalTwoUniqueid": "f29ea68048f6-1530022821.2455", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000087", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_queue_step", "DestAccountCode": "", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/ID730150@osvpi_route_phoneaccount-00000059;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "", "DestContext": "osvpi_route_phoneaccount", "DestExten": "ID730150", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530022819.2433", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530022821.2453", "DialString": "Local/ID730150@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "ID550310", "Language": "vg_nl_NL_F", "Linkedid": "f29ea68048f6-1530022819.2433", "Priority": "21", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022819.2433", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010001-00000088", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "f29ea68048f6-1530022819.2433", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022821.2458", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000088", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530022819.2433", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022821.2458", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000088", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530022819.2433", "OldAccountCode": "150010001", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022821.2458", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000088", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530022819.2433", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022821.2458", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000059;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "SIP/150010001-00000088", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "+31150010001", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530022819.2433", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530022821.2458", "DialString": "150010001/150010001/172.20.0.13!!0260010001", "Event": "DialBegin", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530022819.2433", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022821.2455", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000088", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530022819.2433", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022821.2458", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000059;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "ID550310", "Language": "en", "Linkedid": "f29ea68048f6-1530022819.2433", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022821.2453", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000059;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID550310", "Language": "en", "Linkedid": "f29ea68048f6-1530022819.2433", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022821.2453", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000088", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530022819.2433", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022821.2458", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000059;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "SIP/150010001-00000088", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530022819.2433", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530022821.2458", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530022819.2433", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022821.2455", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000059;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "ID550310", "Language": "en", "Linkedid": "f29ea68048f6-1530022819.2433", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022821.2453", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000087", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_queue_step", "DestAccountCode": "", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/ID730150@osvpi_route_phoneaccount-00000059;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "ID550310", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530022819.2433", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530022821.2453", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "ID550310", "Language": "vg_nl_NL_F", "Linkedid": "f29ea68048f6-1530022819.2433", "Priority": "21", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022819.2433", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000059;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530022819.2433", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022821.2455", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "0fd1eea6-a218-484c-8dd1-8882e2ec4fa2", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "0fd1eea6-a218-484c-8dd1-8882e2ec4fa2", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000088", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530022819.2433", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022821.2458", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "0fd1eea6-a218-484c-8dd1-8882e2ec4fa2", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000059;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530022819.2433", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022821.2455", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "22e41b1f-6a27-4ca6-83eb-ad276f281895", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "22e41b1f-6a27-4ca6-83eb-ad276f281895", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000059;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "ID550310", "Language": "en", "Linkedid": "f29ea68048f6-1530022819.2433", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022821.2453", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "22e41b1f-6a27-4ca6-83eb-ad276f281895", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000087", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_queue_step", "Event": "BridgeEnter", "Exten": "ID550310", "Language": "vg_nl_NL_F", "Linkedid": "f29ea68048f6-1530022819.2433", "Priority": "21", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022819.2433", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "0fd1eea6-a218-484c-8dd1-8882e2ec4fa2", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000088", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530022819.2433", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022821.2458", "content": ""}, + {"AccountCode": "", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "22e41b1f-6a27-4ca6-83eb-ad276f281895", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000059;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "ID550310", "Language": "en", "Linkedid": "f29ea68048f6-1530022819.2433", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022821.2453", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "22e41b1f-6a27-4ca6-83eb-ad276f281895", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000088", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530022819.2433", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "f29ea68048f6-1530022821.2453", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022821.2458", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "0fd1eea6-a218-484c-8dd1-8882e2ec4fa2", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000059;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530022819.2433", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022821.2455", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "0fd1eea6-a218-484c-8dd1-8882e2ec4fa2", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000059;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "f29ea68048f6-1530022819.2433", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022821.2455", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000089", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530022836.2474", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2474", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000089", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530022836.2474", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2474", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000089", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530022836.2474", "Priority": "5", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2474", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000089", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530022836.2474", "Priority": "6", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2474", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005a;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "f29ea68048f6-1530022836.2474", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2477", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005a;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "f29ea68048f6-1530022836.2474", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2479", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005a;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530022836.2474", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2477", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005a;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530022836.2474", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2477", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005a;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530022836.2474", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2477", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005a;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730151", "Language": "en", "Linkedid": "f29ea68048f6-1530022836.2474", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2479", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005a;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730151", "Language": "en", "Linkedid": "f29ea68048f6-1530022836.2474", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2479", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005a;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730151", "Language": "en", "Linkedid": "f29ea68048f6-1530022836.2474", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2479", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730151", "LocalOneAccountCode": "150010001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "202", "LocalOneChannel": "Local/ID730151@osvpi_route_phoneaccount-0000005a;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Andrew Garza", "LocalOneConnectedLineNum": "201", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "202", "LocalOneLanguage": "en", "LocalOneLinkedid": "f29ea68048f6-1530022836.2474", "LocalOnePriority": "1", "LocalOneUniqueid": "f29ea68048f6-1530022836.2477", "LocalOptimization": "Yes", "LocalTwoAccountCode": "150010001", "LocalTwoCallerIDName": "Andrew Garza", "LocalTwoCallerIDNum": "201", "LocalTwoChannel": "Local/ID730151@osvpi_route_phoneaccount-0000005a;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "202", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730151", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "f29ea68048f6-1530022836.2474", "LocalTwoPriority": "1", "LocalTwoUniqueid": "f29ea68048f6-1530022836.2479", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000089", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-0000005a;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "202", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530022836.2474", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530022836.2477", "DialString": "ID730151@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530022836.2474", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2474", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010002-0000008a", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "f29ea68048f6-1530022836.2474", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2482", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-0000008a", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530022836.2474", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2482", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-0000008a", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530022836.2474", "OldAccountCode": "150010002", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2482", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-0000008a", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530022836.2474", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2482", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005a;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "SIP/150010002-0000008a", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "202", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530022836.2474", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530022836.2482", "DialString": "150010002/150010002/172.20.0.13!!201", "Event": "DialBegin", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530022836.2474", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2479", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-0000008a", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530022836.2474", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2482", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005a;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530022836.2474", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2477", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-0000008a", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530022836.2474", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2482", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005a;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "SIP/150010002-0000008a", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530022836.2474", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530022836.2482", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530022836.2474", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2479", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005a;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530022836.2474", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2479", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005a;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530022836.2474", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2477", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "b339b862-500c-4528-82bc-211f3573a409", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "b339b862-500c-4528-82bc-211f3573a409", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-0000008a", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530022836.2474", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2482", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000089", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-0000005a;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530022836.2474", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530022836.2477", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530022836.2474", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2474", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "b339b862-500c-4528-82bc-211f3573a409", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005a;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530022836.2474", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2479", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000089", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530022836.2474", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2474", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2bfb02e7-a705-407c-a70b-fac640387de7", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2bfb02e7-a705-407c-a70b-fac640387de7", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005a;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530022836.2474", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2477", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2bfb02e7-a705-407c-a70b-fac640387de7", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000089", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530022836.2474", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2474", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "b339b862-500c-4528-82bc-211f3573a409", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-0000008a", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530022836.2474", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2482", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2bfb02e7-a705-407c-a70b-fac640387de7", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005a;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530022836.2474", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2477", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2bfb02e7-a705-407c-a70b-fac640387de7", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-0000008a", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530022836.2474", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "f29ea68048f6-1530022836.2477", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2482", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "b339b862-500c-4528-82bc-211f3573a409", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005a;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530022836.2474", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2479", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "b339b862-500c-4528-82bc-211f3573a409", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005a;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "f29ea68048f6-1530022836.2474", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2479", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005a;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530022836.2474", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2477", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2bfb02e7-a705-407c-a70b-fac640387de7", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-0000008a", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530022836.2474", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2482", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "22e41b1f-6a27-4ca6-83eb-ad276f281895", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000088", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530022819.2433", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022821.2458", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "22e41b1f-6a27-4ca6-83eb-ad276f281895", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-0000008a", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530022819.2433", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "f29ea68048f6-1530022821.2458", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2482", "content": ""}, + {"DestBridgeUniqueid": "22e41b1f-6a27-4ca6-83eb-ad276f281895", "DestType": "Bridge", "Event": "AttendedTransfer", "IsExternal": "No", "OrigBridgeCreator": "", "OrigBridgeName": "", "OrigBridgeNumChannels": "2", "OrigBridgeTechnology": "simple_bridge", "OrigBridgeType": "basic", "OrigBridgeUniqueid": "22e41b1f-6a27-4ca6-83eb-ad276f281895", "OrigBridgeVideoSourceMode": "none", "OrigTransfererAccountCode": "15001", "OrigTransfererCallerIDName": "", "OrigTransfererCallerIDNum": "+31150010001", "OrigTransfererChannel": "SIP/150010001-00000088", "OrigTransfererChannelState": "6", "OrigTransfererChannelStateDesc": "Up", "OrigTransfererConnectedLineName": "", "OrigTransfererConnectedLineNum": "+31260010001", "OrigTransfererContext": "osvpi_account", "OrigTransfererExten": "", "OrigTransfererLanguage": "nl", "OrigTransfererLinkedid": "f29ea68048f6-1530022819.2433", "OrigTransfererPriority": "1", "OrigTransfererUniqueid": "f29ea68048f6-1530022821.2458", "Privilege": "call,all", "Result": "Success", "SecondBridgeCreator": "", "SecondBridgeName": "", "SecondBridgeNumChannels": "2", "SecondBridgeTechnology": "simple_bridge", "SecondBridgeType": "basic", "SecondBridgeUniqueid": "2bfb02e7-a705-407c-a70b-fac640387de7", "SecondBridgeVideoSourceMode": "none", "SecondTransfererAccountCode": "150010001", "SecondTransfererCallerIDName": "Andrew Garza", "SecondTransfererCallerIDNum": "201", "SecondTransfererChannel": "SIP/150010001-00000089", "SecondTransfererChannelState": "6", "SecondTransfererChannelStateDesc": "Up", "SecondTransfererConnectedLineName": "", "SecondTransfererConnectedLineNum": "", "SecondTransfererContext": "osvpi_account_call_int", "SecondTransfererExten": "202", "SecondTransfererLanguage": "nl", "SecondTransfererLinkedid": "f29ea68048f6-1530022836.2474", "SecondTransfererPriority": "12", "SecondTransfererUniqueid": "f29ea68048f6-1530022836.2474", "SystemName": "f29ea68048f6", "TransferTargetAccountCode": "150010001", "TransferTargetCallerIDName": "", "TransferTargetCallerIDNum": "202", "TransferTargetChannel": "SIP/150010002-0000008a", "TransferTargetChannelState": "6", "TransferTargetChannelStateDesc": "Up", "TransferTargetConnectedLineName": "Andrew Garza", "TransferTargetConnectedLineNum": "201", "TransferTargetContext": "osvpi_account", "TransferTargetExten": "", "TransferTargetLanguage": "nl", "TransferTargetLinkedid": "f29ea68048f6-1530022836.2474", "TransferTargetPriority": "1", "TransferTargetUniqueid": "f29ea68048f6-1530022836.2482", "TransfereeAccountCode": "15001", "TransfereeCallerIDName": "", "TransfereeCallerIDNum": "+31260010001", "TransfereeChannel": "SIP/voipgrid-siproute-docker-00000087", "TransfereeChannelState": "6", "TransfereeChannelStateDesc": "Up", "TransfereeConnectedLineName": "", "TransfereeConnectedLineNum": "", "TransfereeContext": "osvpi_route_queue_step", "TransfereeExten": "ID550310", "TransfereeLanguage": "vg_nl_NL_F", "TransfereeLinkedid": "f29ea68048f6-1530022819.2433", "TransfereePriority": "21", "TransfereeUniqueid": "f29ea68048f6-1530022819.2433", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-0000008a", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530022819.2433", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2482", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010001-00000088", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530022819.2433", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022821.2458", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2bfb02e7-a705-407c-a70b-fac640387de7", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000089", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530022836.2474", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2474", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2bfb02e7-a705-407c-a70b-fac640387de7", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000087", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_queue_step", "Event": "NewConnectedLine", "Exten": "ID550310", "Language": "vg_nl_NL_F", "Linkedid": "f29ea68048f6-1530022819.2433", "Priority": "21", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022819.2433", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000059;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "ID550310", "Language": "en", "Linkedid": "f29ea68048f6-1530022819.2433", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022821.2453", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010001-00000089", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "f29ea68048f6-1530022836.2474", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2474", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "22e41b1f-6a27-4ca6-83eb-ad276f281895", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-0000008a", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530022819.2433", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2482", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "22e41b1f-6a27-4ca6-83eb-ad276f281895", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000087", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_queue_step", "Event": "BridgeLeave", "Exten": "ID550310", "Language": "vg_nl_NL_F", "Linkedid": "f29ea68048f6-1530022819.2433", "Priority": "21", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022819.2433", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010002-0000008a", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530022819.2433", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022836.2482", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "22e41b1f-6a27-4ca6-83eb-ad276f281895", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/voipgrid-siproute-docker-00000087", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "vg_nl_NL_F", "Linkedid": "f29ea68048f6-1530022819.2433", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530022819.2433", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "254c2c5c-de91-491d-8fbe-e12928d477f9", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""} ] diff --git a/tests/fixtures/queue/queue_blind_xfer.json b/tests/fixtures/queue/queue_blind_xfer.json index ecda547..2d3963c 100644 --- a/tests/fixtures/queue/queue_blind_xfer.json +++ b/tests/fixtures/queue/queue_blind_xfer.json @@ -1,69 +1,92 @@ [ - {"Status": "Fully Booted", "Event": "FullyBooted", "content": "", "Privilege": "system,all"}, - {"Status": "Fully Booted", "Event": "FullyBooted", "content": "", "Privilege": "system,all"}, - {"ChannelStateDesc": "Down", "ChannelState": "0", "Privilege": "call,all", "content": "", "CallerIDNum": "+31150010001", "Event": "Newchannel", "Exten": "+31150010004", "Channel": "SIP/voipgrid-siproute-docker-0000003e", "CallerIDName": "", "Context": "voipgrid_in", "AccountCode": "", "Uniqueid": "e83df36bebbe-1507042413.128"}, - {"ChannelStateDesc": "Ring", "Uniqueid": "e83df36bebbe-1507042413.128", "ConnectedLineName": "", "ChannelState": "4", "Channel": "SIP/voipgrid-siproute-docker-0000003e", "CallerIDName": "", "CallerIDNum": "+31150010001", "Event": "Newstate", "content": "", "Privilege": "call,all", "ConnectedLineNum": ""}, - {"Uniqueid": "e83df36bebbe-1507042413.128", "Channel": "SIP/voipgrid-siproute-docker-0000003e", "AccountCode": "15001", "Event": "NewAccountCode", "content": "", "Privilege": "call,all"}, - {"ChannelStateDesc": "Up", "Uniqueid": "e83df36bebbe-1507042413.128", "ConnectedLineName": "", "ChannelState": "6", "Channel": "SIP/voipgrid-siproute-docker-0000003e", "CallerIDName": "", "CallerIDNum": "+31150010001", "Event": "Newstate", "content": "", "Privilege": "call,all", "ConnectedLineNum": ""}, - {"ChannelStateDesc": "Down", "ChannelState": "0", "Privilege": "call,all", "content": "", "CallerIDNum": "", "Event": "Newchannel", "Exten": "ID690151", "Channel": "Local/ID690151@osvpi_route_phoneaccount-00000021;1", "CallerIDName": "", "Context": "osvpi_route_phoneaccount", "AccountCode": "", "Uniqueid": "e83df36bebbe-1507042415.129"}, - {"ChannelStateDesc": "Ring", "ChannelState": "4", "Privilege": "call,all", "content": "", "CallerIDNum": "", "Event": "Newchannel", "Exten": "ID690151", "Channel": "Local/ID690151@osvpi_route_phoneaccount-00000021;2", "CallerIDName": "", "Context": "osvpi_route_phoneaccount", "AccountCode": "", "Uniqueid": "e83df36bebbe-1507042415.130"}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Uniqueid": "e83df36bebbe-1507042415.129", "Channel": "Local/ID690151@osvpi_route_phoneaccount-00000021;1", "CallerIDName": "", "CallerIDNum": "+31150010004", "Event": "NewCallerid", "content": "", "Privilege": "call,all"}, - {"Channel2": "Local/ID690151@osvpi_route_phoneaccount-00000021;2", "Channel1": "Local/ID690151@osvpi_route_phoneaccount-00000021;1", "Uniqueid1": "e83df36bebbe-1507042415.129", "Privilege": "call,all", "LocalOptimization": "Yes", "Context": "osvpi_route_phoneaccount", "Exten": "ID690151", "Event": "LocalBridge", "content": "", "Uniqueid2": "e83df36bebbe-1507042415.130"}, - {"Queue": "1-3", "ChannelCalling": "SIP/voipgrid-siproute-docker-0000003e", "Event": "AgentCalled", "AgentName": "Local/ID690151@osvpi_route_phoneaccount", "Privilege": "agent,all", "Priority": "21", "AgentCalled": "Local/ID690151@osvpi_route_phoneaccount", "ConnectedLineName": "unknown", "Extension": "ID510320", "DestinationChannel": "Local/ID690151@osvpi_route_phoneaccount-00000021;1", "ConnectedLineNum": "unknown", "CallerIDName": "unknown", "Context": "osvpi_route_queue_step", "content": "", "CallerIDNum": "+31150010001", "Uniqueid": "e83df36bebbe-1507042413.128"}, - {"Uniqueid": "e83df36bebbe-1507042415.130", "UserEvent": "NotifyCallstate", "WebhookUrls": "", "AccountInternalNumber": "202", "content": "", "Event": "UserEvent", "AccountCode": "150010002", "Provider": "webhook", "Privilege": "user,all"}, - {"ChannelStateDesc": "Down", "ChannelState": "0", "Privilege": "call,all", "content": "", "CallerIDNum": "", "Event": "Newchannel", "Exten": "", "Channel": "SIP/150010002-0000003f", "CallerIDName": "", "Context": "osvpi_account", "AccountCode": "150010002", "Uniqueid": "e83df36bebbe-1507042415.131"}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Uniqueid": "e83df36bebbe-1507042415.131", "Channel": "SIP/150010002-0000003f", "CallerIDName": "", "CallerIDNum": "+31150010004", "Event": "NewCallerid", "content": "", "Privilege": "call,all"}, - {"SubEvent": "Begin", "Destination": "SIP/150010002-0000003f", "Event": "Dial", "DestUniqueID": "e83df36bebbe-1507042415.131", "Privilege": "call,all", "CallerIDNum": "+31150010001", "ConnectedLineName": "", "CallerIDName": "", "Channel": "Local/ID690151@osvpi_route_phoneaccount-00000021;2", "Dialstring": "150010002/150010002/172.20.0.13!!0150010001", "UniqueID": "e83df36bebbe-1507042415.130", "content": "", "ConnectedLineNum": "+31150010004"}, - {"ChannelStateDesc": "Ringing", "Uniqueid": "e83df36bebbe-1507042415.131", "ConnectedLineName": "", "ChannelState": "5", "Channel": "SIP/150010002-0000003f", "CallerIDName": "", "CallerIDNum": "+31150010004", "Event": "Newstate", "content": "", "Privilege": "call,all", "ConnectedLineNum": "+31150010001"}, - {"ChannelStateDesc": "Ringing", "Uniqueid": "e83df36bebbe-1507042415.129", "ConnectedLineName": "", "ChannelState": "5", "Channel": "Local/ID690151@osvpi_route_phoneaccount-00000021;1", "CallerIDName": "", "CallerIDNum": "+31150010004", "Event": "Newstate", "content": "", "Privilege": "call,all", "ConnectedLineNum": "+31150010001"}, - {"ChannelStateDesc": "Up", "Uniqueid": "e83df36bebbe-1507042415.131", "ConnectedLineName": "", "ChannelState": "6", "Channel": "SIP/150010002-0000003f", "CallerIDName": "", "CallerIDNum": "+31150010004", "Event": "Newstate", "content": "", "Privilege": "call,all", "ConnectedLineNum": "+31150010001"}, - {"ChannelStateDesc": "Up", "Uniqueid": "e83df36bebbe-1507042415.130", "ConnectedLineName": "", "ChannelState": "6", "Channel": "Local/ID690151@osvpi_route_phoneaccount-00000021;2", "CallerIDName": "", "CallerIDNum": "+31150010001", "Event": "Newstate", "content": "", "Privilege": "call,all", "ConnectedLineNum": "+31150010004"}, - {"ChannelStateDesc": "Up", "Uniqueid": "e83df36bebbe-1507042415.129", "ConnectedLineName": "", "ChannelState": "6", "Channel": "Local/ID690151@osvpi_route_phoneaccount-00000021;1", "CallerIDName": "", "CallerIDNum": "+31150010004", "Event": "Newstate", "content": "", "Privilege": "call,all", "ConnectedLineNum": "+31150010001"}, - {"Uniqueid": "e83df36bebbe-1507042415.131", "Channel": "SIP/150010002-0000003f", "AccountCode": "", "OldAccountCode": "150010002", "Event": "NewAccountCode", "content": "", "Privilege": "call,all"}, - {"Channel2": "SIP/150010002-0000003f", "Bridgetype": "core", "Uniqueid1": "e83df36bebbe-1507042415.130", "CallerID1": "+31150010001", "Channel1": "Local/ID690151@osvpi_route_phoneaccount-00000021;2", "Bridgestate": "Link", "Event": "Bridge", "content": "", "Uniqueid2": "e83df36bebbe-1507042415.131", "CallerID2": "+31150010004", "Privilege": "call,all"}, - {"Uniqueid": "e83df36bebbe-1507042415.129", "Channel": "Local/ID690151@osvpi_route_phoneaccount-00000021;1", "AccountCode": "15001", "Event": "NewAccountCode", "content": "", "Privilege": "call,all"}, - {"Channel2": "Local/ID690151@osvpi_route_phoneaccount-00000021;1", "Bridgetype": "core", "Uniqueid1": "e83df36bebbe-1507042413.128", "CallerID1": "+31150010001", "Channel1": "SIP/voipgrid-siproute-docker-0000003e", "Bridgestate": "Link", "Event": "Bridge", "content": "", "Uniqueid2": "e83df36bebbe-1507042415.129", "CallerID2": "+31150010004", "Privilege": "call,all"}, - {"Privilege": "call,all", "CloneState": "Up", "content": "", "Event": "Masquerade", "Original": "Local/ID690151@osvpi_route_phoneaccount-00000021;1", "Clone": "SIP/150010002-0000003f", "OriginalState": "Up"}, - {"Uniqueid": "e83df36bebbe-1507042415.131", "Newname": "SIP/150010002-0000003f", "Channel": "SIP/150010002-0000003f", "Event": "Rename", "content": "", "Privilege": "call,all"}, - {"Uniqueid": "e83df36bebbe-1507042415.129", "Newname": "SIP/150010002-0000003f", "Channel": "Local/ID690151@osvpi_route_phoneaccount-00000021;1", "Event": "Rename", "content": "", "Privilege": "call,all"}, - {"Uniqueid": "e83df36bebbe-1507042415.131", "Newname": "Local/ID690151@osvpi_route_phoneaccount-00000021;1", "Channel": "SIP/150010002-0000003f", "Event": "Rename", "content": "", "Privilege": "call,all"}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Uniqueid": "e83df36bebbe-1507042415.129", "Channel": "SIP/150010002-0000003f", "CallerIDName": "", "CallerIDNum": "+31150010004", "Event": "NewCallerid", "content": "", "Privilege": "call,all"}, - {"Channel2": "Local/ID690151@osvpi_route_phoneaccount-00000021;1", "Bridgetype": "core", "Uniqueid1": "e83df36bebbe-1507042415.130", "CallerID1": "+31150010001", "Channel1": "Local/ID690151@osvpi_route_phoneaccount-00000021;2", "Bridgestate": "Unlink", "Event": "Bridge", "content": "", "Uniqueid2": "e83df36bebbe-1507042415.131", "CallerID2": "+31150010004", "Privilege": "call,all"}, - {"Event": "Hangup", "Uniqueid": "e83df36bebbe-1507042415.131", "Cause": "16", "CallerIDNum": "+31150010004", "ConnectedLineName": "", "content": "", "Privilege": "call,all", "ConnectedLineNum": "+31150010001", "CallerIDName": "", "Cause-txt": "Normal Clearing", "AccountCode": "", "Channel": "Local/ID690151@osvpi_route_phoneaccount-00000021;1"}, - {"SubEvent": "End", "DialStatus": "ANSWER", "UniqueID": "e83df36bebbe-1507042415.130", "Channel": "Local/ID690151@osvpi_route_phoneaccount-00000021;2", "Event": "Dial", "content": "", "Privilege": "call,all"}, - {"Event": "Hangup", "Uniqueid": "e83df36bebbe-1507042415.130", "Cause": "16", "CallerIDNum": "+31150010001", "ConnectedLineName": "", "content": "", "Privilege": "call,all", "ConnectedLineNum": "+31150010004", "CallerIDName": "", "Cause-txt": "Normal Clearing", "AccountCode": "", "Channel": "Local/ID690151@osvpi_route_phoneaccount-00000021;2"}, - {"TargetChannel": "SIP/voipgrid-siproute-docker-0000003e", "Privilege": "call,all", "TransferContext": "osvpi_account_transfer", "Event": "Transfer", "TransferMethod": "SIP", "TargetUniqueid": "e83df36bebbe-1507042413.128", "TransferExten": "203", "TransferType": "Blind", "Channel": "SIP/150010002-0000003f", "SIP-Callid": "086a53797dbf1e610e6ebb8e11538e9d@test.voipgrid.nl", "content": "", "Uniqueid": "e83df36bebbe-1507042415.129"}, - {"Channel2": "SIP/150010002-0000003f", "Bridgetype": "core", "Uniqueid1": "e83df36bebbe-1507042413.128", "CallerID1": "+31150010001", "Channel1": "SIP/voipgrid-siproute-docker-0000003e", "Bridgestate": "Unlink", "Event": "Bridge", "content": "", "Uniqueid2": "e83df36bebbe-1507042415.129", "CallerID2": "+31150010004", "Privilege": "call,all"}, - {"Event": "Hangup", "Uniqueid": "e83df36bebbe-1507042415.129", "Cause": "16", "CallerIDNum": "+31150010004", "ConnectedLineName": "", "content": "", "Privilege": "call,all", "ConnectedLineNum": "+31150010001", "CallerIDName": "", "Cause-txt": "Normal Clearing", "AccountCode": "", "Channel": "SIP/150010002-0000003f"}, - {"Uniqueid": "e83df36bebbe-1507042413.128", "Channel": "SIP/voipgrid-siproute-docker-0000003e", "AccountCode": "150010002", "OldAccountCode": "15001", "Event": "NewAccountCode", "content": "", "Privilege": "call,all"}, - {"ChannelStateDesc": "Down", "ChannelState": "0", "Privilege": "call,all", "content": "", "CallerIDNum": "", "Event": "Newchannel", "Exten": "ID690152", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000022;1", "CallerIDName": "", "Context": "osvpi_route_phoneaccount", "AccountCode": "", "Uniqueid": "e83df36bebbe-1507042428.132"}, - {"ChannelStateDesc": "Ring", "ChannelState": "4", "Privilege": "call,all", "content": "", "CallerIDNum": "", "Event": "Newchannel", "Exten": "ID690152", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000022;2", "CallerIDName": "", "Context": "osvpi_route_phoneaccount", "AccountCode": "", "Uniqueid": "e83df36bebbe-1507042428.133"}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Uniqueid": "e83df36bebbe-1507042428.132", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000022;1", "CallerIDName": "", "CallerIDNum": "203", "Event": "NewCallerid", "content": "", "Privilege": "call,all"}, - {"Channel2": "Local/ID690152@osvpi_route_phoneaccount-00000022;2", "Channel1": "Local/ID690152@osvpi_route_phoneaccount-00000022;1", "Uniqueid1": "e83df36bebbe-1507042428.132", "Privilege": "call,all", "LocalOptimization": "Yes", "Context": "osvpi_route_phoneaccount", "Exten": "ID690152", "Event": "LocalBridge", "content": "", "Uniqueid2": "e83df36bebbe-1507042428.133"}, - {"SubEvent": "Begin", "Destination": "Local/ID690152@osvpi_route_phoneaccount-00000022;1", "Event": "Dial", "DestUniqueID": "e83df36bebbe-1507042428.132", "Privilege": "call,all", "CallerIDNum": "+31150010001", "ConnectedLineName": "", "CallerIDName": "", "Channel": "SIP/voipgrid-siproute-docker-0000003e", "Dialstring": "ID690152@osvpi_route_phoneaccount", "UniqueID": "e83df36bebbe-1507042413.128", "content": "", "ConnectedLineNum": ""}, - {"ChannelStateDesc": "Down", "ChannelState": "0", "Privilege": "call,all", "content": "", "CallerIDNum": "", "Event": "Newchannel", "Exten": "", "Channel": "SIP/150010003-00000040", "CallerIDName": "", "Context": "osvpi_account", "AccountCode": "150010003", "Uniqueid": "e83df36bebbe-1507042428.134"}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Uniqueid": "e83df36bebbe-1507042428.134", "Channel": "SIP/150010003-00000040", "CallerIDName": "", "CallerIDNum": "203", "Event": "NewCallerid", "content": "", "Privilege": "call,all"}, - {"SubEvent": "Begin", "Destination": "SIP/150010003-00000040", "Event": "Dial", "DestUniqueID": "e83df36bebbe-1507042428.134", "Privilege": "call,all", "CallerIDNum": "+31150010001", "ConnectedLineName": "", "CallerIDName": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000022;2", "Dialstring": "150010003/150010003/172.20.0.13!!0150010001", "UniqueID": "e83df36bebbe-1507042428.133", "content": "", "ConnectedLineNum": "203"}, - {"ChannelStateDesc": "Ringing", "Uniqueid": "e83df36bebbe-1507042428.134", "ConnectedLineName": "", "ChannelState": "5", "Channel": "SIP/150010003-00000040", "CallerIDName": "", "CallerIDNum": "203", "Event": "Newstate", "content": "", "Privilege": "call,all", "ConnectedLineNum": "+31150010001"}, - {"ChannelStateDesc": "Ringing", "Uniqueid": "e83df36bebbe-1507042428.132", "ConnectedLineName": "", "ChannelState": "5", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000022;1", "CallerIDName": "", "CallerIDNum": "203", "Event": "Newstate", "content": "", "Privilege": "call,all", "ConnectedLineNum": "+31150010001"}, - {"ChannelStateDesc": "Up", "Uniqueid": "e83df36bebbe-1507042428.134", "ConnectedLineName": "", "ChannelState": "6", "Channel": "SIP/150010003-00000040", "CallerIDName": "", "CallerIDNum": "203", "Event": "Newstate", "content": "", "Privilege": "call,all", "ConnectedLineNum": "+31150010001"}, - {"ChannelStateDesc": "Up", "Uniqueid": "e83df36bebbe-1507042428.133", "ConnectedLineName": "", "ChannelState": "6", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000022;2", "CallerIDName": "", "CallerIDNum": "+31150010001", "Event": "Newstate", "content": "", "Privilege": "call,all", "ConnectedLineNum": "203"}, - {"ChannelStateDesc": "Up", "Uniqueid": "e83df36bebbe-1507042428.132", "ConnectedLineName": "", "ChannelState": "6", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000022;1", "CallerIDName": "", "CallerIDNum": "203", "Event": "Newstate", "content": "", "Privilege": "call,all", "ConnectedLineNum": "+31150010001"}, - {"Uniqueid": "e83df36bebbe-1507042428.134", "Channel": "SIP/150010003-00000040", "AccountCode": "150010002", "OldAccountCode": "150010002", "Event": "NewAccountCode", "content": "", "Privilege": "call,all"}, - {"Uniqueid": "e83df36bebbe-1507042428.132", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000022;1", "AccountCode": "150010002", "OldAccountCode": "150010002", "Event": "NewAccountCode", "content": "", "Privilege": "call,all"}, - {"Channel2": "Local/ID690152@osvpi_route_phoneaccount-00000022;1", "Bridgetype": "core", "Uniqueid1": "e83df36bebbe-1507042413.128", "CallerID1": "+31150010001", "Channel1": "SIP/voipgrid-siproute-docker-0000003e", "Bridgestate": "Link", "Event": "Bridge", "content": "", "Uniqueid2": "e83df36bebbe-1507042428.132", "CallerID2": "203", "Privilege": "call,all"}, - {"Channel2": "SIP/150010003-00000040", "Bridgetype": "core", "Uniqueid1": "e83df36bebbe-1507042428.133", "CallerID1": "+31150010001", "Channel1": "Local/ID690152@osvpi_route_phoneaccount-00000022;2", "Bridgestate": "Link", "Event": "Bridge", "content": "", "Uniqueid2": "e83df36bebbe-1507042428.134", "CallerID2": "203", "Privilege": "call,all"}, - {"Privilege": "call,all", "CloneState": "Up", "content": "", "Event": "Masquerade", "Original": "Local/ID690152@osvpi_route_phoneaccount-00000022;1", "Clone": "SIP/150010003-00000040", "OriginalState": "Up"}, - {"Uniqueid": "e83df36bebbe-1507042428.134", "Newname": "SIP/150010003-00000040", "Channel": "SIP/150010003-00000040", "Event": "Rename", "content": "", "Privilege": "call,all"}, - {"Uniqueid": "e83df36bebbe-1507042428.132", "Newname": "SIP/150010003-00000040", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000022;1", "Event": "Rename", "content": "", "Privilege": "call,all"}, - {"Uniqueid": "e83df36bebbe-1507042428.134", "Newname": "Local/ID690152@osvpi_route_phoneaccount-00000022;1", "Channel": "SIP/150010003-00000040", "Event": "Rename", "content": "", "Privilege": "call,all"}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Uniqueid": "e83df36bebbe-1507042428.132", "Channel": "SIP/150010003-00000040", "CallerIDName": "", "CallerIDNum": "203", "Event": "NewCallerid", "content": "", "Privilege": "call,all"}, - {"Channel2": "Local/ID690152@osvpi_route_phoneaccount-00000022;1", "Bridgetype": "core", "Uniqueid1": "e83df36bebbe-1507042428.133", "CallerID1": "+31150010001", "Channel1": "Local/ID690152@osvpi_route_phoneaccount-00000022;2", "Bridgestate": "Unlink", "Event": "Bridge", "content": "", "Uniqueid2": "e83df36bebbe-1507042428.134", "CallerID2": "203", "Privilege": "call,all"}, - {"Event": "Hangup", "Uniqueid": "e83df36bebbe-1507042428.134", "Cause": "16", "CallerIDNum": "203", "ConnectedLineName": "", "content": "", "Privilege": "call,all", "ConnectedLineNum": "+31150010001", "CallerIDName": "", "Cause-txt": "Normal Clearing", "AccountCode": "150010002", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000022;1"}, - {"SubEvent": "End", "DialStatus": "ANSWER", "UniqueID": "e83df36bebbe-1507042428.133", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000022;2", "Event": "Dial", "content": "", "Privilege": "call,all"}, - {"Event": "Hangup", "Uniqueid": "e83df36bebbe-1507042428.133", "Cause": "16", "CallerIDNum": "+31150010001", "ConnectedLineName": "", "content": "", "Privilege": "call,all", "ConnectedLineNum": "203", "CallerIDName": "", "Cause-txt": "Normal Clearing", "AccountCode": "150010002", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000022;2"}, - {"Channel2": "SIP/150010003-00000040", "Bridgetype": "core", "Uniqueid1": "e83df36bebbe-1507042413.128", "CallerID1": "+31150010001", "Channel1": "SIP/voipgrid-siproute-docker-0000003e", "Bridgestate": "Unlink", "Event": "Bridge", "content": "", "Uniqueid2": "e83df36bebbe-1507042428.132", "CallerID2": "203", "Privilege": "call,all"}, - {"Event": "Hangup", "Uniqueid": "e83df36bebbe-1507042428.132", "Cause": "16", "CallerIDNum": "203", "ConnectedLineName": "", "content": "", "Privilege": "call,all", "ConnectedLineNum": "+31150010001", "CallerIDName": "", "Cause-txt": "Normal Clearing", "AccountCode": "150010002", "Channel": "SIP/150010003-00000040"}, - {"SubEvent": "End", "DialStatus": "ANSWER", "UniqueID": "e83df36bebbe-1507042413.128", "Channel": "SIP/voipgrid-siproute-docker-0000003e", "Event": "Dial", "content": "", "Privilege": "call,all"}, - {"Event": "Hangup", "Uniqueid": "e83df36bebbe-1507042413.128", "Cause": "16", "CallerIDNum": "+31150010001", "ConnectedLineName": "", "content": "", "Privilege": "call,all", "ConnectedLineNum": "", "CallerIDName": "", "Cause-txt": "Normal Clearing", "AccountCode": "150010002", "Channel": "SIP/voipgrid-siproute-docker-0000003e"} + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-0000008d", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newchannel", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023464.2539", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-0000008d", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023464.2539", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-0000008d", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "10", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023464.2539", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-0000008d", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_lazyanswer", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "2", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023464.2539", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "196f0d2b-152f-453d-898d-a994a9657b92", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "fb9661fd-4558-4be4-8982-cd1af0eb6862", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "fb9661fd-4558-4be4-8982-cd1af0eb6862", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000005c;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730150", "Language": "en", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023466.2559", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000005c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730150", "Language": "en", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023466.2561", "content": ""}, + {"AccountCode": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000005c;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730150", "Language": "en", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023466.2559", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000005c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730150", "Language": "en", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023466.2561", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000005c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730150", "Language": "en", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023466.2561", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000005c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730150", "Language": "en", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023466.2561", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730150", "LocalOneAccountCode": "", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31150010001", "LocalOneChannel": "Local/ID730150@osvpi_route_phoneaccount-0000005c;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "ID730150", "LocalOneLanguage": "en", "LocalOneLinkedid": "f29ea68048f6-1530023464.2539", "LocalOnePriority": "1", "LocalOneUniqueid": "f29ea68048f6-1530023466.2559", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31260010001", "LocalTwoChannel": "Local/ID730150@osvpi_route_phoneaccount-0000005c;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31150010001", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730150", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "f29ea68048f6-1530023464.2539", "LocalTwoPriority": "1", "LocalTwoUniqueid": "f29ea68048f6-1530023466.2561", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-0000008d", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_queue_step", "DestAccountCode": "", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/ID730150@osvpi_route_phoneaccount-0000005c;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "", "DestContext": "osvpi_route_phoneaccount", "DestExten": "ID730150", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530023464.2539", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530023466.2559", "DialString": "Local/ID730150@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "ID550310", "Language": "vg_nl_NL_F", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "21", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023464.2539", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010001-0000008e", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023466.2564", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-0000008e", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023466.2564", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-0000008e", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530023464.2539", "OldAccountCode": "150010001", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023466.2564", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-0000008e", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023466.2564", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000005c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "SIP/150010001-0000008e", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "+31150010001", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530023464.2539", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530023466.2564", "DialString": "150010001/150010001/172.20.0.13!!0260010001", "Event": "DialBegin", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023466.2561", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-0000008e", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023466.2564", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000005c;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "ID550310", "Language": "en", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023466.2559", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000005c;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID550310", "Language": "en", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023466.2559", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-0000008e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023466.2564", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000005c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "SIP/150010001-0000008e", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530023464.2539", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530023466.2564", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023466.2561", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000005c;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023466.2561", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000005c;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "ID550310", "Language": "en", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023466.2559", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-0000008d", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_queue_step", "DestAccountCode": "", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/ID730150@osvpi_route_phoneaccount-0000005c;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "ID550310", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530023464.2539", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530023466.2559", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "ID550310", "Language": "vg_nl_NL_F", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "21", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023464.2539", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "51cdac13-4747-4baa-a62d-0715c8348683", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "51cdac13-4747-4baa-a62d-0715c8348683", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-0000008e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023466.2564", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "51cdac13-4747-4baa-a62d-0715c8348683", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000005c;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023466.2561", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "196e3510-2594-4c44-b51f-96bb8e0ec2ca", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "196e3510-2594-4c44-b51f-96bb8e0ec2ca", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000005c;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "ID550310", "Language": "en", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023466.2559", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "196e3510-2594-4c44-b51f-96bb8e0ec2ca", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-0000008d", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_queue_step", "Event": "BridgeEnter", "Exten": "ID550310", "Language": "vg_nl_NL_F", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "21", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023464.2539", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "51cdac13-4747-4baa-a62d-0715c8348683", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-0000008e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023466.2564", "content": ""}, + {"AccountCode": "", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "196e3510-2594-4c44-b51f-96bb8e0ec2ca", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000005c;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "ID550310", "Language": "en", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023466.2559", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "196e3510-2594-4c44-b51f-96bb8e0ec2ca", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-0000008e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "f29ea68048f6-1530023466.2559", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023466.2564", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "51cdac13-4747-4baa-a62d-0715c8348683", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000005c;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023466.2561", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "51cdac13-4747-4baa-a62d-0715c8348683", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000005c;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023466.2561", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "196e3510-2594-4c44-b51f-96bb8e0ec2ca", "BridgeVideoSourceMode": "none", "Context": "osvpi_account_transfer", "Event": "BlindTransfer", "Extension": "202", "IsExternal": "Yes", "Privilege": "call,all", "Result": "Success", "SystemName": "f29ea68048f6", "TransfereeAccountCode": "15001", "TransfereeCallerIDName": "", "TransfereeCallerIDNum": "+31260010001", "TransfereeChannel": "SIP/voipgrid-siproute-docker-0000008d", "TransfereeChannelState": "6", "TransfereeChannelStateDesc": "Up", "TransfereeConnectedLineName": "", "TransfereeConnectedLineNum": "", "TransfereeContext": "osvpi_route_queue_step", "TransfereeExten": "ID550310", "TransfereeLanguage": "vg_nl_NL_F", "TransfereeLinkedid": "f29ea68048f6-1530023464.2539", "TransfereePriority": "21", "TransfereeUniqueid": "f29ea68048f6-1530023464.2539", "TransfererAccountCode": "15001", "TransfererCallerIDName": "", "TransfererCallerIDNum": "+31150010001", "TransfererChannel": "SIP/150010001-0000008e", "TransfererChannelState": "6", "TransfererChannelStateDesc": "Up", "TransfererConnectedLineName": "", "TransfererConnectedLineNum": "+31260010001", "TransfererContext": "osvpi_account", "TransfererExten": "", "TransfererLanguage": "nl", "TransfererLinkedid": "f29ea68048f6-1530023464.2539", "TransfererPriority": "1", "TransfererUniqueid": "f29ea68048f6-1530023466.2564", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "196e3510-2594-4c44-b51f-96bb8e0ec2ca", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-0000008e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023466.2564", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000005c;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "ID550310", "Language": "en", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023466.2559", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010001-0000008e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023466.2564", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "196e3510-2594-4c44-b51f-96bb8e0ec2ca", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-0000008d", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_transfer", "Event": "BridgeLeave", "Exten": "202", "Language": "vg_nl_NL_F", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023464.2539", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "196e3510-2594-4c44-b51f-96bb8e0ec2ca", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-0000008d", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_transfer", "Event": "NewAccountCode", "Exten": "202", "Language": "vg_nl_NL_F", "Linkedid": "f29ea68048f6-1530023464.2539", "OldAccountCode": "15001", "Priority": "23", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023464.2539", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023472.2588", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023472.2590", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023472.2588", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023472.2588", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023472.2588", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730151", "Language": "en", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023472.2590", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730151", "Language": "en", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023472.2590", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730151", "Language": "en", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023472.2590", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730151", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "202", "LocalOneChannel": "Local/ID730151@osvpi_route_phoneaccount-0000005d;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31260010001", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "202", "LocalOneLanguage": "en", "LocalOneLinkedid": "f29ea68048f6-1530023464.2539", "LocalOnePriority": "1", "LocalOneUniqueid": "f29ea68048f6-1530023472.2588", "LocalOptimization": "Yes", "LocalTwoAccountCode": "150010001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31260010001", "LocalTwoChannel": "Local/ID730151@osvpi_route_phoneaccount-0000005d;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "202", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730151", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "f29ea68048f6-1530023464.2539", "LocalTwoPriority": "1", "LocalTwoUniqueid": "f29ea68048f6-1530023472.2590", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-0000008d", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-0000005d;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "202", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530023464.2539", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530023472.2588", "DialString": "ID730151@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "202", "Language": "vg_nl_NL_F", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023464.2539", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010002-0000008f", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023472.2593", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-0000008f", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023472.2593", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-0000008f", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530023464.2539", "OldAccountCode": "150010002", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023472.2593", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-0000008f", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023472.2593", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "SIP/150010002-0000008f", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "202", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530023464.2539", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530023472.2593", "DialString": "150010002/150010002/172.20.0.13!!0260010001", "Event": "DialBegin", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023472.2590", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-0000008f", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023472.2593", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005d;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023472.2588", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-0000008f", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023472.2593", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "SIP/150010002-0000008f", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530023464.2539", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530023472.2593", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023472.2590", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005d;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023472.2590", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023472.2588", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "bd6ee82c-9dfb-4882-8dfd-12f1b7fcdc71", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-0000008d", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-0000005d;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530023464.2539", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530023472.2588", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "202", "Language": "vg_nl_NL_F", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023464.2539", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "bd6ee82c-9dfb-4882-8dfd-12f1b7fcdc71", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-0000008f", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023472.2593", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "9f3d2a6e-b906-46f8-aa35-76cce525f486", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "bd6ee82c-9dfb-4882-8dfd-12f1b7fcdc71", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005d;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023472.2590", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "9f3d2a6e-b906-46f8-aa35-76cce525f486", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023472.2588", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "9f3d2a6e-b906-46f8-aa35-76cce525f486", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-0000008d", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "202", "Language": "vg_nl_NL_F", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023464.2539", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "bd6ee82c-9dfb-4882-8dfd-12f1b7fcdc71", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-0000008f", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023472.2593", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "9f3d2a6e-b906-46f8-aa35-76cce525f486", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023472.2588", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "9f3d2a6e-b906-46f8-aa35-76cce525f486", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-0000008f", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "f29ea68048f6-1530023472.2588", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023472.2593", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "bd6ee82c-9dfb-4882-8dfd-12f1b7fcdc71", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005d;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023472.2590", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "bd6ee82c-9dfb-4882-8dfd-12f1b7fcdc71", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "202", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023472.2588", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005d;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023472.2590", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "196f0d2b-152f-453d-898d-a994a9657b92", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "9f3d2a6e-b906-46f8-aa35-76cce525f486", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-0000008d", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "202", "Language": "vg_nl_NL_F", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023464.2539", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "9f3d2a6e-b906-46f8-aa35-76cce525f486", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-0000008f", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023472.2593", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "9f3d2a6e-b906-46f8-aa35-76cce525f486", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/voipgrid-siproute-docker-0000008d", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "vg_nl_NL_F", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023464.2539", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "202", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010002-0000008f", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530023464.2539", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023472.2593", "content": ""} ] diff --git a/tests/fixtures/queue/queue_group.json b/tests/fixtures/queue/queue_group.json index 91fae1a..cb9f9ef 100644 --- a/tests/fixtures/queue/queue_group.json +++ b/tests/fixtures/queue/queue_group.json @@ -1,53 +1,73 @@ [ - {"Privilege": "system,all", "Event": "FullyBooted", "content": "", "Status": "Fully Booted"}, - {"Privilege": "system,all", "Event": "FullyBooted", "content": "", "Status": "Fully Booted"}, - {"Context": "voipgrid_in", "Exten": "+31150010004", "content": "", "Channel": "SIP/voipgrid-siproute-docker-00000021", "Privilege": "call,all", "Event": "Newchannel", "Uniqueid": "e83df36bebbe-1507022898.69", "CallerIDNum": "+31150010002", "CallerIDName": "", "AccountCode": "", "ChannelStateDesc": "Down", "ChannelState": "0"}, - {"Uniqueid": "e83df36bebbe-1507022898.69", "ChannelStateDesc": "Ring", "CallerIDNum": "+31150010002", "CallerIDName": "", "content": "", "Event": "Newstate", "ConnectedLineNum": "", "Channel": "SIP/voipgrid-siproute-docker-00000021", "ChannelState": "4", "ConnectedLineName": "", "Privilege": "call,all"}, - {"Uniqueid": "e83df36bebbe-1507022898.69", "content": "", "AccountCode": "15001", "Channel": "SIP/voipgrid-siproute-docker-00000021", "Privilege": "call,all", "Event": "NewAccountCode"}, - {"Uniqueid": "e83df36bebbe-1507022898.69", "ChannelStateDesc": "Up", "CallerIDNum": "+31150010002", "CallerIDName": "", "content": "", "Event": "Newstate", "ConnectedLineNum": "", "Channel": "SIP/voipgrid-siproute-docker-00000021", "ChannelState": "6", "ConnectedLineName": "", "Privilege": "call,all"}, - {"Context": "osvpi_route_phoneaccount", "Exten": "ID690152", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;1", "Privilege": "call,all", "Event": "Newchannel", "Uniqueid": "e83df36bebbe-1507022901.70", "CallerIDNum": "", "CallerIDName": "", "AccountCode": "", "ChannelStateDesc": "Down", "ChannelState": "0"}, - {"Context": "osvpi_route_phoneaccount", "Exten": "ID690152", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Privilege": "call,all", "Event": "Newchannel", "Uniqueid": "e83df36bebbe-1507022901.71", "CallerIDNum": "", "CallerIDName": "", "AccountCode": "", "ChannelStateDesc": "Ring", "ChannelState": "4"}, - {"Uniqueid": "e83df36bebbe-1507022901.70", "CallerIDNum": "+31150010004", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": "", "CallerIDName": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;1", "Event": "NewCallerid", "Privilege": "call,all"}, - {"LocalOptimization": "Yes", "Context": "osvpi_route_phoneaccount", "Exten": "ID690152", "content": "", "Channel2": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "LocalBridge", "Uniqueid2": "e83df36bebbe-1507022901.71", "Privilege": "call,all", "Channel1": "Local/ID690152@osvpi_route_phoneaccount-00000012;1", "Uniqueid1": "e83df36bebbe-1507022901.70"}, - {"DestinationChannel": "Local/ID690152@osvpi_route_phoneaccount-00000012;1", "Context": "osvpi_route_queue_step", "content": "", "Extension": "ID510320", "AgentName": "Local/ID690152@osvpi_route_phoneaccount", "Uniqueid": "e83df36bebbe-1507022898.69", "AgentCalled": "Local/ID690152@osvpi_route_phoneaccount", "ConnectedLineName": "unknown", "Privilege": "agent,all", "Queue": "1-2", "Priority": "21", "CallerIDNum": "+31150010002", "CallerIDName": "unknown", "Event": "AgentCalled", "ConnectedLineNum": "unknown", "ChannelCalling": "SIP/voipgrid-siproute-docker-00000021"}, - {"Context": "osvpi_route_phoneaccount", "Exten": "ID690150", "content": "", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000013;1", "Privilege": "call,all", "Event": "Newchannel", "Uniqueid": "e83df36bebbe-1507022901.72", "CallerIDNum": "", "CallerIDName": "", "AccountCode": "", "ChannelStateDesc": "Down", "ChannelState": "0"}, - {"Context": "osvpi_route_phoneaccount", "Exten": "ID690150", "content": "", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000013;2", "Privilege": "call,all", "Event": "Newchannel", "Uniqueid": "e83df36bebbe-1507022901.73", "CallerIDNum": "", "CallerIDName": "", "AccountCode": "", "ChannelStateDesc": "Ring", "ChannelState": "4"}, - {"Uniqueid": "e83df36bebbe-1507022901.72", "CallerIDNum": "+31150010004", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": "", "CallerIDName": "", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000013;1", "Event": "NewCallerid", "Privilege": "call,all"}, - {"LocalOptimization": "Yes", "Context": "osvpi_route_phoneaccount", "Exten": "ID690150", "content": "", "Channel2": "Local/ID690150@osvpi_route_phoneaccount-00000013;2", "Event": "LocalBridge", "Uniqueid2": "e83df36bebbe-1507022901.73", "Privilege": "call,all", "Channel1": "Local/ID690150@osvpi_route_phoneaccount-00000013;1", "Uniqueid1": "e83df36bebbe-1507022901.72"}, - {"DestinationChannel": "Local/ID690150@osvpi_route_phoneaccount-00000013;1", "Context": "osvpi_route_queue_step", "content": "", "Extension": "ID510320", "AgentName": "Local/ID690150@osvpi_route_phoneaccount", "Uniqueid": "e83df36bebbe-1507022898.69", "AgentCalled": "Local/ID690150@osvpi_route_phoneaccount", "ConnectedLineName": "unknown", "Privilege": "agent,all", "Queue": "1-2", "Priority": "21", "CallerIDNum": "+31150010002", "CallerIDName": "unknown", "Event": "AgentCalled", "ConnectedLineNum": "unknown", "ChannelCalling": "SIP/voipgrid-siproute-docker-00000021"}, - {"Context": "osvpi_account", "Exten": "", "content": "", "Channel": "SIP/150010003-00000022", "Privilege": "call,all", "Event": "Newchannel", "Uniqueid": "e83df36bebbe-1507022901.74", "CallerIDNum": "", "CallerIDName": "", "AccountCode": "150010003", "ChannelStateDesc": "Down", "ChannelState": "0"}, - {"Uniqueid": "e83df36bebbe-1507022901.74", "CallerIDNum": "+31150010004", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": "", "CallerIDName": "", "Channel": "SIP/150010003-00000022", "Event": "NewCallerid", "Privilege": "call,all"}, - {"content": "", "DestUniqueID": "e83df36bebbe-1507022901.74", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "Dial", "ConnectedLineName": "", "Privilege": "call,all", "CallerIDNum": "+31150010002", "CallerIDName": "", "SubEvent": "Begin", "UniqueID": "e83df36bebbe-1507022901.71", "Dialstring": "150010003/150010003/172.20.0.13!!0150010002", "ConnectedLineNum": "+31150010004", "Destination": "SIP/150010003-00000022"}, - {"Context": "osvpi_account", "Exten": "", "content": "", "Channel": "SIP/150010001-00000023", "Privilege": "call,all", "Event": "Newchannel", "Uniqueid": "e83df36bebbe-1507022901.75", "CallerIDNum": "", "CallerIDName": "", "AccountCode": "150010001", "ChannelStateDesc": "Down", "ChannelState": "0"}, - {"Uniqueid": "e83df36bebbe-1507022901.75", "CallerIDNum": "+31150010004", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": "", "CallerIDName": "", "Channel": "SIP/150010001-00000023", "Event": "NewCallerid", "Privilege": "call,all"}, - {"content": "", "DestUniqueID": "e83df36bebbe-1507022901.75", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000013;2", "Event": "Dial", "ConnectedLineName": "", "Privilege": "call,all", "CallerIDNum": "+31150010002", "CallerIDName": "", "SubEvent": "Begin", "UniqueID": "e83df36bebbe-1507022901.73", "Dialstring": "150010001/150010001/172.20.0.13!!0150010002", "ConnectedLineNum": "+31150010004", "Destination": "SIP/150010001-00000023"}, - {"Uniqueid": "e83df36bebbe-1507022901.75", "ChannelStateDesc": "Ringing", "CallerIDNum": "+31150010004", "CallerIDName": "", "content": "", "Event": "Newstate", "ConnectedLineNum": "+31150010002", "Channel": "SIP/150010001-00000023", "ChannelState": "5", "ConnectedLineName": "", "Privilege": "call,all"}, - {"Uniqueid": "e83df36bebbe-1507022901.72", "ChannelStateDesc": "Ringing", "CallerIDNum": "+31150010004", "CallerIDName": "", "content": "", "Event": "Newstate", "ConnectedLineNum": "+31150010002", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000013;1", "ChannelState": "5", "ConnectedLineName": "", "Privilege": "call,all"}, - {"Uniqueid": "e83df36bebbe-1507022901.74", "ChannelStateDesc": "Ringing", "CallerIDNum": "+31150010004", "CallerIDName": "", "content": "", "Event": "Newstate", "ConnectedLineNum": "+31150010002", "Channel": "SIP/150010003-00000022", "ChannelState": "5", "ConnectedLineName": "", "Privilege": "call,all"}, - {"Uniqueid": "e83df36bebbe-1507022901.70", "ChannelStateDesc": "Ringing", "CallerIDNum": "+31150010004", "CallerIDName": "", "content": "", "Event": "Newstate", "ConnectedLineNum": "+31150010002", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;1", "ChannelState": "5", "ConnectedLineName": "", "Privilege": "call,all"}, - {"Uniqueid": "e83df36bebbe-1507022901.74", "ChannelStateDesc": "Up", "CallerIDNum": "+31150010004", "CallerIDName": "", "content": "", "Event": "Newstate", "ConnectedLineNum": "+31150010002", "Channel": "SIP/150010003-00000022", "ChannelState": "6", "ConnectedLineName": "", "Privilege": "call,all"}, - {"Uniqueid": "e83df36bebbe-1507022901.71", "ChannelStateDesc": "Up", "CallerIDNum": "+31150010002", "CallerIDName": "", "content": "", "Event": "Newstate", "ConnectedLineNum": "+31150010004", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "ChannelState": "6", "ConnectedLineName": "", "Privilege": "call,all"}, - {"Uniqueid": "e83df36bebbe-1507022901.74", "content": "", "Event": "NewAccountCode", "OldAccountCode": "150010003", "Channel": "SIP/150010003-00000022", "AccountCode": "", "Privilege": "call,all"}, - {"Bridgetype": "core", "Bridgestate": "Link", "CallerID2": "+31150010004", "CallerID1": "+31150010002", "Uniqueid2": "e83df36bebbe-1507022901.74", "Channel2": "SIP/150010003-00000022", "Channel1": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Uniqueid1": "e83df36bebbe-1507022901.71", "content": "", "Privilege": "call,all", "Event": "Bridge"}, - {"Uniqueid": "e83df36bebbe-1507022901.70", "ChannelStateDesc": "Up", "CallerIDNum": "+31150010004", "CallerIDName": "", "content": "", "Event": "Newstate", "ConnectedLineNum": "+31150010002", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;1", "ChannelState": "6", "ConnectedLineName": "", "Privilege": "call,all"}, - {"content": "", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000013;1", "Privilege": "call,all", "ConnectedLineName": "", "Event": "Hangup", "Cause": "26", "Uniqueid": "e83df36bebbe-1507022901.72", "CallerIDNum": "+31150010004", "CallerIDName": "", "Cause-txt": "Answered elsewhere", "AccountCode": "", "ConnectedLineNum": "+31150010002"}, - {"content": "", "Channel": "SIP/150010001-00000023", "Privilege": "call,all", "ConnectedLineName": "", "Event": "Hangup", "Cause": "26", "Uniqueid": "e83df36bebbe-1507022901.75", "CallerIDNum": "+31150010004", "CallerIDName": "", "Cause-txt": "Answered elsewhere", "AccountCode": "150010001", "ConnectedLineNum": "+31150010002"}, - {"SubEvent": "End", "content": "", "UniqueID": "e83df36bebbe-1507022901.73", "Event": "Dial", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000013;2", "Privilege": "call,all", "DialStatus": "CANCEL"}, - {"content": "", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000013;2", "Privilege": "call,all", "ConnectedLineName": "", "Event": "Hangup", "Cause": "26", "Uniqueid": "e83df36bebbe-1507022901.73", "CallerIDNum": "+31150010002", "CallerIDName": "", "Cause-txt": "Answered elsewhere", "AccountCode": "", "ConnectedLineNum": "+31150010004"}, - {"Uniqueid": "e83df36bebbe-1507022898.69", "HoldTime": "4", "Event": "AgentConnect", "content": "", "Queue": "1-2", "RingTime": "4", "MemberName": "Local/ID690152@osvpi_route_phoneaccount", "BridgedChannel": "e83df36bebbe-1507022901.70", "Privilege": "agent,all", "Member": "Local/ID690152@osvpi_route_phoneaccount", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;1"}, - {"Uniqueid": "e83df36bebbe-1507022901.70", "content": "", "AccountCode": "15001", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;1", "Privilege": "call,all", "Event": "NewAccountCode"}, - {"Bridgetype": "core", "Bridgestate": "Link", "CallerID2": "+31150010004", "CallerID1": "+31150010002", "Uniqueid2": "e83df36bebbe-1507022901.70", "Channel2": "Local/ID690152@osvpi_route_phoneaccount-00000012;1", "Channel1": "SIP/voipgrid-siproute-docker-00000021", "Uniqueid1": "e83df36bebbe-1507022898.69", "content": "", "Privilege": "call,all", "Event": "Bridge"}, - {"Clone": "SIP/150010003-00000022", "OriginalState": "Up", "content": "", "Original": "Local/ID690152@osvpi_route_phoneaccount-00000012;1", "CloneState": "Up", "Privilege": "call,all", "Event": "Masquerade"}, - {"Uniqueid": "e83df36bebbe-1507022901.74", "Newname": "SIP/150010003-00000022", "content": "", "Channel": "SIP/150010003-00000022", "Event": "Rename", "Privilege": "call,all"}, - {"Uniqueid": "e83df36bebbe-1507022901.70", "Newname": "SIP/150010003-00000022", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;1", "Event": "Rename", "Privilege": "call,all"}, - {"Uniqueid": "e83df36bebbe-1507022901.74", "Newname": "Local/ID690152@osvpi_route_phoneaccount-00000012;1", "content": "", "Channel": "SIP/150010003-00000022", "Event": "Rename", "Privilege": "call,all"}, - {"Uniqueid": "e83df36bebbe-1507022901.70", "CallerIDNum": "+31150010004", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": "", "CallerIDName": "", "Channel": "SIP/150010003-00000022", "Event": "NewCallerid", "Privilege": "call,all"}, - {"Bridgetype": "core", "Bridgestate": "Unlink", "CallerID2": "+31150010004", "CallerID1": "+31150010002", "Uniqueid2": "e83df36bebbe-1507022901.74", "Channel2": "Local/ID690152@osvpi_route_phoneaccount-00000012;1", "Channel1": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Uniqueid1": "e83df36bebbe-1507022901.71", "content": "", "Privilege": "call,all", "Event": "Bridge"}, - {"content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;1", "Privilege": "call,all", "ConnectedLineName": "", "Event": "Hangup", "Cause": "16", "Uniqueid": "e83df36bebbe-1507022901.74", "CallerIDNum": "+31150010004", "CallerIDName": "", "Cause-txt": "Normal Clearing", "AccountCode": "", "ConnectedLineNum": "+31150010002"}, - {"SubEvent": "End", "content": "", "UniqueID": "e83df36bebbe-1507022901.71", "Event": "Dial", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Privilege": "call,all", "DialStatus": "ANSWER"}, - {"content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Privilege": "call,all", "ConnectedLineName": "", "Event": "Hangup", "Cause": "16", "Uniqueid": "e83df36bebbe-1507022901.71", "CallerIDNum": "+31150010002", "CallerIDName": "", "Cause-txt": "Normal Clearing", "AccountCode": "", "ConnectedLineNum": "+31150010004"}, - {"Bridgetype": "core", "Bridgestate": "Unlink", "CallerID2": "+31150010004", "CallerID1": "+31150010002", "Uniqueid2": "e83df36bebbe-1507022901.70", "Channel2": "SIP/150010003-00000022", "Channel1": "SIP/voipgrid-siproute-docker-00000021", "Uniqueid1": "e83df36bebbe-1507022898.69", "content": "", "Privilege": "call,all", "Event": "Bridge"}, - {"Reason": "caller", "Queue": "1-2", "Uniqueid": "e83df36bebbe-1507022898.69", "content": "", "TalkTime": "14", "HoldTime": "4", "MemberName": "Local/ID690152@osvpi_route_phoneaccount", "Event": "AgentComplete", "Privilege": "agent,all", "Member": "Local/ID690152@osvpi_route_phoneaccount", "Channel": "SIP/150010003-00000022"}, - {"content": "", "Channel": "SIP/150010003-00000022", "Privilege": "call,all", "ConnectedLineName": "", "Event": "Hangup", "Cause": "0", "Uniqueid": "e83df36bebbe-1507022901.70", "CallerIDNum": "+31150010004", "CallerIDName": "", "Cause-txt": "Unknown", "AccountCode": "", "ConnectedLineNum": "+31150010002"}, - {"content": "", "Channel": "SIP/voipgrid-siproute-docker-00000021", "Privilege": "call,all", "ConnectedLineName": "", "Event": "Hangup", "Cause": "0", "Uniqueid": "e83df36bebbe-1507022898.69", "CallerIDNum": "+31150010002", "CallerIDName": "", "Cause-txt": "Unknown", "AccountCode": "15001", "ConnectedLineNum": ""} + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-0000001b", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newchannel", "Exten": "+31150010004", "Language": "en", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938920.367", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-0000001b", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31150010004", "Language": "nl", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938920.367", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-0000001b", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world", "Event": "NewAccountCode", "Exten": "+31150010004", "Language": "nl", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "10", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938920.367", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-0000001b", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_lazyanswer", "Event": "Newstate", "Exten": "+31150010004", "Language": "nl", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "2", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938920.367", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "ad675a07-e4bb-4b80-b716-00cbc8c259a7", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "1ad7ff47-6d19-4bcb-b536-4e6589d65659", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "1ad7ff47-6d19-4bcb-b536-4e6589d65659", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000f;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730152", "Language": "en", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.387", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730152", "Language": "en", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.389", "content": ""}, + {"AccountCode": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000f;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730152", "Language": "en", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.387", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730152", "Language": "en", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.389", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730152", "Language": "en", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.389", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730152", "Language": "en", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.389", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730152", "LocalOneAccountCode": "", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31150010004", "LocalOneChannel": "Local/ID730152@osvpi_route_phoneaccount-0000000f;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "ID730152", "LocalOneLanguage": "en", "LocalOneLinkedid": "195176c06ab8-1529938920.367", "LocalOnePriority": "1", "LocalOneUniqueid": "195176c06ab8-1529938923.387", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31150010001", "LocalTwoChannel": "Local/ID730152@osvpi_route_phoneaccount-0000000f;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31150010004", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730152", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "195176c06ab8-1529938920.367", "LocalTwoPriority": "1", "LocalTwoUniqueid": "195176c06ab8-1529938923.389", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-0000001b", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_queue_step", "DestAccountCode": "", "DestCallerIDName": "", "DestCallerIDNum": "+31150010004", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-0000000f;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "", "DestContext": "osvpi_route_phoneaccount", "DestExten": "ID730152", "DestLanguage": "en", "DestLinkedid": "195176c06ab8-1529938920.367", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529938923.387", "DialString": "Local/ID730152@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "ID550315", "Language": "vg_nl_NL_F", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "21", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938920.367", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000010;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.391", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000010;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.393", "content": ""}, + {"AccountCode": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000010;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.391", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000010;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.393", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000010;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.393", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000010;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.393", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730151", "LocalOneAccountCode": "", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31150010004", "LocalOneChannel": "Local/ID730151@osvpi_route_phoneaccount-00000010;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "ID730151", "LocalOneLanguage": "en", "LocalOneLinkedid": "195176c06ab8-1529938920.367", "LocalOnePriority": "1", "LocalOneUniqueid": "195176c06ab8-1529938923.391", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31150010001", "LocalTwoChannel": "Local/ID730151@osvpi_route_phoneaccount-00000010;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31150010004", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730151", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "195176c06ab8-1529938920.367", "LocalTwoPriority": "1", "LocalTwoUniqueid": "195176c06ab8-1529938923.393", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-0000001b", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_queue_step", "DestAccountCode": "", "DestCallerIDName": "", "DestCallerIDNum": "+31150010004", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-00000010;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "", "DestContext": "osvpi_route_phoneaccount", "DestExten": "ID730151", "DestLanguage": "en", "DestLinkedid": "195176c06ab8-1529938920.367", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529938923.391", "DialString": "Local/ID730151@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "ID550315", "Language": "vg_nl_NL_F", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "21", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938920.367", "content": ""}, + {"AccountCode": "150010003", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010003-0000001c", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.397", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010002-0000001d", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.398", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "SIP/150010002-0000001d", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "+31150010004", "Language": "nl", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.398", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "SIP/150010002-0000001d", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "+31150010004", "Language": "nl", "Linkedid": "195176c06ab8-1529938920.367", "OldAccountCode": "150010002", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.398", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "SIP/150010002-0000001d", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "+31150010004", "Language": "nl", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.398", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "SIP/150010003-0000001c", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "+31150010004", "Language": "nl", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.397", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "SIP/150010003-0000001c", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "+31150010004", "Language": "nl", "Linkedid": "195176c06ab8-1529938920.367", "OldAccountCode": "150010003", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.397", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "SIP/150010003-0000001c", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "+31150010004", "Language": "nl", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.397", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010004", "DestChannel": "SIP/150010003-0000001c", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_account", "DestExten": "+31150010004", "DestLanguage": "nl", "DestLinkedid": "195176c06ab8-1529938920.367", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529938923.397", "DialString": "150010003/150010003/172.20.0.13!!0150010001", "Event": "DialBegin", "Exten": "+31150010004", "Language": "en", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.389", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000010;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010004", "DestChannel": "SIP/150010002-0000001d", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_account", "DestExten": "+31150010004", "DestLanguage": "nl", "DestLinkedid": "195176c06ab8-1529938920.367", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529938923.398", "DialString": "150010002/150010002/172.20.0.13!!0150010001", "Event": "DialBegin", "Exten": "+31150010004", "Language": "en", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.393", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "SIP/150010003-0000001c", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "+31150010004", "Language": "nl", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.397", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000f;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "ID550315", "Language": "en", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.387", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000f;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID550315", "Language": "en", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.387", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "SIP/150010002-0000001d", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "+31150010004", "Language": "nl", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.398", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000010;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "ID550315", "Language": "en", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.391", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000010;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID550315", "Language": "en", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.391", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "SIP/150010002-0000001d", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "+31150010004", "Language": "nl", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.398", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000010;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010004", "DestChannel": "SIP/150010002-0000001d", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "195176c06ab8-1529938920.367", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529938923.398", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31150010004", "Language": "en", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.393", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000010;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "+31150010004", "Language": "en", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.393", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000010;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "ID550315", "Language": "en", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.391", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-0000001b", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_queue_step", "DestAccountCode": "", "DestCallerIDName": "", "DestCallerIDNum": "+31150010004", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-00000010;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "ID550315", "DestLanguage": "en", "DestLinkedid": "195176c06ab8-1529938920.367", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529938923.391", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "ID550315", "Language": "vg_nl_NL_F", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "21", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938920.367", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-0000001b", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_queue_step", "DestAccountCode": "", "DestCallerIDName": "", "DestCallerIDNum": "+31150010004", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-0000000f;1", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "ID550315", "DestLanguage": "en", "DestLinkedid": "195176c06ab8-1529938920.367", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529938923.387", "DialStatus": "CANCEL", "Event": "DialEnd", "Exten": "ID550315", "Language": "vg_nl_NL_F", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "21", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938920.367", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "8734578b-360c-4f66-9992-f0186955d588", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-0000001b", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_queue_step", "DestAccountCode": "", "DestCallerIDName": "", "DestCallerIDNum": "+31150010004", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-0000000f;1", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "ID550315", "DestLanguage": "en", "DestLinkedid": "195176c06ab8-1529938920.367", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529938923.387", "DialStatus": "CANCEL", "Event": "DialEnd", "Exten": "ID550315", "Language": "vg_nl_NL_F", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "21", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938920.367", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010004", "Cause": "26", "Cause-txt": "Answered elsewhere", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000f;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "ID550315", "Language": "en", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.387", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010004", "DestChannel": "SIP/150010003-0000001c", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_account", "DestExten": "+31150010004", "DestLanguage": "nl", "DestLinkedid": "195176c06ab8-1529938920.367", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529938923.397", "DialStatus": "CANCEL", "Event": "DialEnd", "Exten": "+31150010004", "Language": "en", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.389", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010004", "Cause": "26", "Cause-txt": "Answered elsewhere", "Channel": "SIP/150010003-0000001c", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "Hangup", "Exten": "+31150010004", "Language": "nl", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.397", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "26", "Cause-txt": "Answered elsewhere", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "4", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.389", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "8734578b-360c-4f66-9992-f0186955d588", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "SIP/150010002-0000001d", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.398", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "8734578b-360c-4f66-9992-f0186955d588", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000010;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "+31150010004", "Language": "en", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.393", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "49a2c440-ed6d-49be-9996-cf2997563219", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "49a2c440-ed6d-49be-9996-cf2997563219", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000010;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "ID550315", "Language": "en", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.391", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "49a2c440-ed6d-49be-9996-cf2997563219", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-0000001b", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_queue_step", "Event": "BridgeEnter", "Exten": "ID550315", "Language": "vg_nl_NL_F", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "21", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938920.367", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "8734578b-360c-4f66-9992-f0186955d588", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "SIP/150010002-0000001d", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.398", "content": ""}, + {"AccountCode": "", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "49a2c440-ed6d-49be-9996-cf2997563219", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000010;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "ID550315", "Language": "en", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.391", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "49a2c440-ed6d-49be-9996-cf2997563219", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "SIP/150010002-0000001d", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "195176c06ab8-1529938923.391", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.398", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "8734578b-360c-4f66-9992-f0186955d588", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000010;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "+31150010004", "Language": "en", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.393", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "8734578b-360c-4f66-9992-f0186955d588", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000010;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "4", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.393", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010004", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000010;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "ID550315", "Language": "en", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.391", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "49a2c440-ed6d-49be-9996-cf2997563219", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "SIP/150010002-0000001d", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.398", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "49a2c440-ed6d-49be-9996-cf2997563219", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-0000001b", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_queue_step", "Event": "BridgeLeave", "Exten": "ID550315", "Language": "vg_nl_NL_F", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "21", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938920.367", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010004", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010002-0000001d", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938923.398", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "49a2c440-ed6d-49be-9996-cf2997563219", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/voipgrid-siproute-docker-0000001b", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "vg_nl_NL_F", "Linkedid": "195176c06ab8-1529938920.367", "Priority": "4", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529938920.367", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "ad675a07-e4bb-4b80-b716-00cbc8c259a7", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""} ] diff --git a/tests/fixtures/queue/queue_simple.json b/tests/fixtures/queue/queue_simple.json index 88a717b..284b2a9 100644 --- a/tests/fixtures/queue/queue_simple.json +++ b/tests/fixtures/queue/queue_simple.json @@ -1,39 +1,70 @@ [ - {"Privilege": "system,all", "Event": "FullyBooted", "Status": "Fully Booted", "content": ""}, - {"Privilege": "system,all", "Event": "FullyBooted", "Status": "Fully Booted", "content": ""}, - {"CallerIDNum": "+31150010002", "Event": "Newchannel", "CallerIDName": "", "Context": "voipgrid_in", "ChannelState": "0", "Uniqueid": "e83df36bebbe-1507019160.61", "AccountCode": "", "Privilege": "call,all", "Exten": "+31150010004", "ChannelStateDesc": "Down", "content": "", "Channel": "SIP/voipgrid-siproute-docker-0000001d"}, - {"Privilege": "call,all", "Event": "Newstate", "ChannelStateDesc": "Ring", "Uniqueid": "e83df36bebbe-1507019160.61", "Channel": "SIP/voipgrid-siproute-docker-0000001d", "ConnectedLineName": "", "ChannelState": "4", "CallerIDName": "", "content": "", "CallerIDNum": "+31150010002", "ConnectedLineNum": ""}, - {"Privilege": "call,all", "Event": "NewAccountCode", "Uniqueid": "e83df36bebbe-1507019160.61", "AccountCode": "15001", "content": "", "Channel": "SIP/voipgrid-siproute-docker-0000001d"}, - {"Privilege": "call,all", "Event": "Newstate", "ChannelStateDesc": "Up", "Uniqueid": "e83df36bebbe-1507019160.61", "Channel": "SIP/voipgrid-siproute-docker-0000001d", "ConnectedLineName": "", "ChannelState": "6", "CallerIDName": "", "content": "", "CallerIDNum": "+31150010002", "ConnectedLineNum": ""}, - {"CallerIDNum": "", "Event": "Newchannel", "CallerIDName": "", "Context": "osvpi_route_phoneaccount", "ChannelState": "0", "Uniqueid": "e83df36bebbe-1507019163.62", "AccountCode": "", "Privilege": "call,all", "Exten": "ID690150", "ChannelStateDesc": "Down", "content": "", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000010;1"}, - {"CallerIDNum": "", "Event": "Newchannel", "CallerIDName": "", "Context": "osvpi_route_phoneaccount", "ChannelState": "4", "Uniqueid": "e83df36bebbe-1507019163.63", "AccountCode": "", "Privilege": "call,all", "Exten": "ID690150", "ChannelStateDesc": "Ring", "content": "", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000010;2"}, - {"CallerIDNum": "+31150010004", "Privilege": "call,all", "Event": "NewCallerid", "Uniqueid": "e83df36bebbe-1507019163.62", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "content": "", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000010;1"}, - {"Privilege": "call,all", "Event": "LocalBridge", "Channel2": "Local/ID690150@osvpi_route_phoneaccount-00000010;2", "Channel1": "Local/ID690150@osvpi_route_phoneaccount-00000010;1", "Context": "osvpi_route_phoneaccount", "Exten": "ID690150", "Uniqueid1": "e83df36bebbe-1507019163.62", "content": "", "Uniqueid2": "e83df36bebbe-1507019163.63", "LocalOptimization": "Yes"}, - {"CallerIDNum": "+31150010002", "Event": "AgentCalled", "Uniqueid": "e83df36bebbe-1507019160.61", "DestinationChannel": "Local/ID690150@osvpi_route_phoneaccount-00000010;1", "Context": "osvpi_route_queue_step", "ConnectedLineName": "unknown", "AgentName": "Local/ID690150@osvpi_route_phoneaccount", "CallerIDName": "unknown", "Extension": "ID510320", "Privilege": "agent,all", "Priority": "21", "ChannelCalling": "SIP/voipgrid-siproute-docker-0000001d", "Queue": "1-1", "AgentCalled": "Local/ID690150@osvpi_route_phoneaccount", "content": "", "ConnectedLineNum": "unknown"}, - {"CallerIDNum": "", "Event": "Newchannel", "CallerIDName": "", "Context": "osvpi_account", "ChannelState": "0", "Uniqueid": "e83df36bebbe-1507019163.64", "AccountCode": "150010001", "Privilege": "call,all", "Exten": "", "ChannelStateDesc": "Down", "content": "", "Channel": "SIP/150010001-0000001e"}, - {"CallerIDNum": "+31150010004", "Privilege": "call,all", "Event": "NewCallerid", "Uniqueid": "e83df36bebbe-1507019163.64", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "content": "", "Channel": "SIP/150010001-0000001e"}, - {"CallerIDNum": "+31150010002", "ConnectedLineName": "", "Event": "Dial", "DestUniqueID": "e83df36bebbe-1507019163.64", "CallerIDName": "", "Privilege": "call,all", "Destination": "SIP/150010001-0000001e", "UniqueID": "e83df36bebbe-1507019163.63", "Dialstring": "150010001/150010001/172.20.0.13!!0150010002", "SubEvent": "Begin", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000010;2", "content": "", "ConnectedLineNum": "+31150010004"}, - {"Privilege": "call,all", "Event": "Newstate", "ChannelStateDesc": "Ringing", "Uniqueid": "e83df36bebbe-1507019163.64", "Channel": "SIP/150010001-0000001e", "ConnectedLineName": "", "ChannelState": "5", "CallerIDName": "", "content": "", "CallerIDNum": "+31150010004", "ConnectedLineNum": "+31150010002"}, - {"Privilege": "call,all", "Event": "Newstate", "ChannelStateDesc": "Ringing", "Uniqueid": "e83df36bebbe-1507019163.62", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000010;1", "ConnectedLineName": "", "ChannelState": "5", "CallerIDName": "", "content": "", "CallerIDNum": "+31150010004", "ConnectedLineNum": "+31150010002"}, - {"Privilege": "call,all", "Event": "Newstate", "ChannelStateDesc": "Up", "Uniqueid": "e83df36bebbe-1507019163.64", "Channel": "SIP/150010001-0000001e", "ConnectedLineName": "", "ChannelState": "6", "CallerIDName": "", "content": "", "CallerIDNum": "+31150010004", "ConnectedLineNum": "+31150010002"}, - {"Privilege": "call,all", "Event": "Newstate", "ChannelStateDesc": "Up", "Uniqueid": "e83df36bebbe-1507019163.63", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000010;2", "ConnectedLineName": "", "ChannelState": "6", "CallerIDName": "", "content": "", "CallerIDNum": "+31150010002", "ConnectedLineNum": "+31150010004"}, - {"Privilege": "call,all", "Event": "NewAccountCode", "OldAccountCode": "150010001", "Uniqueid": "e83df36bebbe-1507019163.64", "AccountCode": "", "content": "", "Channel": "SIP/150010001-0000001e"}, - {"Privilege": "call,all", "Event": "Bridge", "Channel2": "SIP/150010001-0000001e", "CallerID2": "+31150010004", "Channel1": "Local/ID690150@osvpi_route_phoneaccount-00000010;2", "CallerID1": "+31150010002", "Bridgestate": "Link", "Uniqueid1": "e83df36bebbe-1507019163.63", "content": "", "Uniqueid2": "e83df36bebbe-1507019163.64", "Bridgetype": "core"}, - {"Privilege": "call,all", "Event": "Newstate", "ChannelStateDesc": "Up", "Uniqueid": "e83df36bebbe-1507019163.62", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000010;1", "ConnectedLineName": "", "ChannelState": "6", "CallerIDName": "", "content": "", "CallerIDNum": "+31150010004", "ConnectedLineNum": "+31150010002"}, - {"Privilege": "agent,all", "MemberName": "Local/ID690150@osvpi_route_phoneaccount", "Queue": "1-1", "Event": "AgentConnect", "Uniqueid": "e83df36bebbe-1507019160.61", "HoldTime": "9", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000010;1", "BridgedChannel": "e83df36bebbe-1507019163.62", "RingTime": "9", "content": "", "Member": "Local/ID690150@osvpi_route_phoneaccount"}, - {"Privilege": "call,all", "Event": "NewAccountCode", "Uniqueid": "e83df36bebbe-1507019163.62", "AccountCode": "15001", "content": "", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000010;1"}, - {"Privilege": "call,all", "Event": "Bridge", "Channel2": "Local/ID690150@osvpi_route_phoneaccount-00000010;1", "CallerID2": "+31150010004", "Channel1": "SIP/voipgrid-siproute-docker-0000001d", "CallerID1": "+31150010002", "Bridgestate": "Link", "Uniqueid1": "e83df36bebbe-1507019160.61", "content": "", "Uniqueid2": "e83df36bebbe-1507019163.62", "Bridgetype": "core"}, - {"Privilege": "call,all", "Event": "Masquerade", "Clone": "SIP/150010001-0000001e", "OriginalState": "Up", "Original": "Local/ID690150@osvpi_route_phoneaccount-00000010;1", "CloneState": "Up", "content": ""}, - {"Privilege": "call,all", "Event": "Rename", "Newname": "SIP/150010001-0000001e", "Uniqueid": "e83df36bebbe-1507019163.64", "content": "", "Channel": "SIP/150010001-0000001e"}, - {"Privilege": "call,all", "Event": "Rename", "Newname": "SIP/150010001-0000001e", "Uniqueid": "e83df36bebbe-1507019163.62", "content": "", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000010;1"}, - {"Privilege": "call,all", "Event": "Rename", "Newname": "Local/ID690150@osvpi_route_phoneaccount-00000010;1", "Uniqueid": "e83df36bebbe-1507019163.64", "content": "", "Channel": "SIP/150010001-0000001e"}, - {"CallerIDNum": "+31150010004", "Privilege": "call,all", "Event": "NewCallerid", "Uniqueid": "e83df36bebbe-1507019163.62", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "content": "", "Channel": "SIP/150010001-0000001e"}, - {"Privilege": "call,all", "Event": "Bridge", "Channel2": "Local/ID690150@osvpi_route_phoneaccount-00000010;1", "CallerID2": "+31150010004", "Channel1": "Local/ID690150@osvpi_route_phoneaccount-00000010;2", "CallerID1": "+31150010002", "Bridgestate": "Unlink", "Uniqueid1": "e83df36bebbe-1507019163.63", "content": "", "Uniqueid2": "e83df36bebbe-1507019163.64", "Bridgetype": "core"}, - {"CallerIDNum": "+31150010004", "Event": "Hangup", "Uniqueid": "e83df36bebbe-1507019163.64", "Cause-txt": "Normal Clearing", "ConnectedLineName": "", "Cause": "16", "CallerIDName": "", "AccountCode": "", "Privilege": "call,all", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000010;1", "content": "", "ConnectedLineNum": "+31150010002"}, - {"Privilege": "call,all", "Event": "Dial", "UniqueID": "e83df36bebbe-1507019163.63", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000010;2", "SubEvent": "End", "content": "", "DialStatus": "ANSWER"}, - {"CallerIDNum": "+31150010002", "Event": "Hangup", "Uniqueid": "e83df36bebbe-1507019163.63", "Cause-txt": "Normal Clearing", "ConnectedLineName": "", "Cause": "16", "CallerIDName": "", "AccountCode": "", "Privilege": "call,all", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000010;2", "content": "", "ConnectedLineNum": "+31150010004"}, - {"Privilege": "call,all", "Event": "Bridge", "Channel2": "SIP/150010001-0000001e", "CallerID2": "+31150010004", "Channel1": "SIP/voipgrid-siproute-docker-0000001d", "CallerID1": "+31150010002", "Bridgestate": "Unlink", "Uniqueid1": "e83df36bebbe-1507019160.61", "content": "", "Uniqueid2": "e83df36bebbe-1507019163.62", "Bridgetype": "core"}, - {"Privilege": "agent,all", "MemberName": "Local/ID690150@osvpi_route_phoneaccount", "Event": "AgentComplete", "Uniqueid": "e83df36bebbe-1507019160.61", "TalkTime": "5", "HoldTime": "9", "Queue": "1-1", "Reason": "caller", "Member": "Local/ID690150@osvpi_route_phoneaccount", "content": "", "Channel": "SIP/150010001-0000001e"}, - {"CallerIDNum": "+31150010004", "Event": "Hangup", "Uniqueid": "e83df36bebbe-1507019163.62", "Cause-txt": "Unknown", "ConnectedLineName": "", "Cause": "0", "CallerIDName": "", "AccountCode": "", "Privilege": "call,all", "Channel": "SIP/150010001-0000001e", "content": "", "ConnectedLineNum": "+31150010002"}, - {"CallerIDNum": "+31150010002", "Event": "Hangup", "Uniqueid": "e83df36bebbe-1507019160.61", "Cause-txt": "Unknown", "ConnectedLineName": "", "Cause": "0", "CallerIDName": "", "AccountCode": "15001", "Privilege": "call,all", "Channel": "SIP/voipgrid-siproute-docker-0000001d", "content": "", "ConnectedLineNum": ""} + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000025", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newchannel", "Exten": "+31150010004", "Language": "en", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939196.518", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000025", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31150010004", "Language": "nl", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939196.518", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000025", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world", "Event": "NewAccountCode", "Exten": "+31150010004", "Language": "nl", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "10", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939196.518", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000025", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_lazyanswer", "Event": "Newstate", "Exten": "+31150010004", "Language": "nl", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "2", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939196.518", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "7954ad1d-b863-4efe-ab45-0b5dc62dfd0d", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "5333d10b-870a-4ff8-ab51-b2f7926b1a97", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "5333d10b-870a-4ff8-ab51-b2f7926b1a97", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000015;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730152", "Language": "en", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.538", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000015;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730152", "Language": "en", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.540", "content": ""}, + {"AccountCode": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000015;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730152", "Language": "en", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.538", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000015;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730152", "Language": "en", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.540", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000015;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730152", "Language": "en", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.540", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000015;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730152", "Language": "en", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.540", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730152", "LocalOneAccountCode": "", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31150010004", "LocalOneChannel": "Local/ID730152@osvpi_route_phoneaccount-00000015;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "ID730152", "LocalOneLanguage": "en", "LocalOneLinkedid": "195176c06ab8-1529939196.518", "LocalOnePriority": "1", "LocalOneUniqueid": "195176c06ab8-1529939198.538", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31150010001", "LocalTwoChannel": "Local/ID730152@osvpi_route_phoneaccount-00000015;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31150010004", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730152", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "195176c06ab8-1529939196.518", "LocalTwoPriority": "1", "LocalTwoUniqueid": "195176c06ab8-1529939198.540", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000025", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_queue_step", "DestAccountCode": "", "DestCallerIDName": "", "DestCallerIDNum": "+31150010004", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-00000015;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "", "DestContext": "osvpi_route_phoneaccount", "DestExten": "ID730152", "DestLanguage": "en", "DestLinkedid": "195176c06ab8-1529939196.518", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529939198.538", "DialString": "Local/ID730152@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "ID550315", "Language": "vg_nl_NL_F", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "21", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939196.518", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000016;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.542", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000016;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.544", "content": ""}, + {"AccountCode": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000016;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.542", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000016;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.544", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000016;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.544", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000016;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.544", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730151", "LocalOneAccountCode": "", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31150010004", "LocalOneChannel": "Local/ID730151@osvpi_route_phoneaccount-00000016;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "ID730151", "LocalOneLanguage": "en", "LocalOneLinkedid": "195176c06ab8-1529939196.518", "LocalOnePriority": "1", "LocalOneUniqueid": "195176c06ab8-1529939198.542", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31150010001", "LocalTwoChannel": "Local/ID730151@osvpi_route_phoneaccount-00000016;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31150010004", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730151", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "195176c06ab8-1529939196.518", "LocalTwoPriority": "1", "LocalTwoUniqueid": "195176c06ab8-1529939198.544", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000025", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_queue_step", "DestAccountCode": "", "DestCallerIDName": "", "DestCallerIDNum": "+31150010004", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-00000016;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "", "DestContext": "osvpi_route_phoneaccount", "DestExten": "ID730151", "DestLanguage": "en", "DestLinkedid": "195176c06ab8-1529939196.518", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529939198.542", "DialString": "Local/ID730151@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "ID550315", "Language": "vg_nl_NL_F", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "21", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939196.518", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010002-00000026", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.548", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "SIP/150010002-00000026", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "+31150010004", "Language": "nl", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.548", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "SIP/150010002-00000026", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "+31150010004", "Language": "nl", "Linkedid": "195176c06ab8-1529939196.518", "OldAccountCode": "150010002", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.548", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "SIP/150010002-00000026", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "+31150010004", "Language": "nl", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.548", "content": ""}, + {"AccountCode": "150010003", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010003-00000027", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.550", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000016;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010004", "DestChannel": "SIP/150010002-00000026", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_account", "DestExten": "+31150010004", "DestLanguage": "nl", "DestLinkedid": "195176c06ab8-1529939196.518", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529939198.548", "DialString": "150010002/150010002/172.20.0.13!!0150010001", "Event": "DialBegin", "Exten": "+31150010004", "Language": "en", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.544", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "SIP/150010003-00000027", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "+31150010004", "Language": "nl", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.550", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "SIP/150010003-00000027", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "+31150010004", "Language": "nl", "Linkedid": "195176c06ab8-1529939196.518", "OldAccountCode": "150010003", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.550", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "SIP/150010003-00000027", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "+31150010004", "Language": "nl", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.550", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000015;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010004", "DestChannel": "SIP/150010003-00000027", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_account", "DestExten": "+31150010004", "DestLanguage": "nl", "DestLinkedid": "195176c06ab8-1529939196.518", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529939198.550", "DialString": "150010003/150010003/opensipsfg!!0150010001", "Event": "DialBegin", "Exten": "+31150010004", "Language": "en", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.540", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000015;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010004", "DestChannel": "SIP/150010003-00000027", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_account", "DestExten": "+31150010004", "DestLanguage": "nl", "DestLinkedid": "195176c06ab8-1529939196.518", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529939198.550", "DialStatus": "BUSY", "Event": "DialEnd", "Exten": "+31150010004", "Language": "en", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.540", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010004", "Cause": "19", "Cause-txt": "User alerting, no answer", "Channel": "SIP/150010003-00000027", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "Hangup", "Exten": "+31150010004", "Language": "nl", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.550", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "19", "Cause-txt": "User alerting, no answer", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000015;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "4", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.540", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000025", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_queue_step", "DestAccountCode": "", "DestCallerIDName": "", "DestCallerIDNum": "+31150010004", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-00000015;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "ID550315", "DestLanguage": "en", "DestLinkedid": "195176c06ab8-1529939196.518", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529939198.538", "DialStatus": "NOANSWER", "Event": "DialEnd", "Exten": "ID550315", "Language": "vg_nl_NL_F", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "21", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939196.518", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010004", "Cause": "19", "Cause-txt": "User alerting, no answer", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000015;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "ID550315", "Language": "en", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.538", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000015;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID550315", "Language": "en", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.538", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "SIP/150010002-00000026", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "+31150010004", "Language": "nl", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.548", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000016;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "ID550315", "Language": "en", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.542", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000016;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID550315", "Language": "en", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.542", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "SIP/150010002-00000026", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "+31150010004", "Language": "nl", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.548", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000016;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010004", "DestChannel": "SIP/150010002-00000026", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "195176c06ab8-1529939196.518", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529939198.548", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31150010004", "Language": "en", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.544", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000016;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "ID550315", "Language": "en", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.542", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000025", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_queue_step", "DestAccountCode": "", "DestCallerIDName": "", "DestCallerIDNum": "+31150010004", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-00000016;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "ID550315", "DestLanguage": "en", "DestLinkedid": "195176c06ab8-1529939196.518", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529939198.542", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "ID550315", "Language": "vg_nl_NL_F", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "21", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939196.518", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000016;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "+31150010004", "Language": "en", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.544", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "a2246edb-75ff-485e-af6c-89dbabfbb86d", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "a2246edb-75ff-485e-af6c-89dbabfbb86d", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "SIP/150010002-00000026", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.548", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "a2246edb-75ff-485e-af6c-89dbabfbb86d", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000016;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "+31150010004", "Language": "en", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.544", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "2b62dbdc-74fb-4f5f-8748-63fecfe59a88", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "2b62dbdc-74fb-4f5f-8748-63fecfe59a88", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000016;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "ID550315", "Language": "en", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.542", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "2b62dbdc-74fb-4f5f-8748-63fecfe59a88", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000025", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_queue_step", "Event": "BridgeEnter", "Exten": "ID550315", "Language": "vg_nl_NL_F", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "21", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939196.518", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "a2246edb-75ff-485e-af6c-89dbabfbb86d", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "SIP/150010002-00000026", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.548", "content": ""}, + {"AccountCode": "", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "2b62dbdc-74fb-4f5f-8748-63fecfe59a88", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000016;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "ID550315", "Language": "en", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.542", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "2b62dbdc-74fb-4f5f-8748-63fecfe59a88", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "SIP/150010002-00000026", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "195176c06ab8-1529939198.542", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.548", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "a2246edb-75ff-485e-af6c-89dbabfbb86d", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000016;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "+31150010004", "Language": "en", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.544", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "a2246edb-75ff-485e-af6c-89dbabfbb86d", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000016;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010004", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "4", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.544", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31150010004", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000016;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "ID550315", "Language": "en", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.542", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "2b62dbdc-74fb-4f5f-8748-63fecfe59a88", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010004", "Channel": "SIP/150010002-00000026", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.548", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "2b62dbdc-74fb-4f5f-8748-63fecfe59a88", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000025", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_queue_step", "Event": "BridgeLeave", "Exten": "ID550315", "Language": "vg_nl_NL_F", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "21", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939196.518", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010004", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010002-00000026", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939198.548", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "2b62dbdc-74fb-4f5f-8748-63fecfe59a88", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/voipgrid-siproute-docker-00000025", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "vg_nl_NL_F", "Linkedid": "195176c06ab8-1529939196.518", "Priority": "4", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529939196.518", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "7954ad1d-b863-4efe-ab45-0b5dc62dfd0d", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""} ] diff --git a/tests/fixtures/simple/ab_a_cancel.json b/tests/fixtures/simple/ab_a_cancel.json new file mode 100644 index 0000000..bc54bf5 --- /dev/null +++ b/tests/fixtures/simple/ab_a_cancel.json @@ -0,0 +1,31 @@ +[ + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000002", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529936141.21", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936141.21", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000002", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936141.21", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936141.21", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000002", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936141.21", "Priority": "5", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936141.21", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000002", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936141.21", "Priority": "6", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936141.21", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000001;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529936141.21", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936141.24", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000001;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529936141.21", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936141.25", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000001;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529936141.21", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936141.24", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000001;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529936141.21", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936141.24", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000001;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529936141.21", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936141.24", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000001;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529936141.21", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936141.25", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000001;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529936141.21", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936141.25", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000001;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529936141.21", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936141.25", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730151", "LocalOneAccountCode": "150010001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "202", "LocalOneChannel": "Local/ID730151@osvpi_route_phoneaccount-00000001;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Andrew Garza", "LocalOneConnectedLineNum": "201", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "202", "LocalOneLanguage": "en", "LocalOneLinkedid": "195176c06ab8-1529936141.21", "LocalOnePriority": "1", "LocalOneUniqueid": "195176c06ab8-1529936141.24", "LocalOptimization": "Yes", "LocalTwoAccountCode": "150010001", "LocalTwoCallerIDName": "Andrew Garza", "LocalTwoCallerIDNum": "201", "LocalTwoChannel": "Local/ID730151@osvpi_route_phoneaccount-00000001;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "202", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730151", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "195176c06ab8-1529936141.21", "LocalTwoPriority": "1", "LocalTwoUniqueid": "195176c06ab8-1529936141.25", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000002", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-00000001;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "202", "DestLanguage": "en", "DestLinkedid": "195176c06ab8-1529936141.21", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529936141.24", "DialString": "ID730151@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936141.21", "Priority": "12", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936141.21", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010002-00000003", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "195176c06ab8-1529936141.21", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936141.29", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000003", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936141.21", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936141.29", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000003", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936141.21", "OldAccountCode": "150010002", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936141.29", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000003", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936141.21", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936141.29", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000001;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "SIP/150010002-00000003", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "202", "DestLanguage": "nl", "DestLinkedid": "195176c06ab8-1529936141.21", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529936141.29", "DialString": "150010002/150010002/172.20.0.13!!201", "Event": "DialBegin", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529936141.21", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936141.25", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000003", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936141.21", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936141.29", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000001;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529936141.21", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936141.24", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000002", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-00000001;1", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "202", "DestLanguage": "en", "DestLinkedid": "195176c06ab8-1529936141.21", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529936141.24", "DialStatus": "CANCEL", "Event": "DialEnd", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936141.21", "Priority": "12", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936141.21", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000001;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "SIP/150010002-00000003", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "202", "DestLanguage": "nl", "DestLinkedid": "195176c06ab8-1529936141.21", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529936141.29", "DialStatus": "CANCEL", "Event": "DialEnd", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529936141.21", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936141.25", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Cause": "0", "Cause-txt": "Unknown", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000001;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529936141.21", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936141.24", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010002-00000003", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Hangup", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936141.21", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936141.29", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Cause": "0", "Cause-txt": "Unknown", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000001;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "195176c06ab8-1529936141.21", "Priority": "4", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936141.25", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Cause": "0", "Cause-txt": "Unknown", "Channel": "SIP/150010001-00000002", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "195176c06ab8-1529936141.21", "Priority": "4", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936141.21", "content": ""} +] \ No newline at end of file diff --git a/tests/fixtures/simple/ab_a_cancel_hangup.json b/tests/fixtures/simple/ab_a_cancel_hangup.json deleted file mode 100644 index 003365e..0000000 --- a/tests/fixtures/simple/ab_a_cancel_hangup.json +++ /dev/null @@ -1,24 +0,0 @@ -[ - {"Status": "Fully Booted", "Privilege": "system,all", "content": "", "Event": "FullyBooted"}, - {"Status": "Fully Booted", "Privilege": "system,all", "content": "", "Event": "FullyBooted"}, - {"content": "", "CallerIDName": "Bob", "ChannelStateDesc": "Down", "AccountCode": "150010002", "Context": "osvpi_account", "Uniqueid": "0f00dcaa884f-1508490698.34", "Event": "Newchannel", "Exten": "204", "CallerIDNum": "150010002", "ChannelState": "0", "Privilege": "call,all", "Channel": "SIP/150010002-00000010"}, - {"Uniqueid": "0f00dcaa884f-1508490698.34", "ConnectedLineNum": "", "content": "", "Event": "Newstate", "ConnectedLineName": "", "CallerIDNum": "150010002", "ChannelState": "4", "Privilege": "call,all", "ChannelStateDesc": "Ring", "Channel": "SIP/150010002-00000010", "CallerIDName": "Bob"}, - {"content": "", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "Event": "NewCallerid", "CallerIDNum": "150010002", "Privilege": "call,all", "Uniqueid": "0f00dcaa884f-1508490698.34", "Channel": "SIP/150010002-00000010", "CallerIDName": "David Meadows"}, - {"content": "", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "Event": "NewCallerid", "CallerIDNum": "202", "Privilege": "call,all", "Uniqueid": "0f00dcaa884f-1508490698.34", "Channel": "SIP/150010002-00000010", "CallerIDName": "David Meadows"}, - {"content": "", "CallerIDName": "", "ChannelStateDesc": "Down", "AccountCode": "", "Context": "osvpi_route_phoneaccount", "Uniqueid": "0f00dcaa884f-1508490698.35", "Event": "Newchannel", "Exten": "ID690153", "CallerIDNum": "", "ChannelState": "0", "Privilege": "call,all", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000009;1"}, - {"content": "", "CallerIDName": "", "ChannelStateDesc": "Ring", "AccountCode": "", "Context": "osvpi_route_phoneaccount", "Uniqueid": "0f00dcaa884f-1508490698.36", "Event": "Newchannel", "Exten": "ID690153", "CallerIDNum": "", "ChannelState": "4", "Privilege": "call,all", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000009;2"}, - {"content": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Event": "NewCallerid", "CallerIDNum": "204", "Privilege": "call,all", "Uniqueid": "0f00dcaa884f-1508490698.35", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000009;1", "CallerIDName": ""}, - {"Channel2": "Local/ID690153@osvpi_route_phoneaccount-00000009;2", "content": "", "LocalOptimization": "Yes", "Event": "LocalBridge", "Exten": "ID690153", "Privilege": "call,all", "Uniqueid1": "0f00dcaa884f-1508490698.35", "Context": "osvpi_route_phoneaccount", "Uniqueid2": "0f00dcaa884f-1508490698.36", "Channel1": "Local/ID690153@osvpi_route_phoneaccount-00000009;1"}, - {"Destination": "Local/ID690153@osvpi_route_phoneaccount-00000009;1", "ConnectedLineNum": "", "content": "", "CallerIDName": "David Meadows", "ConnectedLineName": "", "SubEvent": "Begin", "DestUniqueID": "0f00dcaa884f-1508490698.35", "Dialstring": "ID690153@osvpi_route_phoneaccount", "Event": "Dial", "CallerIDNum": "202", "Privilege": "call,all", "UniqueID": "0f00dcaa884f-1508490698.34", "Channel": "SIP/150010002-00000010"}, - {"content": "", "CallerIDName": "", "ChannelStateDesc": "Down", "AccountCode": "150010004", "Context": "osvpi_account", "Uniqueid": "0f00dcaa884f-1508490698.37", "Event": "Newchannel", "Exten": "", "CallerIDNum": "", "ChannelState": "0", "Privilege": "call,all", "Channel": "SIP/150010004-00000011"}, - {"content": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Event": "NewCallerid", "CallerIDNum": "204", "Privilege": "call,all", "Uniqueid": "0f00dcaa884f-1508490698.37", "Channel": "SIP/150010004-00000011", "CallerIDName": ""}, - {"Destination": "SIP/150010004-00000011", "ConnectedLineNum": "204", "content": "", "CallerIDName": "David Meadows", "ConnectedLineName": "", "SubEvent": "Begin", "DestUniqueID": "0f00dcaa884f-1508490698.37", "Dialstring": "150010004/150010004/172.20.0.13!!202", "Event": "Dial", "CallerIDNum": "202", "Privilege": "call,all", "UniqueID": "0f00dcaa884f-1508490698.36", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000009;2"}, - {"Uniqueid": "0f00dcaa884f-1508490698.37", "ConnectedLineNum": "202", "content": "", "Event": "Newstate", "ConnectedLineName": "David Meadows", "CallerIDNum": "204", "ChannelState": "5", "Privilege": "call,all", "ChannelStateDesc": "Ringing", "Channel": "SIP/150010004-00000011", "CallerIDName": ""}, - {"Uniqueid": "0f00dcaa884f-1508490698.35", "ConnectedLineNum": "202", "content": "", "Event": "Newstate", "ConnectedLineName": "David Meadows", "CallerIDNum": "204", "ChannelState": "5", "Privilege": "call,all", "ChannelStateDesc": "Ringing", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000009;1", "CallerIDName": ""}, - {"ConnectedLineNum": "202", "content": "", "CallerIDName": "", "ConnectedLineName": "David Meadows", "AccountCode": "150010002", "Uniqueid": "0f00dcaa884f-1508490698.35", "Cause-txt": "Unknown", "Event": "Hangup", "CallerIDNum": "204", "Privilege": "call,all", "Cause": "0", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000009;1"}, - {"ConnectedLineNum": "202", "content": "", "CallerIDName": "", "ConnectedLineName": "David Meadows", "AccountCode": "150010002", "Uniqueid": "0f00dcaa884f-1508490698.37", "Cause-txt": "Normal Clearing", "Event": "Hangup", "CallerIDNum": "204", "Privilege": "call,all", "Cause": "16", "Channel": "SIP/150010004-00000011"}, - {"SubEvent": "End", "content": "", "Event": "Dial", "DialStatus": "CANCEL", "Privilege": "call,all", "UniqueID": "0f00dcaa884f-1508490698.36", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000009;2"}, - {"SubEvent": "End", "content": "", "Event": "Dial", "DialStatus": "CANCEL", "Privilege": "call,all", "UniqueID": "0f00dcaa884f-1508490698.34", "Channel": "SIP/150010002-00000010"}, - {"ConnectedLineNum": "204", "content": "", "CallerIDName": "David Meadows", "ConnectedLineName": "", "AccountCode": "150010002", "Uniqueid": "0f00dcaa884f-1508490698.36", "Cause-txt": "Unknown", "Event": "Hangup", "CallerIDNum": "202", "Privilege": "call,all", "Cause": "0", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000009;2"}, - {"ConnectedLineNum": "", "content": "", "CallerIDName": "David Meadows", "ConnectedLineName": "", "AccountCode": "150010002", "Uniqueid": "0f00dcaa884f-1508490698.34", "Cause-txt": "Unknown", "Event": "Hangup", "CallerIDNum": "202", "Privilege": "call,all", "Cause": "0", "Channel": "SIP/150010002-00000010"} -] diff --git a/tests/fixtures/simple/ab_a_success_hangup.json b/tests/fixtures/simple/ab_a_success_hangup.json deleted file mode 100644 index 5e369de..0000000 --- a/tests/fixtures/simple/ab_a_success_hangup.json +++ /dev/null @@ -1,39 +0,0 @@ -[ - {"Event": "FullyBooted", "content": "", "Privilege": "system,all", "Status": "Fully Booted"}, - {"Event": "FullyBooted", "content": "", "Privilege": "system,all", "Status": "Fully Booted"}, - {"AccountCode": "150010002", "Privilege": "call,all", "CallerIDName": "Bob", "Exten": "204", "content": "", "Context": "osvpi_account", "Uniqueid": "0f00dcaa884f-1508490669.30", "ChannelState": "0", "Event": "Newchannel", "ChannelStateDesc": "Down", "Channel": "SIP/150010002-0000000e", "CallerIDNum": "150010002"}, - {"ConnectedLineNum": "", "ChannelState": "4", "Privilege": "call,all", "CallerIDName": "Bob", "Event": "Newstate", "Channel": "SIP/150010002-0000000e", "ChannelStateDesc": "Ring", "content": "", "Uniqueid": "0f00dcaa884f-1508490669.30", "ConnectedLineName": "", "CallerIDNum": "150010002"}, - {"Uniqueid": "0f00dcaa884f-1508490669.30", "Privilege": "call,all", "CallerIDName": "David Meadows", "Event": "NewCallerid", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "content": "", "Channel": "SIP/150010002-0000000e", "CallerIDNum": "150010002"}, - {"Uniqueid": "0f00dcaa884f-1508490669.30", "Privilege": "call,all", "CallerIDName": "David Meadows", "Event": "NewCallerid", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "content": "", "Channel": "SIP/150010002-0000000e", "CallerIDNum": "202"}, - {"AccountCode": "", "Privilege": "call,all", "CallerIDName": "", "Exten": "ID690153", "content": "", "Context": "osvpi_route_phoneaccount", "Uniqueid": "0f00dcaa884f-1508490669.31", "ChannelState": "0", "Event": "Newchannel", "ChannelStateDesc": "Down", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000008;1", "CallerIDNum": ""}, - {"AccountCode": "", "Privilege": "call,all", "CallerIDName": "", "Exten": "ID690153", "content": "", "Context": "osvpi_route_phoneaccount", "Uniqueid": "0f00dcaa884f-1508490669.32", "ChannelState": "4", "Event": "Newchannel", "ChannelStateDesc": "Ring", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000008;2", "CallerIDNum": ""}, - {"Uniqueid": "0f00dcaa884f-1508490669.31", "Privilege": "call,all", "CallerIDName": "", "Event": "NewCallerid", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000008;1", "CallerIDNum": "204"}, - {"Channel2": "Local/ID690153@osvpi_route_phoneaccount-00000008;2", "Context": "osvpi_route_phoneaccount", "Uniqueid1": "0f00dcaa884f-1508490669.31", "Privilege": "call,all", "LocalOptimization": "Yes", "Event": "LocalBridge", "Exten": "ID690153", "content": "", "Channel1": "Local/ID690153@osvpi_route_phoneaccount-00000008;1", "Uniqueid2": "0f00dcaa884f-1508490669.32"}, - {"ConnectedLineNum": "", "UniqueID": "0f00dcaa884f-1508490669.30", "DestUniqueID": "0f00dcaa884f-1508490669.31", "Privilege": "call,all", "CallerIDName": "David Meadows", "content": "", "Channel": "SIP/150010002-0000000e", "SubEvent": "Begin", "ConnectedLineName": "", "Destination": "Local/ID690153@osvpi_route_phoneaccount-00000008;1", "Dialstring": "ID690153@osvpi_route_phoneaccount", "Event": "Dial", "CallerIDNum": "202"}, - {"AccountCode": "150010004", "Privilege": "call,all", "CallerIDName": "", "Exten": "", "content": "", "Context": "osvpi_account", "Uniqueid": "0f00dcaa884f-1508490669.33", "ChannelState": "0", "Event": "Newchannel", "ChannelStateDesc": "Down", "Channel": "SIP/150010004-0000000f", "CallerIDNum": ""}, - {"Uniqueid": "0f00dcaa884f-1508490669.33", "Privilege": "call,all", "CallerIDName": "", "Event": "NewCallerid", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": "", "Channel": "SIP/150010004-0000000f", "CallerIDNum": "204"}, - {"ConnectedLineNum": "204", "UniqueID": "0f00dcaa884f-1508490669.32", "DestUniqueID": "0f00dcaa884f-1508490669.33", "Privilege": "call,all", "CallerIDName": "David Meadows", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000008;2", "SubEvent": "Begin", "ConnectedLineName": "", "Destination": "SIP/150010004-0000000f", "Dialstring": "150010004/150010004/172.20.0.13!!202", "Event": "Dial", "CallerIDNum": "202"}, - {"ConnectedLineNum": "202", "ChannelState": "5", "Privilege": "call,all", "CallerIDName": "", "Event": "Newstate", "Channel": "SIP/150010004-0000000f", "ChannelStateDesc": "Ringing", "content": "", "Uniqueid": "0f00dcaa884f-1508490669.33", "ConnectedLineName": "David Meadows", "CallerIDNum": "204"}, - {"ConnectedLineNum": "202", "ChannelState": "5", "Privilege": "call,all", "CallerIDName": "", "Event": "Newstate", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000008;1", "ChannelStateDesc": "Ringing", "content": "", "Uniqueid": "0f00dcaa884f-1508490669.31", "ConnectedLineName": "David Meadows", "CallerIDNum": "204"}, - {"ConnectedLineNum": "202", "ChannelState": "6", "Privilege": "call,all", "CallerIDName": "", "Event": "Newstate", "Channel": "SIP/150010004-0000000f", "ChannelStateDesc": "Up", "content": "", "Uniqueid": "0f00dcaa884f-1508490669.33", "ConnectedLineName": "David Meadows", "CallerIDNum": "204"}, - {"ConnectedLineNum": "204", "ChannelState": "6", "Privilege": "call,all", "CallerIDName": "David Meadows", "Event": "Newstate", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000008;2", "ChannelStateDesc": "Up", "content": "", "Uniqueid": "0f00dcaa884f-1508490669.32", "ConnectedLineName": "", "CallerIDNum": "202"}, - {"ConnectedLineNum": "202", "ChannelState": "6", "Privilege": "call,all", "CallerIDName": "", "Event": "Newstate", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000008;1", "ChannelStateDesc": "Up", "content": "", "Uniqueid": "0f00dcaa884f-1508490669.31", "ConnectedLineName": "David Meadows", "CallerIDNum": "204"}, - {"OldAccountCode": "150010002", "Uniqueid": "0f00dcaa884f-1508490669.33", "Privilege": "call,all", "AccountCode": "150010002", "Event": "NewAccountCode", "content": "", "Channel": "SIP/150010004-0000000f"}, - {"Channel2": "SIP/150010004-0000000f", "Channel1": "Local/ID690153@osvpi_route_phoneaccount-00000008;2", "Uniqueid1": "0f00dcaa884f-1508490669.32", "Privilege": "call,all", "CallerID1": "202", "Bridgestate": "Link", "CallerID2": "204", "Event": "Bridge", "content": "", "Uniqueid2": "0f00dcaa884f-1508490669.33", "Bridgetype": "core"}, - {"ConnectedLineNum": "", "ChannelState": "6", "Privilege": "call,all", "CallerIDName": "David Meadows", "Event": "Newstate", "Channel": "SIP/150010002-0000000e", "ChannelStateDesc": "Up", "content": "", "Uniqueid": "0f00dcaa884f-1508490669.30", "ConnectedLineName": "", "CallerIDNum": "202"}, - {"OldAccountCode": "150010002", "Uniqueid": "0f00dcaa884f-1508490669.31", "Privilege": "call,all", "AccountCode": "150010002", "Event": "NewAccountCode", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000008;1"}, - {"Channel2": "Local/ID690153@osvpi_route_phoneaccount-00000008;1", "Channel1": "SIP/150010002-0000000e", "Uniqueid1": "0f00dcaa884f-1508490669.30", "Privilege": "call,all", "CallerID1": "202", "Bridgestate": "Link", "CallerID2": "204", "Event": "Bridge", "content": "", "Uniqueid2": "0f00dcaa884f-1508490669.31", "Bridgetype": "core"}, - {"Clone": "SIP/150010004-0000000f", "Privilege": "call,all", "Original": "Local/ID690153@osvpi_route_phoneaccount-00000008;1", "CloneState": "Up", "Event": "Masquerade", "content": "", "OriginalState": "Up"}, - {"Privilege": "call,all", "Event": "Rename", "Newname": "SIP/150010004-0000000f", "Channel": "SIP/150010004-0000000f", "content": "", "Uniqueid": "0f00dcaa884f-1508490669.33"}, - {"Privilege": "call,all", "Event": "Rename", "Newname": "SIP/150010004-0000000f", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000008;1", "content": "", "Uniqueid": "0f00dcaa884f-1508490669.31"}, - {"Privilege": "call,all", "Event": "Rename", "Newname": "Local/ID690153@osvpi_route_phoneaccount-00000008;1", "Channel": "SIP/150010004-0000000f", "content": "", "Uniqueid": "0f00dcaa884f-1508490669.33"}, - {"Uniqueid": "0f00dcaa884f-1508490669.31", "Privilege": "call,all", "CallerIDName": "", "Event": "NewCallerid", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": "", "Channel": "SIP/150010004-0000000f", "CallerIDNum": "204"}, - {"Channel2": "Local/ID690153@osvpi_route_phoneaccount-00000008;1", "Channel1": "Local/ID690153@osvpi_route_phoneaccount-00000008;2", "Uniqueid1": "0f00dcaa884f-1508490669.32", "Privilege": "call,all", "CallerID1": "202", "Bridgestate": "Unlink", "CallerID2": "204", "Event": "Bridge", "content": "", "Uniqueid2": "0f00dcaa884f-1508490669.33", "Bridgetype": "core"}, - {"ConnectedLineNum": "202", "Cause-txt": "Normal Clearing", "Privilege": "call,all", "CallerIDName": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000008;1", "content": "", "ConnectedLineName": "David Meadows", "Cause": "16", "AccountCode": "150010002", "Event": "Hangup", "Uniqueid": "0f00dcaa884f-1508490669.33", "CallerIDNum": "204"}, - {"UniqueID": "0f00dcaa884f-1508490669.32", "Privilege": "call,all", "DialStatus": "ANSWER", "content": "", "Event": "Dial", "SubEvent": "End", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000008;2"}, - {"ConnectedLineNum": "204", "Cause-txt": "Normal Clearing", "Privilege": "call,all", "CallerIDName": "David Meadows", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000008;2", "content": "", "ConnectedLineName": "", "Cause": "16", "AccountCode": "150010002", "Event": "Hangup", "Uniqueid": "0f00dcaa884f-1508490669.32", "CallerIDNum": "202"}, - {"Channel2": "SIP/150010004-0000000f", "Channel1": "SIP/150010002-0000000e", "Uniqueid1": "0f00dcaa884f-1508490669.30", "Privilege": "call,all", "CallerID1": "202", "Bridgestate": "Unlink", "CallerID2": "204", "Event": "Bridge", "content": "", "Uniqueid2": "0f00dcaa884f-1508490669.31", "Bridgetype": "core"}, - {"ConnectedLineNum": "202", "Cause-txt": "Normal Clearing", "Privilege": "call,all", "CallerIDName": "", "Channel": "SIP/150010004-0000000f", "content": "", "ConnectedLineName": "David Meadows", "Cause": "16", "AccountCode": "150010002", "Event": "Hangup", "Uniqueid": "0f00dcaa884f-1508490669.31", "CallerIDNum": "204"}, - {"UniqueID": "0f00dcaa884f-1508490669.30", "Privilege": "call,all", "DialStatus": "ANSWER", "content": "", "Event": "Dial", "SubEvent": "End", "Channel": "SIP/150010002-0000000e"}, - {"ConnectedLineNum": "", "Cause-txt": "Normal Clearing", "Privilege": "call,all", "CallerIDName": "David Meadows", "Channel": "SIP/150010002-0000000e", "content": "", "ConnectedLineName": "", "Cause": "16", "AccountCode": "150010002", "Event": "Hangup", "Uniqueid": "0f00dcaa884f-1508490669.30", "CallerIDNum": "202"} -] diff --git a/tests/fixtures/simple/ab_busy.json b/tests/fixtures/simple/ab_busy.json deleted file mode 100644 index 5576243..0000000 --- a/tests/fixtures/simple/ab_busy.json +++ /dev/null @@ -1,281 +0,0 @@ -[ - {"Status": "Fully Booted", "Event": "FullyBooted", "Privilege": "system,all", "content": ""}, - {"Channel": "SIP/150010002-00000077", "CallerIDNum": "150010002", "Context": "osvpi_account", "Exten": "201", "Uniqueid": "63f2f9ce924a-1501851519.239", "Privilege": "call,all", "AccountCode": "150010002", "Event": "Newchannel", "CallerIDName": "Docker", "content": "", "ChannelState": "0", "ChannelStateDesc": "Down"}, - {"Event": "VarSet", "Value": "sip:150010002@10.13.36.116:5060", "Channel": "SIP/150010002-00000077", "Variable": "SIPURI", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "10.13.37.110", "Channel": "SIP/150010002-00000077", "Variable": "SIPDOMAIN", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "7a6c1cdc-f178d566@10.13.36.116", "Channel": "SIP/150010002-00000077", "Variable": "SIPCALLID", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "15001", "Channel": "SIP/150010002-00000077", "Variable": "__client_id", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "150010002", "Channel": "SIP/150010002-00000077", "Variable": "__account_id", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "no", "Channel": "SIP/150010002-00000077", "Variable": "__record_call", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "31", "Channel": "SIP/150010002-00000077", "Variable": "__intprefix", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "4", "Channel": "SIP/150010002-00000077", "Variable": "__limit_account", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "0", "Channel": "SIP/150010002-00000077", "Variable": "__limit_client", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "1", "Channel": "SIP/150010002-00000077", "Variable": "__hide_ext_cliname", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "osvpi_account_transfer", "Channel": "SIP/150010002-00000077", "Variable": "__TRANSFER_CONTEXT", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"CallerIDName": "Docker", "Event": "Newstate", "Uniqueid": "63f2f9ce924a-1501851519.239", "ConnectedLineNum": "", "Channel": "SIP/150010002-00000077", "CallerIDNum": "150010002", "ChannelState": "4", "content": "", "Privilege": "call,all", "ChannelStateDesc": "Ring", "ConnectedLineName": ""}, - {"Application": "ExecIf", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_account", "Extension": "201", "AppData": "0?GotoIf(0?osvpi_proc_hangup_insecure,201,1)", "Priority": "1", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Application": "Gosub", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_account", "Extension": "201", "AppData": "osvpi_proc_check_forwards,s,1", "Priority": "2", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "VarSet", "Value": "0", "Channel": "SIP/150010002-00000077", "Variable": "LOCAL(ARGC)", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_proc_check_forwards", "Extension": "s", "AppData": "0?check,1", "Priority": "1", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_proc_check_forwards", "Extension": "s", "AppData": "LOCAL(tmp)=70", "Priority": "2", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "VarSet", "Value": "70", "Channel": "SIP/150010002-00000077", "Variable": "LOCAL(tmp)", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Application": "ExecIf", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_proc_check_forwards", "Extension": "s", "AppData": "0?Goto(init,1)", "Priority": "3", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Application": "ExecIf", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_proc_check_forwards", "Extension": "s", "AppData": "1?Goto(init,1)", "Priority": "4", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_proc_check_forwards", "Extension": "init", "AppData": "MASTER_CHANNEL(SIP_MAX_FORWARDS)=16", "Priority": "1", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "VarSet", "Value": "16", "Channel": "SIP/150010002-00000077", "Variable": "SIP_MAX_FORWARDS", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Application": "NoOp", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_proc_check_forwards", "Extension": "init", "AppData": "DEBUG: MaxForwards: initialized to: 16", "Priority": "2", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Application": "Return", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_proc_check_forwards", "Extension": "init", "AppData": "", "Priority": "3", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "VarSet", "Value": "", "Channel": "SIP/150010002-00000077", "Variable": "GOSUB_RETVAL", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_account", "Extension": "201", "AppData": "0?osvpi_account_transfer,201,1", "Priority": "3", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Application": "NoOp", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_account", "Extension": "201", "AppData": "ENTRY POINT username=150010002,ip=172.20.0.13/172.20.0.13,from=sip:150010002@10.13.37.110,contact=sip:150010002@10.13.36.116:5060,ua=Cisco/SPA504G-7.5.2b,name=Docker,num=150010002,pres=allowed_not_screened", "Priority": "4", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_account", "Extension": "201", "AppData": "is_transfer=0", "Priority": "5", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "VarSet", "Value": "0", "Channel": "SIP/150010002-00000077", "Variable": "is_transfer", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_account", "Extension": "201", "AppData": "CDR(amaflags)=BILLING", "Priority": "6", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_account", "Extension": "201", "AppData": "user_privacy=0", "Priority": "7", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "VarSet", "Value": "0", "Channel": "SIP/150010002-00000077", "Variable": "user_privacy", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Application": "ExecIf", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_account", "Extension": "201", "AppData": "1?Set(__supports_progress=1)", "Priority": "8", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "VarSet", "Value": "1", "Channel": "SIP/150010002-00000077", "Variable": "__supports_progress", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Application": "Gosub", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_account", "Extension": "201", "AppData": "osvpi_proc_record_call,s-no,1(out,15001,150010002)", "Priority": "9", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "VarSet", "Value": "out", "Channel": "SIP/150010002-00000077", "Variable": "LOCAL(ARG1)", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "15001", "Channel": "SIP/150010002-00000077", "Variable": "LOCAL(ARG2)", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "150010002", "Channel": "SIP/150010002-00000077", "Variable": "LOCAL(ARG3)", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "3", "Channel": "SIP/150010002-00000077", "Variable": "LOCAL(ARGC)", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Application": "Return", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_proc_record_call", "Extension": "s-no", "AppData": "", "Priority": "1", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "VarSet", "Value": "", "Channel": "SIP/150010002-00000077", "Variable": "GOSUB_RETVAL", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_account", "Extension": "201", "AppData": "l_tmp=", "Priority": "10", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "VarSet", "Value": "", "Channel": "SIP/150010002-00000077", "Variable": "l_tmp", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Application": "ExecIf", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_account", "Extension": "201", "AppData": "1?Set(l_tmp=)", "Priority": "11", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "VarSet", "Value": "", "Channel": "SIP/150010002-00000077", "Variable": "l_tmp", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_account", "Extension": "201", "AppData": "1?checkprivacy", "Priority": "12", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Application": "ExecIf", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_account", "Extension": "201", "AppData": "0?Set(CALLERID(pres)=allowed_passed_screen)", "Priority": "16", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Application": "ExecIf", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_account", "Extension": "201", "AppData": "0?Set(CALLERID(pres)=prohib_passed_screen)", "Priority": "17", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Application": "ExecIf", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_account", "Extension": "201", "AppData": "0?Set(CHANNEL(musicclass)=)", "Priority": "18", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_account", "Extension": "201", "AppData": "1?continue", "Priority": "19", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Application": "Gosub", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_account", "Extension": "201", "AppData": "osvpi_proc_set_i18n_region,31,1", "Priority": "22", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "VarSet", "Value": "0", "Channel": "SIP/150010002-00000077", "Variable": "LOCAL(ARGC)", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_proc_set_i18n_region", "Extension": "31", "AppData": "i18n_region=NL", "Priority": "1", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "VarSet", "Value": "NL", "Channel": "SIP/150010002-00000077", "Variable": "i18n_region", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Application": "Return", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_proc_set_i18n_region", "Extension": "31", "AppData": "", "Priority": "2", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "VarSet", "Value": "", "Channel": "SIP/150010002-00000077", "Variable": "GOSUB_RETVAL", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Application": "Goto", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_account", "Extension": "201", "AppData": "osvpi_account_emergency_NL,201,1", "Priority": "23", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Application": "Goto", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_account_emergency_NL", "Extension": "201", "AppData": "osvpi_account_no_emergency,201,1", "Priority": "1", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Application": "Goto", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_account_no_emergency", "Extension": "201", "AppData": "osvpi_account,201,no-emergency", "Priority": "1", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Application": "Goto", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_account", "Extension": "201", "AppData": "osvpi_account_clean,201,1", "Priority": "24", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_account_clean", "Extension": "201", "AppData": "return=osvpi_account_clean", "Priority": "1", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "VarSet", "Value": "osvpi_account_clean", "Channel": "SIP/150010002-00000077", "Variable": "return", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Application": "Goto", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_account_clean", "Extension": "201", "AppData": "osvpi_return_to_canonical,31i201,1", "Priority": "2", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "VarSet", "Value": "31i201", "Channel": "SIP/150010002-00000077", "Variable": "INVALID_EXTEN", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Application": "Goto", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_return_to_canonical", "Extension": "i", "AppData": "osvpi_account_clean,201,local", "Priority": "1", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_account_clean", "Extension": "201", "AppData": "0?extern", "Priority": "3", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Application": "Gosub", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_account_clean", "Extension": "201", "AppData": "osvpi_proc_set_callerid,201,1(150010002,0,0)", "Priority": "4", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "VarSet", "Value": "150010002", "Channel": "SIP/150010002-00000077", "Variable": "LOCAL(ARG1)", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "0", "Channel": "SIP/150010002-00000077", "Variable": "LOCAL(ARG2)", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "0", "Channel": "SIP/150010002-00000077", "Variable": "LOCAL(ARG3)", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "3", "Channel": "SIP/150010002-00000077", "Variable": "LOCAL(ARGC)", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_proc_set_callerid", "Extension": "201", "AppData": "0?done", "Priority": "1", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "VarSet", "Value": "1", "Channel": "SIP/150010002-00000077", "Variable": "ODBCROWS", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "SUCCESS", "Channel": "SIP/150010002-00000077", "Variable": "ODBCSTATUS", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "set,privacy,name,number_int,number_ext", "Channel": "SIP/150010002-00000077", "Variable": "~ODBCFIELDS~", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_proc_set_callerid", "Extension": "201", "AppData": "ARRAY(LOCAL(set),LOCAL(privacy),LOCAL(name),LOCAL(number_int),LOCAL(number_ext))=1,0,Robert Murray,202,+31150010001", "Priority": "2", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "VarSet", "Value": "1", "Channel": "SIP/150010002-00000077", "Variable": "LOCAL(set)", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "0", "Channel": "SIP/150010002-00000077", "Variable": "LOCAL(privacy)", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "Robert Murray", "Channel": "SIP/150010002-00000077", "Variable": "LOCAL(name)", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "202", "Channel": "SIP/150010002-00000077", "Variable": "LOCAL(number_int)", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "+31150010001", "Channel": "SIP/150010002-00000077", "Variable": "LOCAL(number_ext)", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_proc_set_callerid", "Extension": "201", "AppData": "0?presentation", "Priority": "3", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_proc_set_callerid", "Extension": "201", "AppData": "CALLERID(pres)=allowed_passed_screen", "Priority": "4", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_proc_set_callerid", "Extension": "201", "AppData": "CALLERID(name)=Robert Murray", "Priority": "5", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "NewCallerid", "CallerIDName": "Robert Murray", "Channel": "SIP/150010002-00000077", "CallerIDNum": "150010002", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "call,all", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_proc_set_callerid", "Extension": "201", "AppData": "CALLERID(num)=202", "Priority": "6", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "NewCallerid", "CallerIDName": "Robert Murray", "Channel": "SIP/150010002-00000077", "CallerIDNum": "202", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "call,all", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)"}, - {"Application": "ExecIf", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_proc_set_callerid", "Extension": "201", "AppData": "0?Set(CALLERID(pres)=prohib_passed_screen)", "Priority": "7", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_proc_set_callerid", "Extension": "201", "AppData": "CALLERID(ANI)=202", "Priority": "8", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Application": "Gosub", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_proc_set_callerid", "Extension": "201", "AppData": "osvpi_proc_set_callerid_internal,201,1", "Priority": "9", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "VarSet", "Value": "", "Channel": "SIP/150010002-00000077", "Variable": "LOCAL(ARG1)", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "", "Channel": "SIP/150010002-00000077", "Variable": "LOCAL(ARG2)", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "", "Channel": "SIP/150010002-00000077", "Variable": "LOCAL(ARG3)", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "0", "Channel": "SIP/150010002-00000077", "Variable": "LOCAL(ARGC)", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_proc_set_callerid_internal", "Extension": "201", "AppData": "1?nop", "Priority": "1", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Application": "ExecIf", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_proc_set_callerid_internal", "Extension": "201", "AppData": "0?Set(CALLERID(ANI)=20)", "Priority": "5", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Application": "Return", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_proc_set_callerid_internal", "Extension": "201", "AppData": "", "Priority": "6", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "VarSet", "Value": "", "Channel": "SIP/150010002-00000077", "Variable": "GOSUB_RETVAL", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Application": "Return", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_proc_set_callerid", "Extension": "201", "AppData": "", "Priority": "10", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "VarSet", "Value": "", "Channel": "SIP/150010002-00000077", "Variable": "GOSUB_RETVAL", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_account_clean", "Extension": "201", "AppData": "3?osvpi_account_call_int,201,1:i,1", "Priority": "5", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Application": "Gosub", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_account_call_int", "Extension": "201", "AppData": "osvpi_proc_check_limits,201,1", "Priority": "1", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "VarSet", "Value": "0", "Channel": "SIP/150010002-00000077", "Variable": "LOCAL(ARGC)", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Application": "NoOp", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_proc_check_limits", "Extension": "201", "AppData": "DEBUG: call_limit: client 0/0 and account 0/4", "Priority": "1", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_proc_check_limits", "Extension": "201", "AppData": "0?osvpi_handle_limit,201,client", "Priority": "2", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_proc_check_limits", "Extension": "201", "AppData": "0?osvpi_handle_limit,201,account", "Priority": "3", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_proc_check_limits", "Extension": "201", "AppData": "GROUP(account_lim)=150010002", "Priority": "4", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_proc_check_limits", "Extension": "201", "AppData": "GROUP(client_lim)=15001", "Priority": "5", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Application": "Return", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_proc_check_limits", "Extension": "201", "AppData": "", "Priority": "6", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "VarSet", "Value": "", "Channel": "SIP/150010002-00000077", "Variable": "GOSUB_RETVAL", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Application": "Gosub", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_account_call_int", "Extension": "201", "AppData": "osvpi_proc_check_recurse,201,1(15001)", "Priority": "2", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "VarSet", "Value": "15001", "Channel": "SIP/150010002-00000077", "Variable": "LOCAL(ARG1)", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "1", "Channel": "SIP/150010002-00000077", "Variable": "LOCAL(ARGC)", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_proc_check_recurse", "Extension": "201", "AppData": "LOCAL(exten)=15001:201", "Priority": "1", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "VarSet", "Value": "15001:201", "Channel": "SIP/150010002-00000077", "Variable": "LOCAL(exten)", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Application": "NoOp", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_proc_check_recurse", "Extension": "201", "AppData": "Recursion checking 15001:201 against ", "Priority": "2", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_proc_check_recurse", "Extension": "201", "AppData": "LOCAL(n)=0", "Priority": "3", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "VarSet", "Value": "0", "Channel": "SIP/150010002-00000077", "Variable": "LOCAL(n)", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_proc_check_recurse", "Extension": "201", "AppData": "LOCAL(i)=1", "Priority": "4", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "VarSet", "Value": "1", "Channel": "SIP/150010002-00000077", "Variable": "LOCAL(i)", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_proc_check_recurse", "Extension": "201", "AppData": "1?add", "Priority": "5", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_proc_check_recurse", "Extension": "201", "AppData": "__EXTEN_LIST=15001:201 ", "Priority": "9", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "VarSet", "Value": "15001:201 ", "Channel": "SIP/150010002-00000077", "Variable": "__EXTEN_LIST", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_proc_check_recurse", "Extension": "201", "AppData": "__EXTEN_LIST_LAST_EDIT_TIME=1501851519", "Priority": "10", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "VarSet", "Value": "1501851519", "Channel": "SIP/150010002-00000077", "Variable": "__EXTEN_LIST_LAST_EDIT_TIME", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Application": "Return", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_proc_check_recurse", "Extension": "201", "AppData": "", "Priority": "11", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "VarSet", "Value": "", "Channel": "SIP/150010002-00000077", "Variable": "GOSUB_RETVAL", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_account_call_int", "Extension": "201", "AppData": "__ORIG_EXTEN=201", "Priority": "3", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "VarSet", "Value": "201", "Channel": "SIP/150010002-00000077", "Variable": "__ORIG_EXTEN", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "0", "Channel": "SIP/150010002-00000077", "Variable": "ODBCROWS", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "NODATA", "Channel": "SIP/150010002-00000077", "Variable": "ODBCSTATUS", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_account_call_int", "Extension": "201", "AppData": "ARRAY(conference_id,user_password,admin_password,conference_language)=", "Priority": "4", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "VarSet", "Value": "", "Channel": "SIP/150010002-00000077", "Variable": "conference_id", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "", "Channel": "SIP/150010002-00000077", "Variable": "user_password", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "", "Channel": "SIP/150010002-00000077", "Variable": "admin_password", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "", "Channel": "SIP/150010002-00000077", "Variable": "conference_language", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_account_call_int", "Extension": "201", "AppData": "0?osvpi_route_conference,ID,1", "Priority": "5", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "VarSet", "Value": "0", "Channel": "SIP/150010002-00000077", "Variable": "ODBCROWS", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "NODATA", "Channel": "SIP/150010002-00000077", "Variable": "ODBCSTATUS", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_account_call_int", "Extension": "201", "AppData": "ARRAY(route_id,client_timezone)=", "Priority": "6", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "VarSet", "Value": "", "Channel": "SIP/150010002-00000077", "Variable": "route_id", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "", "Channel": "SIP/150010002-00000077", "Variable": "client_timezone", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_account_call_int", "Extension": "201", "AppData": "0?osvpi_route_root,201,restart", "Priority": "7", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "VarSet", "Value": "0", "Channel": "SIP/150010002-00000077", "Variable": "ODBCROWS", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "NODATA", "Channel": "SIP/150010002-00000077", "Variable": "ODBCSTATUS", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_account_call_int", "Extension": "201", "AppData": "ARRAY(all_extensions,limited_extensions,password,account_spy_language)=", "Priority": "8", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "VarSet", "Value": "", "Channel": "SIP/150010002-00000077", "Variable": "all_extensions", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "", "Channel": "SIP/150010002-00000077", "Variable": "limited_extensions", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "", "Channel": "SIP/150010002-00000077", "Variable": "password", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "", "Channel": "SIP/150010002-00000077", "Variable": "account_spy_language", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_account_call_int", "Extension": "201", "AppData": "0?osvpi_account_spy,201,1", "Priority": "9", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "VarSet", "Value": "1", "Channel": "SIP/150010002-00000077", "Variable": "ODBCROWS", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "SUCCESS", "Channel": "SIP/150010002-00000077", "Variable": "ODBCSTATUS", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "interfaces", "Channel": "SIP/150010002-00000077", "Variable": "~ODBCFIELDS~", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_account_call_int", "Extension": "201", "AppData": "ARRAY(interfaces)=Local/ID710150@osvpi_route_phoneaccount", "Priority": "10", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "VarSet", "Value": "Local/ID710150@osvpi_route_phoneaccount", "Channel": "SIP/150010002-00000077", "Variable": "interfaces", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_account_call_int", "Extension": "201", "AppData": "0?osvpi_handle_unallocated,201,1", "Priority": "11", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Application": "Dial", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_account_call_int", "Extension": "201", "AppData": "Local/ID710150@osvpi_route_phoneaccount", "Priority": "12", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "VarSet", "Value": "", "Channel": "SIP/150010002-00000077", "Variable": "DIALSTATUS", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "", "Channel": "SIP/150010002-00000077", "Variable": "DIALEDPEERNUMBER", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "", "Channel": "SIP/150010002-00000077", "Variable": "DIALEDPEERNAME", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "", "Channel": "SIP/150010002-00000077", "Variable": "ANSWEREDTIME", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "", "Channel": "SIP/150010002-00000077", "Variable": "DIALEDTIME", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;1", "CallerIDNum": "", "Context": "osvpi_route_phoneaccount", "Exten": "ID710150", "Uniqueid": "63f2f9ce924a-1501851519.240", "Privilege": "call,all", "AccountCode": "", "Event": "Newchannel", "CallerIDName": "", "content": "", "ChannelState": "0", "ChannelStateDesc": "Down"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "CallerIDNum": "", "Context": "osvpi_route_phoneaccount", "Exten": "ID710150", "Uniqueid": "63f2f9ce924a-1501851519.241", "Privilege": "call,all", "AccountCode": "", "Event": "Newchannel", "CallerIDName": "", "content": "", "ChannelState": "4", "ChannelStateDesc": "Ring"}, - {"Event": "VarSet", "Value": "ID710150@osvpi_route_phoneaccount", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;1", "Variable": "DIALEDPEERNUMBER", "Uniqueid": "63f2f9ce924a-1501851519.240", "content": "", "Privilege": "dialplan,all"}, - {"Event": "NewCallerid", "CallerIDName": "", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;1", "CallerIDNum": "201", "Uniqueid": "63f2f9ce924a-1501851519.240", "content": "", "Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"Channel2": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Channel1": "Local/ID710150@osvpi_route_phoneaccount-0000003b;1", "LocalOptimization": "Yes", "Event": "LocalBridge", "Uniqueid1": "63f2f9ce924a-1501851519.240", "Uniqueid2": "63f2f9ce924a-1501851519.241", "Context": "osvpi_route_phoneaccount", "Exten": "ID710150", "content": "", "Privilege": "call,all"}, - {"SubEvent": "Begin", "Dialstring": "ID710150@osvpi_route_phoneaccount", "DestUniqueID": "63f2f9ce924a-1501851519.240", "Channel": "SIP/150010002-00000077", "CallerIDNum": "202", "Destination": "Local/ID710150@osvpi_route_phoneaccount-0000003b;1", "Privilege": "call,all", "ConnectedLineNum": "", "ConnectedLineName": "", "Event": "Dial", "CallerIDName": "Robert Murray", "UniqueID": "63f2f9ce924a-1501851519.239", "content": ""}, - {"Event": "VarSet", "Value": "1", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "ODBCROWS", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "SUCCESS", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "ODBCSTATUS", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "~ODBCFIELDS~", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Context": "osvpi_route_phoneaccount", "Extension": "ID710150", "AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=150010001,accountid,dutch,from,,0", "Priority": "1", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.241"}, - {"Event": "VarSet", "Value": "150010001", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "__dst_account_id", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "accountid", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "l_mangle_did", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "dutch", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "l_mangle_cli", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "from", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "l_cli_header", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "l_primary_pickupgroup", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "0", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "app_account", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Context": "osvpi_route_phoneaccount", "Extension": "ID710150", "AppData": "0?vialer", "Priority": "2", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.241"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Context": "osvpi_route_phoneaccount", "Extension": "ID710150", "AppData": "_PICKUPMARK=", "Priority": "3", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.241"}, - {"Event": "VarSet", "Value": "", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "_PICKUPMARK", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Context": "osvpi_route_phoneaccount", "Extension": "ID710150", "AppData": "l_trunk=0", "Priority": "4", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.241"}, - {"Event": "VarSet", "Value": "0", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "l_trunk", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Application": "Goto", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Context": "osvpi_route_phoneaccount", "Extension": "ID710150", "AppData": "osvpi_route_account,ID710150,1", "Priority": "5", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.241"}, - {"Event": "VarSet", "Value": "1", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "ODBCROWS", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "SUCCESS", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "ODBCSTATUS", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "proxy", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "~ODBCFIELDS~", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Context": "osvpi_route_account", "Extension": "ID710150", "AppData": "ARRAY(l_proxy)=172.20.0.13", "Priority": "1", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.241"}, - {"Event": "VarSet", "Value": "172.20.0.13", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "l_proxy", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Application": "Gosub", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Context": "osvpi_route_account", "Extension": "ID710150", "AppData": "osvpi_proc_mangle_number,accountid,1(150010001,201)", "Priority": "2", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.241"}, - {"Event": "VarSet", "Value": "150010001", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "LOCAL(ARG1)", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "201", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "LOCAL(ARG2)", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "2", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "LOCAL(ARGC)", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Context": "osvpi_proc_mangle_number", "Extension": "accountid", "AppData": "MANGLED_EXTEN=150010001", "Priority": "1", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.241"}, - {"Event": "VarSet", "Value": "150010001", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "MANGLED_EXTEN", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Application": "Return", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Context": "osvpi_proc_mangle_number", "Extension": "accountid", "AppData": "", "Priority": "2", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.241"}, - {"Event": "VarSet", "Value": "", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "GOSUB_RETVAL", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Context": "osvpi_route_account", "Extension": "ID710150", "AppData": "l_did=150010001", "Priority": "3", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.241"}, - {"Event": "VarSet", "Value": "150010001", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "l_did", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Application": "Gosub", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Context": "osvpi_route_account", "Extension": "ID710150", "AppData": "osvpi_proc_mangle_number,dutch,1(150010001,202)", "Priority": "4", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.241"}, - {"Event": "VarSet", "Value": "150010001", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "LOCAL(ARG1)", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "202", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "LOCAL(ARG2)", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "2", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "LOCAL(ARGC)", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Context": "osvpi_proc_mangle_number", "Extension": "dutch", "AppData": "1?fullzero,1", "Priority": "1", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.241"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Context": "osvpi_proc_mangle_number", "Extension": "fullzero", "AppData": "MANGLED_EXTEN=202", "Priority": "1", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.241"}, - {"Event": "VarSet", "Value": "202", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "MANGLED_EXTEN", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Application": "Return", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Context": "osvpi_proc_mangle_number", "Extension": "fullzero", "AppData": "", "Priority": "2", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.241"}, - {"Event": "VarSet", "Value": "", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "GOSUB_RETVAL", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Context": "osvpi_route_account", "Extension": "ID710150", "AppData": "l_mangle_cli_hdr=from-dutch", "Priority": "5", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.241"}, - {"Event": "VarSet", "Value": "from-dutch", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "l_mangle_cli_hdr", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Context": "osvpi_route_account", "Extension": "ID710150", "AppData": "l_fromuser=", "Priority": "6", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.241"}, - {"Event": "VarSet", "Value": "", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "l_fromuser", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Application": "ExecIf", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Context": "osvpi_route_account", "Extension": "ID710150", "AppData": "1?Set(l_fromuser=202)", "Priority": "7", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.241"}, - {"Event": "VarSet", "Value": "202", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "l_fromuser", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "1", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "ODBCROWS", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "SUCCESS", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "ODBCSTATUS", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "IF((SELECT 1 FROM baseaccount_account ba INNER JOIN userdestination_selecteduserdestination udsud ON udsud.phoneaccount_id = ba.id INNER JOIN userdestination_userdestination udud ON udud.id = udsud.userdestination_id INNER JOIN crm_cloudctiuser cccu O", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "~ODBCFIELDS~", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Context": "osvpi_route_account", "Extension": "ID710150", "AppData": "ARRAY(cloudcti)=0", "Priority": "8", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.241"}, - {"Event": "VarSet", "Value": "0", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "cloudcti", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Context": "osvpi_route_account", "Extension": "ID710150", "AppData": "1?skipcloudcti", "Priority": "9", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.241"}, - {"Application": "Goto", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Context": "osvpi_route_account", "Extension": "ID710150", "AppData": "osvpi_proc_proxy_out,201,1", "Priority": "11", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.241"}, - {"Application": "SIPAddHeader", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Context": "osvpi_proc_proxy_out", "Extension": "201", "AppData": "X-Accountcode: 150010001", "Priority": "1", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.241"}, - {"Event": "VarSet", "Value": "X-Accountcode: 150010001", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "__SIPADDHEADER01", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Application": "SIPAddHeader", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Context": "osvpi_proc_proxy_out", "Extension": "201", "AppData": "X-Insecure-Protection: geheim", "Priority": "2", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.241"}, - {"Event": "VarSet", "Value": "X-Insecure-Protection: geheim", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "__SIPADDHEADER02", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Application": "SIPAddHeader", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Context": "osvpi_proc_proxy_out", "Extension": "201", "AppData": "X-Mangle-Cli: from-dutch", "Priority": "3", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.241"}, - {"Event": "VarSet", "Value": "X-Mangle-Cli: from-dutch", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "__SIPADDHEADER03", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Context": "osvpi_proc_proxy_out", "Extension": "201", "AppData": "_dial_options_callaccept=", "Priority": "4", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.241"}, - {"Event": "VarSet", "Value": "", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "_dial_options_callaccept", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Context": "osvpi_proc_proxy_out", "Extension": "201", "AppData": "_dial_options_callnotify=", "Priority": "5", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.241"}, - {"Event": "VarSet", "Value": "", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "_dial_options_callnotify", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Application": "ExecIf", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Context": "osvpi_proc_proxy_out", "Extension": "201", "AppData": "0?Set(l_proxy=opensipsfg)", "Priority": "6", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.241"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Context": "osvpi_proc_proxy_out", "Extension": "201", "AppData": "l_extra_options=", "Priority": "7", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.241"}, - {"Event": "VarSet", "Value": "", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "l_extra_options", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Application": "Dial", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Context": "osvpi_proc_proxy_out", "Extension": "201", "AppData": "SIP/150010001/150010001/172.20.0.13!!202,,", "Priority": "8", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.241"}, - {"Event": "VarSet", "Value": "", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "DIALSTATUS", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "DIALEDPEERNUMBER", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "DIALEDPEERNAME", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "ANSWEREDTIME", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "DIALEDTIME", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"Channel": "SIP/150010001-00000078", "CallerIDNum": "", "Context": "osvpi_account", "Exten": "", "Uniqueid": "63f2f9ce924a-1501851519.242", "Privilege": "call,all", "AccountCode": "150010001", "Event": "Newchannel", "CallerIDName": "", "content": "", "ChannelState": "0", "ChannelStateDesc": "Down"}, - {"Event": "VarSet", "Value": "09d432c01c37499a331cbd352944d893@test.voipgrid.nl", "Channel": "SIP/150010001-00000078", "Variable": "SIPCALLID", "Uniqueid": "63f2f9ce924a-1501851519.242", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "15001", "Channel": "SIP/150010001-00000078", "Variable": "__client_id", "Uniqueid": "63f2f9ce924a-1501851519.242", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "150010001", "Channel": "SIP/150010001-00000078", "Variable": "__account_id", "Uniqueid": "63f2f9ce924a-1501851519.242", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "no", "Channel": "SIP/150010001-00000078", "Variable": "__record_call", "Uniqueid": "63f2f9ce924a-1501851519.242", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "31", "Channel": "SIP/150010001-00000078", "Variable": "__intprefix", "Uniqueid": "63f2f9ce924a-1501851519.242", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "4", "Channel": "SIP/150010001-00000078", "Variable": "__limit_account", "Uniqueid": "63f2f9ce924a-1501851519.242", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "0", "Channel": "SIP/150010001-00000078", "Variable": "__limit_client", "Uniqueid": "63f2f9ce924a-1501851519.242", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "1", "Channel": "SIP/150010001-00000078", "Variable": "__hide_ext_cliname", "Uniqueid": "63f2f9ce924a-1501851519.242", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "osvpi_account_transfer", "Channel": "SIP/150010001-00000078", "Variable": "__TRANSFER_CONTEXT", "Uniqueid": "63f2f9ce924a-1501851519.242", "content": "", "Privilege": "dialplan,all"}, - {"Event": "VarSet", "Value": "150010001/150010001/172.20.0.13!!202", "Channel": "SIP/150010001-00000078", "Variable": "DIALEDPEERNUMBER", "Uniqueid": "63f2f9ce924a-1501851519.242", "content": "", "Privilege": "dialplan,all"}, - {"Event": "NewCallerid", "CallerIDName": "", "Channel": "SIP/150010001-00000078", "CallerIDNum": "201", "Uniqueid": "63f2f9ce924a-1501851519.242", "content": "", "Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"SubEvent": "Begin", "Dialstring": "150010001/150010001/172.20.0.13!!202", "DestUniqueID": "63f2f9ce924a-1501851519.242", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "CallerIDNum": "202", "Destination": "SIP/150010001-00000078", "Privilege": "call,all", "ConnectedLineNum": "201", "ConnectedLineName": "", "Event": "Dial", "CallerIDName": "Robert Murray", "UniqueID": "63f2f9ce924a-1501851519.241", "content": ""}, - {"CallerIDName": "", "Event": "Newstate", "Uniqueid": "63f2f9ce924a-1501851519.242", "ConnectedLineNum": "202", "Channel": "SIP/150010001-00000078", "CallerIDNum": "201", "ChannelState": "5", "content": "", "Privilege": "call,all", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Robert Murray"}, - {"CallerIDName": "", "Event": "Newstate", "Uniqueid": "63f2f9ce924a-1501851519.240", "ConnectedLineNum": "202", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;1", "CallerIDNum": "201", "ChannelState": "5", "content": "", "Privilege": "call,all", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Robert Murray"}, - {"Cause-txt": "User busy", "Channel": "SIP/150010001-00000078", "CallerIDNum": "201", "Uniqueid": "63f2f9ce924a-1501851519.242", "Privilege": "call,all", "AccountCode": "150010002", "ConnectedLineNum": "202", "ConnectedLineName": "Robert Murray", "Event": "Hangup", "CallerIDName": "", "Cause": "17", "content": ""}, - {"Event": "VarSet", "Value": "BUSY", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Variable": "DIALSTATUS", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "dialplan,all"}, - {"SubEvent": "End", "Event": "Dial", "DialStatus": "BUSY", "UniqueID": "63f2f9ce924a-1501851519.241", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "content": "", "Privilege": "call,all"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Context": "osvpi_proc_proxy_out", "Extension": "201", "AppData": "1?falloff", "Priority": "9", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.241"}, - {"Application": "NoOp", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Context": "osvpi_proc_proxy_out", "Extension": "201", "AppData": "Got hangupcause 17 from peer 150010001 (did=150010001, cli=202, pres=allowed_passed_screen, status=BUSY, proxy=172.20.0.13)", "Priority": "12", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.241"}, - {"Application": "ExecIf", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Context": "osvpi_proc_proxy_out", "Extension": "201", "AppData": "1?Hangup(USER_BUSY)", "Priority": "13", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.241"}, - {"Event": "SoftHangupRequest", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Cause": "16", "Uniqueid": "63f2f9ce924a-1501851519.241", "content": "", "Privilege": "call,all"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Context": "handlers", "Extension": "onhangup", "AppData": "1?nosip", "Priority": "1", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.241"}, - {"Application": "GosubIf", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "Context": "handlers", "Extension": "onhangup", "AppData": "0?osvpi_proc_httptouch,s,1()", "Priority": "3", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.241"}, - {"Event": "VarSet", "Value": "BUSY", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;1", "Variable": "CHANLOCALSTATUS", "Uniqueid": "63f2f9ce924a-1501851519.240", "content": "", "Privilege": "dialplan,all"}, - {"Cause-txt": "User busy", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;2", "CallerIDNum": "202", "Uniqueid": "63f2f9ce924a-1501851519.241", "Privilege": "call,all", "AccountCode": "150010002", "ConnectedLineNum": "201", "ConnectedLineName": "", "Event": "Hangup", "CallerIDName": "Robert Murray", "Cause": "17", "content": ""}, - {"Cause-txt": "User busy", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003b;1", "CallerIDNum": "201", "Uniqueid": "63f2f9ce924a-1501851519.240", "Privilege": "call,all", "AccountCode": "150010002", "ConnectedLineNum": "202", "ConnectedLineName": "Robert Murray", "Event": "Hangup", "CallerIDName": "", "Cause": "17", "content": ""}, - {"Event": "VarSet", "Value": "BUSY", "Channel": "SIP/150010002-00000077", "Variable": "DIALSTATUS", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "dialplan,all"}, - {"SubEvent": "End", "Event": "Dial", "DialStatus": "BUSY", "UniqueID": "63f2f9ce924a-1501851519.239", "Channel": "SIP/150010002-00000077", "content": "", "Privilege": "call,all"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_account_call_int", "Extension": "201", "AppData": "1?osvpi_proc_hangup,201,1", "Priority": "13", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Application": "Hangup", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "osvpi_proc_hangup", "Extension": "201", "AppData": "17", "Priority": "1", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Event": "SoftHangupRequest", "Channel": "SIP/150010002-00000077", "Cause": "16", "Uniqueid": "63f2f9ce924a-1501851519.239", "content": "", "Privilege": "call,all"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "handlers", "Extension": "onhangup", "AppData": "0?nosip", "Priority": "1", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Application": "NoOp", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "handlers", "Extension": "onhangup", "AppData": "LOG: rtpqos: caller=172.20.0.254:55348;asterisk=0.0.0.0:10650;ssrc=1774203056;themssrc=0;lp=0;rxjitter=0.000000;rxcount=0;txjitter=0.000000;txcount=0;rlp=0;rtt=0.000000;billsec=0", "Priority": "2", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Application": "GosubIf", "Event": "Newexten", "Privilege": "dialplan,all", "Channel": "SIP/150010002-00000077", "Context": "handlers", "Extension": "onhangup", "AppData": "0?osvpi_proc_httptouch,s,1()", "Priority": "3", "content": "", "Uniqueid": "63f2f9ce924a-1501851519.239"}, - {"Cause-txt": "User busy", "Channel": "SIP/150010002-00000077", "CallerIDNum": "202", "Uniqueid": "63f2f9ce924a-1501851519.239", "Privilege": "call,all", "AccountCode": "150010002", "ConnectedLineNum": "", "ConnectedLineName": "", "Event": "Hangup", "CallerIDName": "Robert Murray", "Cause": "17", "content": ""} -] diff --git a/tests/fixtures/simple/ab_callgroup.json b/tests/fixtures/simple/ab_callgroup.json index 29a4b75..0a94d72 100644 --- a/tests/fixtures/simple/ab_callgroup.json +++ b/tests/fixtures/simple/ab_callgroup.json @@ -1,447 +1,71 @@ [ - {"content": "", "Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted"}, - {"CallerIDName": "Docker", "CallerIDNum": "150010002", "Exten": "401", "ChannelStateDesc": "Down", "Uniqueid": "63f2f9ce924a-1501852169.254", "ChannelState": "0", "AccountCode": "150010002", "Privilege": "call,all", "content": "", "Event": "Newchannel", "Channel": "SIP/150010002-0000007e", "Context": "osvpi_account"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "SIPURI", "Value": "sip:150010002@10.13.36.116:5060", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "SIPDOMAIN", "Value": "10.13.37.110", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "SIPCALLID", "Value": "5fa9a6a0-29123423@10.13.36.116", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "__client_id", "Value": "15001", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "__account_id", "Value": "150010002", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "__record_call", "Value": "no", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "__intprefix", "Value": "31", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "__limit_account", "Value": "4", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "__limit_client", "Value": "0", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "__hide_ext_cliname", "Value": "1", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "__TRANSFER_CONTEXT", "Value": "osvpi_account_transfer", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"ChannelState": "4", "CallerIDNum": "150010002", "Privilege": "call,all", "content": "", "Uniqueid": "63f2f9ce924a-1501852169.254", "ConnectedLineNum": "", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "Channel": "SIP/150010002-0000007e", "CallerIDName": "Docker", "Event": "Newstate"}, - {"Context": "osvpi_account", "Application": "ExecIf", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "0?GotoIf(0?osvpi_proc_hangup_insecure,401,1)", "Event": "Newexten", "Priority": "1", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Context": "osvpi_account", "Application": "Gosub", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "osvpi_proc_check_forwards,s,1", "Event": "Newexten", "Priority": "2", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "LOCAL(ARGC)", "Value": "0", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Context": "osvpi_proc_check_forwards", "Application": "GotoIf", "Privilege": "dialplan,all", "Extension": "s", "content": "", "AppData": "0?check,1", "Event": "Newexten", "Priority": "1", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Context": "osvpi_proc_check_forwards", "Application": "Set", "Privilege": "dialplan,all", "Extension": "s", "content": "", "AppData": "LOCAL(tmp)=70", "Event": "Newexten", "Priority": "2", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "LOCAL(tmp)", "Value": "70", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Context": "osvpi_proc_check_forwards", "Application": "ExecIf", "Privilege": "dialplan,all", "Extension": "s", "content": "", "AppData": "0?Goto(init,1)", "Event": "Newexten", "Priority": "3", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Context": "osvpi_proc_check_forwards", "Application": "ExecIf", "Privilege": "dialplan,all", "Extension": "s", "content": "", "AppData": "1?Goto(init,1)", "Event": "Newexten", "Priority": "4", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Context": "osvpi_proc_check_forwards", "Application": "Set", "Privilege": "dialplan,all", "Extension": "init", "content": "", "AppData": "MASTER_CHANNEL(SIP_MAX_FORWARDS)=16", "Event": "Newexten", "Priority": "1", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "SIP_MAX_FORWARDS", "Value": "16", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Context": "osvpi_proc_check_forwards", "Application": "NoOp", "Privilege": "dialplan,all", "Extension": "init", "content": "", "AppData": "DEBUG: MaxForwards: initialized to: 16", "Event": "Newexten", "Priority": "2", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Context": "osvpi_proc_check_forwards", "Application": "Return", "Privilege": "dialplan,all", "Extension": "init", "content": "", "AppData": "", "Event": "Newexten", "Priority": "3", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "GOSUB_RETVAL", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Context": "osvpi_account", "Application": "GotoIf", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "0?osvpi_account_transfer,401,1", "Event": "Newexten", "Priority": "3", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Context": "osvpi_account", "Application": "NoOp", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "ENTRY POINT username=150010002,ip=172.20.0.13/172.20.0.13,from=sip:150010002@10.13.37.110,contact=sip:150010002@10.13.36.116:5060,ua=Cisco/SPA504G-7.5.2b,name=Docker,num=150010002,pres=allowed_not_screened", "Event": "Newexten", "Priority": "4", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Context": "osvpi_account", "Application": "Set", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "is_transfer=0", "Event": "Newexten", "Priority": "5", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "is_transfer", "Value": "0", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Context": "osvpi_account", "Application": "Set", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "CDR(amaflags)=BILLING", "Event": "Newexten", "Priority": "6", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Context": "osvpi_account", "Application": "Set", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "user_privacy=0", "Event": "Newexten", "Priority": "7", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "user_privacy", "Value": "0", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Context": "osvpi_account", "Application": "ExecIf", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "1?Set(__supports_progress=1)", "Event": "Newexten", "Priority": "8", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "__supports_progress", "Value": "1", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Context": "osvpi_account", "Application": "Gosub", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "osvpi_proc_record_call,s-no,1(out,15001,150010002)", "Event": "Newexten", "Priority": "9", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "LOCAL(ARG1)", "Value": "out", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "LOCAL(ARG2)", "Value": "15001", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "LOCAL(ARG3)", "Value": "150010002", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "LOCAL(ARGC)", "Value": "3", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Context": "osvpi_proc_record_call", "Application": "Return", "Privilege": "dialplan,all", "Extension": "s-no", "content": "", "AppData": "", "Event": "Newexten", "Priority": "1", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "GOSUB_RETVAL", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Context": "osvpi_account", "Application": "Set", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "l_tmp=", "Event": "Newexten", "Priority": "10", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "l_tmp", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Context": "osvpi_account", "Application": "ExecIf", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "1?Set(l_tmp=)", "Event": "Newexten", "Priority": "11", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "l_tmp", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Context": "osvpi_account", "Application": "GotoIf", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "1?checkprivacy", "Event": "Newexten", "Priority": "12", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Context": "osvpi_account", "Application": "ExecIf", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "0?Set(CALLERID(pres)=allowed_passed_screen)", "Event": "Newexten", "Priority": "16", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Context": "osvpi_account", "Application": "ExecIf", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "0?Set(CALLERID(pres)=prohib_passed_screen)", "Event": "Newexten", "Priority": "17", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Context": "osvpi_account", "Application": "ExecIf", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "0?Set(CHANNEL(musicclass)=)", "Event": "Newexten", "Priority": "18", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Context": "osvpi_account", "Application": "GotoIf", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "1?continue", "Event": "Newexten", "Priority": "19", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Context": "osvpi_account", "Application": "Gosub", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "osvpi_proc_set_i18n_region,31,1", "Event": "Newexten", "Priority": "22", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "LOCAL(ARGC)", "Value": "0", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Context": "osvpi_proc_set_i18n_region", "Application": "Set", "Privilege": "dialplan,all", "Extension": "31", "content": "", "AppData": "i18n_region=NL", "Event": "Newexten", "Priority": "1", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "i18n_region", "Value": "NL", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Context": "osvpi_proc_set_i18n_region", "Application": "Return", "Privilege": "dialplan,all", "Extension": "31", "content": "", "AppData": "", "Event": "Newexten", "Priority": "2", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "GOSUB_RETVAL", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Context": "osvpi_account", "Application": "Goto", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "osvpi_account_emergency_NL,401,1", "Event": "Newexten", "Priority": "23", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Context": "osvpi_account_emergency_NL", "Application": "Goto", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "osvpi_account_no_emergency,401,1", "Event": "Newexten", "Priority": "1", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Context": "osvpi_account_no_emergency", "Application": "Goto", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "osvpi_account,401,no-emergency", "Event": "Newexten", "Priority": "1", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Context": "osvpi_account", "Application": "Goto", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "osvpi_account_clean,401,1", "Event": "Newexten", "Priority": "24", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Context": "osvpi_account_clean", "Application": "Set", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "return=osvpi_account_clean", "Event": "Newexten", "Priority": "1", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "return", "Value": "osvpi_account_clean", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Context": "osvpi_account_clean", "Application": "Goto", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "osvpi_return_to_canonical,31i401,1", "Event": "Newexten", "Priority": "2", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "INVALID_EXTEN", "Value": "31i401", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Context": "osvpi_return_to_canonical", "Application": "Goto", "Privilege": "dialplan,all", "Extension": "i", "content": "", "AppData": "osvpi_account_clean,401,local", "Event": "Newexten", "Priority": "1", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Context": "osvpi_account_clean", "Application": "GotoIf", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "0?extern", "Event": "Newexten", "Priority": "3", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Context": "osvpi_account_clean", "Application": "Gosub", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "osvpi_proc_set_callerid,401,1(150010002,0,0)", "Event": "Newexten", "Priority": "4", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "LOCAL(ARG1)", "Value": "150010002", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "LOCAL(ARG2)", "Value": "0", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "LOCAL(ARG3)", "Value": "0", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "LOCAL(ARGC)", "Value": "3", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Context": "osvpi_proc_set_callerid", "Application": "GotoIf", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "0?done", "Event": "Newexten", "Priority": "1", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "ODBCROWS", "Value": "1", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "ODBCSTATUS", "Value": "SUCCESS", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "~ODBCFIELDS~", "Value": "set,privacy,name,number_int,number_ext", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Context": "osvpi_proc_set_callerid", "Application": "Set", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "ARRAY(LOCAL(set),LOCAL(privacy),LOCAL(name),LOCAL(number_int),LOCAL(number_ext))=1,0,Robert Murray,202,+31150010001", "Event": "Newexten", "Priority": "2", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "LOCAL(set)", "Value": "1", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "LOCAL(privacy)", "Value": "0", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "LOCAL(name)", "Value": "Robert Murray", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "LOCAL(number_int)", "Value": "202", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "LOCAL(number_ext)", "Value": "+31150010001", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Context": "osvpi_proc_set_callerid", "Application": "GotoIf", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "0?presentation", "Event": "Newexten", "Priority": "3", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Context": "osvpi_proc_set_callerid", "Application": "Set", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "CALLERID(pres)=allowed_passed_screen", "Event": "Newexten", "Priority": "4", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Context": "osvpi_proc_set_callerid", "Application": "Set", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "CALLERID(name)=Robert Murray", "Event": "Newexten", "Priority": "5", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"CallerIDName": "Robert Murray", "CallerIDNum": "150010002", "Privilege": "call,all", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "content": "", "Event": "NewCallerid", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Context": "osvpi_proc_set_callerid", "Application": "Set", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "CALLERID(num)=202", "Event": "Newexten", "Priority": "6", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"CallerIDName": "Robert Murray", "CallerIDNum": "202", "Privilege": "call,all", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "content": "", "Event": "NewCallerid", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Context": "osvpi_proc_set_callerid", "Application": "ExecIf", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "0?Set(CALLERID(pres)=prohib_passed_screen)", "Event": "Newexten", "Priority": "7", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Context": "osvpi_proc_set_callerid", "Application": "Set", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "CALLERID(ANI)=202", "Event": "Newexten", "Priority": "8", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Context": "osvpi_proc_set_callerid", "Application": "Gosub", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "osvpi_proc_set_callerid_internal,401,1", "Event": "Newexten", "Priority": "9", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "LOCAL(ARG1)", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "LOCAL(ARG2)", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "LOCAL(ARG3)", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "LOCAL(ARGC)", "Value": "0", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Context": "osvpi_proc_set_callerid_internal", "Application": "GotoIf", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "1?nop", "Event": "Newexten", "Priority": "1", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Context": "osvpi_proc_set_callerid_internal", "Application": "ExecIf", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "0?Set(CALLERID(ANI)=20)", "Event": "Newexten", "Priority": "5", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Context": "osvpi_proc_set_callerid_internal", "Application": "Return", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "", "Event": "Newexten", "Priority": "6", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "GOSUB_RETVAL", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Context": "osvpi_proc_set_callerid", "Application": "Return", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "", "Event": "Newexten", "Priority": "10", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "GOSUB_RETVAL", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Context": "osvpi_account_clean", "Application": "GotoIf", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "3?osvpi_account_call_int,401,1:i,1", "Event": "Newexten", "Priority": "5", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Context": "osvpi_account_call_int", "Application": "Gosub", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "osvpi_proc_check_limits,401,1", "Event": "Newexten", "Priority": "1", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "LOCAL(ARGC)", "Value": "0", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Context": "osvpi_proc_check_limits", "Application": "NoOp", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "DEBUG: call_limit: client 0/0 and account 0/4", "Event": "Newexten", "Priority": "1", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Context": "osvpi_proc_check_limits", "Application": "GotoIf", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "0?osvpi_handle_limit,401,client", "Event": "Newexten", "Priority": "2", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Context": "osvpi_proc_check_limits", "Application": "GotoIf", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "0?osvpi_handle_limit,401,account", "Event": "Newexten", "Priority": "3", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Context": "osvpi_proc_check_limits", "Application": "Set", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "GROUP(account_lim)=150010002", "Event": "Newexten", "Priority": "4", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Context": "osvpi_proc_check_limits", "Application": "Set", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "GROUP(client_lim)=15001", "Event": "Newexten", "Priority": "5", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Context": "osvpi_proc_check_limits", "Application": "Return", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "", "Event": "Newexten", "Priority": "6", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "GOSUB_RETVAL", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Context": "osvpi_account_call_int", "Application": "Gosub", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "osvpi_proc_check_recurse,401,1(15001)", "Event": "Newexten", "Priority": "2", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "LOCAL(ARG1)", "Value": "15001", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "LOCAL(ARGC)", "Value": "1", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Context": "osvpi_proc_check_recurse", "Application": "Set", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "LOCAL(exten)=15001:401", "Event": "Newexten", "Priority": "1", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "LOCAL(exten)", "Value": "15001:401", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Context": "osvpi_proc_check_recurse", "Application": "NoOp", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "Recursion checking 15001:401 against ", "Event": "Newexten", "Priority": "2", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Context": "osvpi_proc_check_recurse", "Application": "Set", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "LOCAL(n)=0", "Event": "Newexten", "Priority": "3", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "LOCAL(n)", "Value": "0", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Context": "osvpi_proc_check_recurse", "Application": "Set", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "LOCAL(i)=1", "Event": "Newexten", "Priority": "4", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "LOCAL(i)", "Value": "1", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Context": "osvpi_proc_check_recurse", "Application": "GotoIf", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "1?add", "Event": "Newexten", "Priority": "5", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Context": "osvpi_proc_check_recurse", "Application": "Set", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "__EXTEN_LIST=15001:401 ", "Event": "Newexten", "Priority": "9", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "__EXTEN_LIST", "Value": "15001:401 ", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Context": "osvpi_proc_check_recurse", "Application": "Set", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "__EXTEN_LIST_LAST_EDIT_TIME=1501852169", "Event": "Newexten", "Priority": "10", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "__EXTEN_LIST_LAST_EDIT_TIME", "Value": "1501852169", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Context": "osvpi_proc_check_recurse", "Application": "Return", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "", "Event": "Newexten", "Priority": "11", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "GOSUB_RETVAL", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Context": "osvpi_account_call_int", "Application": "Set", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "__ORIG_EXTEN=401", "Event": "Newexten", "Priority": "3", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "__ORIG_EXTEN", "Value": "401", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "ODBCROWS", "Value": "0", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "ODBCSTATUS", "Value": "NODATA", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Context": "osvpi_account_call_int", "Application": "Set", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "ARRAY(conference_id,user_password,admin_password,conference_language)=", "Event": "Newexten", "Priority": "4", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "conference_id", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "user_password", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "admin_password", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "conference_language", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Context": "osvpi_account_call_int", "Application": "GotoIf", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "0?osvpi_route_conference,ID,1", "Event": "Newexten", "Priority": "5", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "ODBCROWS", "Value": "0", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "ODBCSTATUS", "Value": "NODATA", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Context": "osvpi_account_call_int", "Application": "Set", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "ARRAY(route_id,client_timezone)=", "Event": "Newexten", "Priority": "6", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "route_id", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "client_timezone", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Context": "osvpi_account_call_int", "Application": "GotoIf", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "0?osvpi_route_root,401,restart", "Event": "Newexten", "Priority": "7", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "ODBCROWS", "Value": "0", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "ODBCSTATUS", "Value": "NODATA", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Context": "osvpi_account_call_int", "Application": "Set", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "ARRAY(all_extensions,limited_extensions,password,account_spy_language)=", "Event": "Newexten", "Priority": "8", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "all_extensions", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "limited_extensions", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "password", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "account_spy_language", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Context": "osvpi_account_call_int", "Application": "GotoIf", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "0?osvpi_account_spy,401,1", "Event": "Newexten", "Priority": "9", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "ODBCROWS", "Value": "1", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "ODBCSTATUS", "Value": "SUCCESS", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "~ODBCFIELDS~", "Value": "interfaces", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Context": "osvpi_account_call_int", "Application": "Set", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "ARRAY(interfaces)=Local/ID710150@osvpi_route_phoneaccount&Local/ID710152@osvpi_route_phoneaccount", "Event": "Newexten", "Priority": "10", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "interfaces", "Value": "Local/ID710150@osvpi_route_phoneaccount&Local/ID710152@osvpi_route_phoneaccount", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Context": "osvpi_account_call_int", "Application": "GotoIf", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "0?osvpi_handle_unallocated,401,1", "Event": "Newexten", "Priority": "11", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Context": "osvpi_account_call_int", "Application": "Dial", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "Local/ID710150@osvpi_route_phoneaccount&Local/ID710152@osvpi_route_phoneaccount", "Event": "Newexten", "Priority": "12", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "DIALSTATUS", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "DIALEDPEERNUMBER", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "DIALEDPEERNAME", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "ANSWEREDTIME", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "DIALEDTIME", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"CallerIDName": "", "CallerIDNum": "", "Exten": "ID710150", "ChannelStateDesc": "Down", "Uniqueid": "63f2f9ce924a-1501852169.255", "ChannelState": "0", "AccountCode": "", "Privilege": "call,all", "content": "", "Event": "Newchannel", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;1", "Context": "osvpi_route_phoneaccount"}, - {"CallerIDName": "", "CallerIDNum": "", "Exten": "ID710150", "ChannelStateDesc": "Ring", "Uniqueid": "63f2f9ce924a-1501852169.256", "ChannelState": "4", "AccountCode": "", "Privilege": "call,all", "content": "", "Event": "Newchannel", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2", "Context": "osvpi_route_phoneaccount"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "DIALEDPEERNUMBER", "Value": "ID710150@osvpi_route_phoneaccount", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.255", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;1"}, - {"CallerIDName": "", "CallerIDNum": "401", "Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": "", "Event": "NewCallerid", "Uniqueid": "63f2f9ce924a-1501852169.255", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;1"}, - {"CallerIDName": "", "CallerIDNum": "", "Exten": "ID710152", "ChannelStateDesc": "Down", "Uniqueid": "63f2f9ce924a-1501852169.257", "ChannelState": "0", "AccountCode": "", "Privilege": "call,all", "content": "", "Event": "Newchannel", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;1", "Context": "osvpi_route_phoneaccount"}, - {"CallerIDName": "", "CallerIDNum": "", "Exten": "ID710152", "ChannelStateDesc": "Ring", "Uniqueid": "63f2f9ce924a-1501852169.258", "ChannelState": "4", "AccountCode": "", "Privilege": "call,all", "content": "", "Event": "Newchannel", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2", "Context": "osvpi_route_phoneaccount"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "DIALEDPEERNUMBER", "Value": "ID710152@osvpi_route_phoneaccount", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.257", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;1"}, - {"CallerIDName": "", "CallerIDNum": "401", "Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": "", "Event": "NewCallerid", "Uniqueid": "63f2f9ce924a-1501852169.257", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;1"}, - {"Channel1": "Local/ID710150@osvpi_route_phoneaccount-0000003f;1", "Uniqueid2": "63f2f9ce924a-1501852169.256", "Privilege": "call,all", "Channel2": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2", "Context": "osvpi_route_phoneaccount", "content": "", "LocalOptimization": "Yes", "Exten": "ID710150", "Uniqueid1": "63f2f9ce924a-1501852169.255", "Event": "LocalBridge"}, - {"CallerIDName": "Robert Murray", "CallerIDNum": "202", "Dialstring": "ID710150@osvpi_route_phoneaccount", "SubEvent": "Begin", "ConnectedLineNum": "", "DestUniqueID": "63f2f9ce924a-1501852169.255", "Channel": "SIP/150010002-0000007e", "Event": "Dial", "Destination": "Local/ID710150@osvpi_route_phoneaccount-0000003f;1", "content": "", "UniqueID": "63f2f9ce924a-1501852169.254", "ConnectedLineName": "", "Privilege": "call,all"}, - {"Channel1": "Local/ID710152@osvpi_route_phoneaccount-00000040;1", "Uniqueid2": "63f2f9ce924a-1501852169.258", "Privilege": "call,all", "Channel2": "Local/ID710152@osvpi_route_phoneaccount-00000040;2", "Context": "osvpi_route_phoneaccount", "content": "", "LocalOptimization": "Yes", "Exten": "ID710152", "Uniqueid1": "63f2f9ce924a-1501852169.257", "Event": "LocalBridge"}, - {"CallerIDName": "Robert Murray", "CallerIDNum": "202", "Dialstring": "ID710152@osvpi_route_phoneaccount", "SubEvent": "Begin", "ConnectedLineNum": "", "DestUniqueID": "63f2f9ce924a-1501852169.257", "Channel": "SIP/150010002-0000007e", "Event": "Dial", "Destination": "Local/ID710152@osvpi_route_phoneaccount-00000040;1", "content": "", "UniqueID": "63f2f9ce924a-1501852169.254", "ConnectedLineName": "", "Privilege": "call,all"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "ODBCROWS", "Value": "1", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "ODBCSTATUS", "Value": "SUCCESS", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "~ODBCFIELDS~", "Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "ODBCROWS", "Value": "1", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "ODBCSTATUS", "Value": "SUCCESS", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "~ODBCFIELDS~", "Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Context": "osvpi_route_phoneaccount", "Application": "Set", "Privilege": "dialplan,all", "Extension": "ID710150", "content": "", "AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=150010001,accountid,dutch,from,,0", "Event": "Newexten", "Priority": "1", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2", "Uniqueid": "63f2f9ce924a-1501852169.256"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "__dst_account_id", "Value": "150010001", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "l_mangle_did", "Value": "accountid", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "l_mangle_cli", "Value": "dutch", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "l_cli_header", "Value": "from", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "l_primary_pickupgroup", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "app_account", "Value": "0", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Context": "osvpi_route_phoneaccount", "Application": "GotoIf", "Privilege": "dialplan,all", "Extension": "ID710150", "content": "", "AppData": "0?vialer", "Event": "Newexten", "Priority": "2", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2", "Uniqueid": "63f2f9ce924a-1501852169.256"}, - {"Context": "osvpi_route_phoneaccount", "Application": "Set", "Privilege": "dialplan,all", "Extension": "ID710150", "content": "", "AppData": "_PICKUPMARK=", "Event": "Newexten", "Priority": "3", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2", "Uniqueid": "63f2f9ce924a-1501852169.256"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "_PICKUPMARK", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Context": "osvpi_route_phoneaccount", "Application": "Set", "Privilege": "dialplan,all", "Extension": "ID710150", "content": "", "AppData": "l_trunk=0", "Event": "Newexten", "Priority": "4", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2", "Uniqueid": "63f2f9ce924a-1501852169.256"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "l_trunk", "Value": "0", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Context": "osvpi_route_phoneaccount", "Application": "Goto", "Privilege": "dialplan,all", "Extension": "ID710150", "content": "", "AppData": "osvpi_route_account,ID710150,1", "Event": "Newexten", "Priority": "5", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2", "Uniqueid": "63f2f9ce924a-1501852169.256"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "ODBCROWS", "Value": "1", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "ODBCSTATUS", "Value": "SUCCESS", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "~ODBCFIELDS~", "Value": "proxy", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Context": "osvpi_route_phoneaccount", "Application": "Set", "Privilege": "dialplan,all", "Extension": "ID710152", "content": "", "AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=150010003,accountid,dutch,from,450110,0", "Event": "Newexten", "Priority": "1", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2", "Uniqueid": "63f2f9ce924a-1501852169.258"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "__dst_account_id", "Value": "150010003", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "l_mangle_did", "Value": "accountid", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "l_mangle_cli", "Value": "dutch", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "l_cli_header", "Value": "from", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "l_primary_pickupgroup", "Value": "450110", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "app_account", "Value": "0", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Context": "osvpi_route_phoneaccount", "Application": "GotoIf", "Privilege": "dialplan,all", "Extension": "ID710152", "content": "", "AppData": "0?vialer", "Event": "Newexten", "Priority": "2", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2", "Uniqueid": "63f2f9ce924a-1501852169.258"}, - {"Context": "osvpi_route_phoneaccount", "Application": "Set", "Privilege": "dialplan,all", "Extension": "ID710152", "content": "", "AppData": "_PICKUPMARK=450110", "Event": "Newexten", "Priority": "3", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2", "Uniqueid": "63f2f9ce924a-1501852169.258"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "_PICKUPMARK", "Value": "450110", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Context": "osvpi_route_phoneaccount", "Application": "Set", "Privilege": "dialplan,all", "Extension": "ID710152", "content": "", "AppData": "l_trunk=0", "Event": "Newexten", "Priority": "4", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2", "Uniqueid": "63f2f9ce924a-1501852169.258"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "l_trunk", "Value": "0", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Context": "osvpi_route_phoneaccount", "Application": "Goto", "Privilege": "dialplan,all", "Extension": "ID710152", "content": "", "AppData": "osvpi_route_account,ID710152,1", "Event": "Newexten", "Priority": "5", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2", "Uniqueid": "63f2f9ce924a-1501852169.258"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "ODBCROWS", "Value": "1", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "ODBCSTATUS", "Value": "SUCCESS", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "~ODBCFIELDS~", "Value": "proxy", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Context": "osvpi_route_account", "Application": "Set", "Privilege": "dialplan,all", "Extension": "ID710150", "content": "", "AppData": "ARRAY(l_proxy)=172.20.0.13", "Event": "Newexten", "Priority": "1", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2", "Uniqueid": "63f2f9ce924a-1501852169.256"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "l_proxy", "Value": "172.20.0.13", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Context": "osvpi_route_account", "Application": "Gosub", "Privilege": "dialplan,all", "Extension": "ID710150", "content": "", "AppData": "osvpi_proc_mangle_number,accountid,1(150010001,401)", "Event": "Newexten", "Priority": "2", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2", "Uniqueid": "63f2f9ce924a-1501852169.256"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "LOCAL(ARG1)", "Value": "150010001", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "LOCAL(ARG2)", "Value": "401", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "LOCAL(ARGC)", "Value": "2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Context": "osvpi_proc_mangle_number", "Application": "Set", "Privilege": "dialplan,all", "Extension": "accountid", "content": "", "AppData": "MANGLED_EXTEN=150010001", "Event": "Newexten", "Priority": "1", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2", "Uniqueid": "63f2f9ce924a-1501852169.256"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "MANGLED_EXTEN", "Value": "150010001", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Context": "osvpi_proc_mangle_number", "Application": "Return", "Privilege": "dialplan,all", "Extension": "accountid", "content": "", "AppData": "", "Event": "Newexten", "Priority": "2", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2", "Uniqueid": "63f2f9ce924a-1501852169.256"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "GOSUB_RETVAL", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Context": "osvpi_route_account", "Application": "Set", "Privilege": "dialplan,all", "Extension": "ID710150", "content": "", "AppData": "l_did=150010001", "Event": "Newexten", "Priority": "3", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2", "Uniqueid": "63f2f9ce924a-1501852169.256"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "l_did", "Value": "150010001", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Context": "osvpi_route_account", "Application": "Gosub", "Privilege": "dialplan,all", "Extension": "ID710150", "content": "", "AppData": "osvpi_proc_mangle_number,dutch,1(150010001,202)", "Event": "Newexten", "Priority": "4", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2", "Uniqueid": "63f2f9ce924a-1501852169.256"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "LOCAL(ARG1)", "Value": "150010001", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "LOCAL(ARG2)", "Value": "202", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "LOCAL(ARGC)", "Value": "2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Context": "osvpi_proc_mangle_number", "Application": "GotoIf", "Privilege": "dialplan,all", "Extension": "dutch", "content": "", "AppData": "1?fullzero,1", "Event": "Newexten", "Priority": "1", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2", "Uniqueid": "63f2f9ce924a-1501852169.256"}, - {"Context": "osvpi_proc_mangle_number", "Application": "Set", "Privilege": "dialplan,all", "Extension": "fullzero", "content": "", "AppData": "MANGLED_EXTEN=202", "Event": "Newexten", "Priority": "1", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2", "Uniqueid": "63f2f9ce924a-1501852169.256"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "MANGLED_EXTEN", "Value": "202", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Context": "osvpi_proc_mangle_number", "Application": "Return", "Privilege": "dialplan,all", "Extension": "fullzero", "content": "", "AppData": "", "Event": "Newexten", "Priority": "2", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2", "Uniqueid": "63f2f9ce924a-1501852169.256"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "GOSUB_RETVAL", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Context": "osvpi_route_account", "Application": "Set", "Privilege": "dialplan,all", "Extension": "ID710150", "content": "", "AppData": "l_mangle_cli_hdr=from-dutch", "Event": "Newexten", "Priority": "5", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2", "Uniqueid": "63f2f9ce924a-1501852169.256"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "l_mangle_cli_hdr", "Value": "from-dutch", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Context": "osvpi_route_account", "Application": "Set", "Privilege": "dialplan,all", "Extension": "ID710150", "content": "", "AppData": "l_fromuser=", "Event": "Newexten", "Priority": "6", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2", "Uniqueid": "63f2f9ce924a-1501852169.256"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "l_fromuser", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Context": "osvpi_route_account", "Application": "ExecIf", "Privilege": "dialplan,all", "Extension": "ID710150", "content": "", "AppData": "1?Set(l_fromuser=202)", "Event": "Newexten", "Priority": "7", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2", "Uniqueid": "63f2f9ce924a-1501852169.256"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "l_fromuser", "Value": "202", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Context": "osvpi_route_account", "Application": "Set", "Privilege": "dialplan,all", "Extension": "ID710152", "content": "", "AppData": "ARRAY(l_proxy)=172.20.0.13", "Event": "Newexten", "Priority": "1", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2", "Uniqueid": "63f2f9ce924a-1501852169.258"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "l_proxy", "Value": "172.20.0.13", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Context": "osvpi_route_account", "Application": "Gosub", "Privilege": "dialplan,all", "Extension": "ID710152", "content": "", "AppData": "osvpi_proc_mangle_number,accountid,1(150010003,401)", "Event": "Newexten", "Priority": "2", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2", "Uniqueid": "63f2f9ce924a-1501852169.258"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "LOCAL(ARG1)", "Value": "150010003", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "LOCAL(ARG2)", "Value": "401", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "LOCAL(ARGC)", "Value": "2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Context": "osvpi_proc_mangle_number", "Application": "Set", "Privilege": "dialplan,all", "Extension": "accountid", "content": "", "AppData": "MANGLED_EXTEN=150010003", "Event": "Newexten", "Priority": "1", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2", "Uniqueid": "63f2f9ce924a-1501852169.258"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "MANGLED_EXTEN", "Value": "150010003", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Context": "osvpi_proc_mangle_number", "Application": "Return", "Privilege": "dialplan,all", "Extension": "accountid", "content": "", "AppData": "", "Event": "Newexten", "Priority": "2", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2", "Uniqueid": "63f2f9ce924a-1501852169.258"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "GOSUB_RETVAL", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Context": "osvpi_route_account", "Application": "Set", "Privilege": "dialplan,all", "Extension": "ID710152", "content": "", "AppData": "l_did=150010003", "Event": "Newexten", "Priority": "3", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2", "Uniqueid": "63f2f9ce924a-1501852169.258"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "l_did", "Value": "150010003", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Context": "osvpi_route_account", "Application": "Gosub", "Privilege": "dialplan,all", "Extension": "ID710152", "content": "", "AppData": "osvpi_proc_mangle_number,dutch,1(150010003,202)", "Event": "Newexten", "Priority": "4", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2", "Uniqueid": "63f2f9ce924a-1501852169.258"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "LOCAL(ARG1)", "Value": "150010003", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "LOCAL(ARG2)", "Value": "202", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "LOCAL(ARGC)", "Value": "2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Context": "osvpi_proc_mangle_number", "Application": "GotoIf", "Privilege": "dialplan,all", "Extension": "dutch", "content": "", "AppData": "1?fullzero,1", "Event": "Newexten", "Priority": "1", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2", "Uniqueid": "63f2f9ce924a-1501852169.258"}, - {"Context": "osvpi_proc_mangle_number", "Application": "Set", "Privilege": "dialplan,all", "Extension": "fullzero", "content": "", "AppData": "MANGLED_EXTEN=202", "Event": "Newexten", "Priority": "1", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2", "Uniqueid": "63f2f9ce924a-1501852169.258"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "MANGLED_EXTEN", "Value": "202", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Context": "osvpi_proc_mangle_number", "Application": "Return", "Privilege": "dialplan,all", "Extension": "fullzero", "content": "", "AppData": "", "Event": "Newexten", "Priority": "2", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2", "Uniqueid": "63f2f9ce924a-1501852169.258"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "GOSUB_RETVAL", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Context": "osvpi_route_account", "Application": "Set", "Privilege": "dialplan,all", "Extension": "ID710152", "content": "", "AppData": "l_mangle_cli_hdr=from-dutch", "Event": "Newexten", "Priority": "5", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2", "Uniqueid": "63f2f9ce924a-1501852169.258"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "l_mangle_cli_hdr", "Value": "from-dutch", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Context": "osvpi_route_account", "Application": "Set", "Privilege": "dialplan,all", "Extension": "ID710152", "content": "", "AppData": "l_fromuser=", "Event": "Newexten", "Priority": "6", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2", "Uniqueid": "63f2f9ce924a-1501852169.258"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "l_fromuser", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Context": "osvpi_route_account", "Application": "ExecIf", "Privilege": "dialplan,all", "Extension": "ID710152", "content": "", "AppData": "1?Set(l_fromuser=202)", "Event": "Newexten", "Priority": "7", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2", "Uniqueid": "63f2f9ce924a-1501852169.258"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "l_fromuser", "Value": "202", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "ODBCROWS", "Value": "1", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "ODBCSTATUS", "Value": "SUCCESS", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "~ODBCFIELDS~", "Value": "IF((SELECT 1 FROM baseaccount_account ba INNER JOIN userdestination_selecteduserdestination udsud ON udsud.phoneaccount_id = ba.id INNER JOIN userdestination_userdestination udud ON udud.id = udsud.userdestination_id INNER JOIN crm_cloudctiuser cccu O", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Context": "osvpi_route_account", "Application": "Set", "Privilege": "dialplan,all", "Extension": "ID710150", "content": "", "AppData": "ARRAY(cloudcti)=0", "Event": "Newexten", "Priority": "8", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2", "Uniqueid": "63f2f9ce924a-1501852169.256"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "cloudcti", "Value": "0", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Context": "osvpi_route_account", "Application": "GotoIf", "Privilege": "dialplan,all", "Extension": "ID710150", "content": "", "AppData": "1?skipcloudcti", "Event": "Newexten", "Priority": "9", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2", "Uniqueid": "63f2f9ce924a-1501852169.256"}, - {"Context": "osvpi_route_account", "Application": "Goto", "Privilege": "dialplan,all", "Extension": "ID710150", "content": "", "AppData": "osvpi_proc_proxy_out,401,1", "Event": "Newexten", "Priority": "11", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2", "Uniqueid": "63f2f9ce924a-1501852169.256"}, - {"Context": "osvpi_proc_proxy_out", "Application": "SIPAddHeader", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "X-Accountcode: 150010001", "Event": "Newexten", "Priority": "1", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2", "Uniqueid": "63f2f9ce924a-1501852169.256"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "__SIPADDHEADER01", "Value": "X-Accountcode: 150010001", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Context": "osvpi_proc_proxy_out", "Application": "SIPAddHeader", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "X-Insecure-Protection: geheim", "Event": "Newexten", "Priority": "2", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2", "Uniqueid": "63f2f9ce924a-1501852169.256"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "__SIPADDHEADER02", "Value": "X-Insecure-Protection: geheim", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Context": "osvpi_proc_proxy_out", "Application": "SIPAddHeader", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "X-Mangle-Cli: from-dutch", "Event": "Newexten", "Priority": "3", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2", "Uniqueid": "63f2f9ce924a-1501852169.256"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "ODBCROWS", "Value": "1", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "ODBCSTATUS", "Value": "SUCCESS", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "~ODBCFIELDS~", "Value": "IF((SELECT 1 FROM baseaccount_account ba INNER JOIN userdestination_selecteduserdestination udsud ON udsud.phoneaccount_id = ba.id INNER JOIN userdestination_userdestination udud ON udud.id = udsud.userdestination_id INNER JOIN crm_cloudctiuser cccu O", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "__SIPADDHEADER03", "Value": "X-Mangle-Cli: from-dutch", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Context": "osvpi_proc_proxy_out", "Application": "Set", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "_dial_options_callaccept=", "Event": "Newexten", "Priority": "4", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2", "Uniqueid": "63f2f9ce924a-1501852169.256"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "_dial_options_callaccept", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Context": "osvpi_proc_proxy_out", "Application": "Set", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "_dial_options_callnotify=", "Event": "Newexten", "Priority": "5", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2", "Uniqueid": "63f2f9ce924a-1501852169.256"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "_dial_options_callnotify", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Context": "osvpi_proc_proxy_out", "Application": "ExecIf", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "0?Set(l_proxy=opensipsfg)", "Event": "Newexten", "Priority": "6", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2", "Uniqueid": "63f2f9ce924a-1501852169.256"}, - {"Context": "osvpi_proc_proxy_out", "Application": "Set", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "l_extra_options=", "Event": "Newexten", "Priority": "7", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2", "Uniqueid": "63f2f9ce924a-1501852169.256"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "l_extra_options", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Context": "osvpi_proc_proxy_out", "Application": "Dial", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "SIP/150010001/150010001/172.20.0.13!!202,,", "Event": "Newexten", "Priority": "8", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2", "Uniqueid": "63f2f9ce924a-1501852169.256"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "DIALSTATUS", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "DIALEDPEERNUMBER", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "DIALEDPEERNAME", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "ANSWEREDTIME", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "DIALEDTIME", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Context": "osvpi_route_account", "Application": "Set", "Privilege": "dialplan,all", "Extension": "ID710152", "content": "", "AppData": "ARRAY(cloudcti)=0", "Event": "Newexten", "Priority": "8", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2", "Uniqueid": "63f2f9ce924a-1501852169.258"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "cloudcti", "Value": "0", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Context": "osvpi_route_account", "Application": "GotoIf", "Privilege": "dialplan,all", "Extension": "ID710152", "content": "", "AppData": "1?skipcloudcti", "Event": "Newexten", "Priority": "9", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2", "Uniqueid": "63f2f9ce924a-1501852169.258"}, - {"Context": "osvpi_route_account", "Application": "Goto", "Privilege": "dialplan,all", "Extension": "ID710152", "content": "", "AppData": "osvpi_proc_proxy_out,401,1", "Event": "Newexten", "Priority": "11", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2", "Uniqueid": "63f2f9ce924a-1501852169.258"}, - {"Context": "osvpi_proc_proxy_out", "Application": "SIPAddHeader", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "X-Accountcode: 150010003", "Event": "Newexten", "Priority": "1", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2", "Uniqueid": "63f2f9ce924a-1501852169.258"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "__SIPADDHEADER01", "Value": "X-Accountcode: 150010003", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Context": "osvpi_proc_proxy_out", "Application": "SIPAddHeader", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "X-Insecure-Protection: geheim", "Event": "Newexten", "Priority": "2", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2", "Uniqueid": "63f2f9ce924a-1501852169.258"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "__SIPADDHEADER02", "Value": "X-Insecure-Protection: geheim", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Context": "osvpi_proc_proxy_out", "Application": "SIPAddHeader", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "X-Mangle-Cli: from-dutch", "Event": "Newexten", "Priority": "3", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2", "Uniqueid": "63f2f9ce924a-1501852169.258"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "__SIPADDHEADER03", "Value": "X-Mangle-Cli: from-dutch", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Context": "osvpi_proc_proxy_out", "Application": "Set", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "_dial_options_callaccept=", "Event": "Newexten", "Priority": "4", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2", "Uniqueid": "63f2f9ce924a-1501852169.258"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "_dial_options_callaccept", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Context": "osvpi_proc_proxy_out", "Application": "Set", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "_dial_options_callnotify=", "Event": "Newexten", "Priority": "5", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2", "Uniqueid": "63f2f9ce924a-1501852169.258"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "_dial_options_callnotify", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Context": "osvpi_proc_proxy_out", "Application": "ExecIf", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "0?Set(l_proxy=opensipsfg)", "Event": "Newexten", "Priority": "6", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2", "Uniqueid": "63f2f9ce924a-1501852169.258"}, - {"Context": "osvpi_proc_proxy_out", "Application": "Set", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "l_extra_options=", "Event": "Newexten", "Priority": "7", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2", "Uniqueid": "63f2f9ce924a-1501852169.258"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "l_extra_options", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Context": "osvpi_proc_proxy_out", "Application": "Dial", "Privilege": "dialplan,all", "Extension": "401", "content": "", "AppData": "SIP/150010003/150010003/172.20.0.13!!202,,", "Event": "Newexten", "Priority": "8", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2", "Uniqueid": "63f2f9ce924a-1501852169.258"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "DIALSTATUS", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "DIALEDPEERNUMBER", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "DIALEDPEERNAME", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "ANSWEREDTIME", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "DIALEDTIME", "Value": "", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"CallerIDName": "", "CallerIDNum": "", "Exten": "", "ChannelStateDesc": "Down", "Uniqueid": "63f2f9ce924a-1501852169.259", "ChannelState": "0", "AccountCode": "150010001", "Privilege": "call,all", "content": "", "Event": "Newchannel", "Channel": "SIP/150010001-0000007f", "Context": "osvpi_account"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "SIPCALLID", "Value": "575641fe0a78f6a515dcc7fb28a68b3d@test.voipgrid.nl", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.259", "Channel": "SIP/150010001-0000007f"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "__client_id", "Value": "15001", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.259", "Channel": "SIP/150010001-0000007f"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "__account_id", "Value": "150010001", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.259", "Channel": "SIP/150010001-0000007f"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "__record_call", "Value": "no", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.259", "Channel": "SIP/150010001-0000007f"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "__intprefix", "Value": "31", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.259", "Channel": "SIP/150010001-0000007f"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "__limit_account", "Value": "4", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.259", "Channel": "SIP/150010001-0000007f"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "__limit_client", "Value": "0", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.259", "Channel": "SIP/150010001-0000007f"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "__hide_ext_cliname", "Value": "1", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.259", "Channel": "SIP/150010001-0000007f"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "__TRANSFER_CONTEXT", "Value": "osvpi_account_transfer", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.259", "Channel": "SIP/150010001-0000007f"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "DIALEDPEERNUMBER", "Value": "150010001/150010001/172.20.0.13!!202", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.259", "Channel": "SIP/150010001-0000007f"}, - {"CallerIDName": "", "CallerIDNum": "401", "Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": "", "Event": "NewCallerid", "Uniqueid": "63f2f9ce924a-1501852169.259", "Channel": "SIP/150010001-0000007f"}, - {"CallerIDName": "Robert Murray", "CallerIDNum": "202", "Dialstring": "150010001/150010001/172.20.0.13!!202", "SubEvent": "Begin", "ConnectedLineNum": "401", "DestUniqueID": "63f2f9ce924a-1501852169.259", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2", "Event": "Dial", "Destination": "SIP/150010001-0000007f", "content": "", "UniqueID": "63f2f9ce924a-1501852169.256", "ConnectedLineName": "", "Privilege": "call,all"}, - {"CallerIDName": "", "CallerIDNum": "", "Exten": "", "ChannelStateDesc": "Down", "Uniqueid": "63f2f9ce924a-1501852169.260", "ChannelState": "0", "AccountCode": "150010003", "Privilege": "call,all", "content": "", "Event": "Newchannel", "Channel": "SIP/150010003-00000080", "Context": "osvpi_account"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "SIPCALLID", "Value": "49b4b2e0289a5e8956524bde51cfb078@test.voipgrid.nl", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.260", "Channel": "SIP/150010003-00000080"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "__client_id", "Value": "15001", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.260", "Channel": "SIP/150010003-00000080"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "__account_id", "Value": "150010003", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.260", "Channel": "SIP/150010003-00000080"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "__record_call", "Value": "no", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.260", "Channel": "SIP/150010003-00000080"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "__intprefix", "Value": "31", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.260", "Channel": "SIP/150010003-00000080"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "__limit_account", "Value": "4", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.260", "Channel": "SIP/150010003-00000080"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "__limit_client", "Value": "0", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.260", "Channel": "SIP/150010003-00000080"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "__hide_ext_cliname", "Value": "1", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.260", "Channel": "SIP/150010003-00000080"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "__TRANSFER_CONTEXT", "Value": "osvpi_account_transfer", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.260", "Channel": "SIP/150010003-00000080"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "DIALEDPEERNUMBER", "Value": "150010003/150010003/172.20.0.13!!202", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.260", "Channel": "SIP/150010003-00000080"}, - {"CallerIDName": "", "CallerIDNum": "401", "Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": "", "Event": "NewCallerid", "Uniqueid": "63f2f9ce924a-1501852169.260", "Channel": "SIP/150010003-00000080"}, - {"CallerIDName": "Robert Murray", "CallerIDNum": "202", "Dialstring": "150010003/150010003/172.20.0.13!!202", "SubEvent": "Begin", "ConnectedLineNum": "401", "DestUniqueID": "63f2f9ce924a-1501852169.260", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2", "Event": "Dial", "Destination": "SIP/150010003-00000080", "content": "", "UniqueID": "63f2f9ce924a-1501852169.258", "ConnectedLineName": "", "Privilege": "call,all"}, - {"ChannelState": "5", "CallerIDNum": "401", "Privilege": "call,all", "content": "", "Uniqueid": "63f2f9ce924a-1501852169.259", "ConnectedLineNum": "202", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Robert Murray", "Channel": "SIP/150010001-0000007f", "CallerIDName": "", "Event": "Newstate"}, - {"ChannelState": "5", "CallerIDNum": "401", "Privilege": "call,all", "content": "", "Uniqueid": "63f2f9ce924a-1501852169.255", "ConnectedLineNum": "202", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Robert Murray", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;1", "CallerIDName": "", "Event": "Newstate"}, - {"ChannelState": "5", "CallerIDNum": "401", "Privilege": "call,all", "content": "", "Uniqueid": "63f2f9ce924a-1501852169.260", "ConnectedLineNum": "202", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Robert Murray", "Channel": "SIP/150010003-00000080", "CallerIDName": "", "Event": "Newstate"}, - {"ChannelState": "5", "CallerIDNum": "401", "Privilege": "call,all", "content": "", "Uniqueid": "63f2f9ce924a-1501852169.257", "ConnectedLineNum": "202", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Robert Murray", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;1", "CallerIDName": "", "Event": "Newstate"}, - {"ChannelState": "6", "CallerIDNum": "401", "Privilege": "call,all", "content": "", "Uniqueid": "63f2f9ce924a-1501852169.259", "ConnectedLineNum": "202", "ChannelStateDesc": "Up", "ConnectedLineName": "Robert Murray", "Channel": "SIP/150010001-0000007f", "CallerIDName": "", "Event": "Newstate"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "DIALSTATUS", "Value": "ANSWER", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "DIALEDPEERNAME", "Value": "SIP/150010001-0000007f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "DIALEDPEERNUMBER", "Value": "150010001/150010001/172.20.0.13!!202", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "BRIDGEPEER", "Value": "SIP/150010001-0000007f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "BRIDGEPEER", "Value": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.259", "Channel": "SIP/150010001-0000007f"}, - {"ChannelState": "6", "CallerIDNum": "202", "Privilege": "call,all", "content": "", "Uniqueid": "63f2f9ce924a-1501852169.256", "ConnectedLineNum": "401", "ChannelStateDesc": "Up", "ConnectedLineName": "", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2", "CallerIDName": "Robert Murray", "Event": "Newstate"}, - {"AccountCode": "150010002", "Privilege": "call,all", "OldAccountCode": "150010002", "content": "", "Event": "NewAccountCode", "Channel": "SIP/150010001-0000007f", "Uniqueid": "63f2f9ce924a-1501852169.259"}, - {"ChannelState": "6", "CallerIDNum": "401", "Privilege": "call,all", "content": "", "Uniqueid": "63f2f9ce924a-1501852169.255", "ConnectedLineNum": "202", "ChannelStateDesc": "Up", "ConnectedLineName": "Robert Murray", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;1", "CallerIDName": "", "Event": "Newstate"}, - {"Channel1": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2", "CallerID1": "202", "Uniqueid1": "63f2f9ce924a-1501852169.256", "Bridgetype": "core", "Privilege": "call,all", "CallerID2": "401", "content": "", "Bridgestate": "Link", "Uniqueid2": "63f2f9ce924a-1501852169.259", "Channel2": "SIP/150010001-0000007f", "Event": "Bridge"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "BRIDGEPEER", "Value": "SIP/150010001-0000007f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "BRIDGEPVTCALLID", "Value": "575641fe0a78f6a515dcc7fb28a68b3d@test.voipgrid.nl", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "BRIDGEPEER", "Value": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.259", "Channel": "SIP/150010001-0000007f"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "DIALSTATUS", "Value": "ANSWER", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "BRIDGEPEER", "Value": "SIP/150010001-0000007f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"content": "", "Privilege": "call,all", "Event": "HangupRequest", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2", "Uniqueid": "63f2f9ce924a-1501852169.258"}, - {"CallerIDName": "", "CallerIDNum": "401", "Cause-txt": "Answered elsewhere", "ConnectedLineNum": "202", "ConnectedLineName": "Robert Murray", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;1", "AccountCode": "150010002", "Privilege": "call,all", "Cause": "26", "content": "", "Event": "Hangup", "Uniqueid": "63f2f9ce924a-1501852169.257"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "DIALEDPEERNAME", "Value": "Local/ID710150@osvpi_route_phoneaccount-0000003f;1", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "DIALEDPEERNUMBER", "Value": "ID710150@osvpi_route_phoneaccount", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "BRIDGEPEER", "Value": "Local/ID710150@osvpi_route_phoneaccount-0000003f;1", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "BRIDGEPEER", "Value": "SIP/150010002-0000007e", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.255", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;1"}, - {"ChannelState": "6", "CallerIDNum": "202", "Privilege": "call,all", "content": "", "Uniqueid": "63f2f9ce924a-1501852169.254", "ConnectedLineNum": "", "ChannelStateDesc": "Up", "ConnectedLineName": "", "Channel": "SIP/150010002-0000007e", "CallerIDName": "Robert Murray", "Event": "Newstate"}, - {"CallerIDName": "", "CallerIDNum": "401", "Cause-txt": "Answered elsewhere", "ConnectedLineNum": "202", "ConnectedLineName": "Robert Murray", "Channel": "SIP/150010003-00000080", "AccountCode": "150010002", "Privilege": "call,all", "Cause": "26", "content": "", "Event": "Hangup", "Uniqueid": "63f2f9ce924a-1501852169.260"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "DIALSTATUS", "Value": "CANCEL", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"DialStatus": "CANCEL", "Privilege": "call,all", "SubEvent": "End", "content": "", "UniqueID": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2", "Event": "Dial"}, - {"AccountCode": "150010002", "Privilege": "call,all", "OldAccountCode": "150010002", "content": "", "Event": "NewAccountCode", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;1", "Uniqueid": "63f2f9ce924a-1501852169.255"}, - {"Channel1": "SIP/150010002-0000007e", "CallerID1": "202", "Uniqueid1": "63f2f9ce924a-1501852169.254", "Bridgetype": "core", "Privilege": "call,all", "CallerID2": "401", "content": "", "Bridgestate": "Link", "Uniqueid2": "63f2f9ce924a-1501852169.255", "Channel2": "Local/ID710150@osvpi_route_phoneaccount-0000003f;1", "Event": "Bridge"}, - {"Privilege": "call,all", "Cause": "16", "content": "", "Event": "SoftHangupRequest", "Uniqueid": "63f2f9ce924a-1501852169.258", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "BRIDGEPVTCALLID", "Value": "575641fe0a78f6a515dcc7fb28a68b3d@test.voipgrid.nl", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "BRIDGEPEER", "Value": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.259", "Channel": "SIP/150010001-0000007f"}, - {"Context": "handlers", "Application": "GotoIf", "Privilege": "dialplan,all", "Extension": "onhangup", "content": "", "AppData": "1?nosip", "Event": "Newexten", "Priority": "1", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2", "Uniqueid": "63f2f9ce924a-1501852169.258"}, - {"Context": "handlers", "Application": "GosubIf", "Privilege": "dialplan,all", "Extension": "onhangup", "content": "", "AppData": "0?osvpi_proc_httptouch,s,1()", "Event": "Newexten", "Priority": "3", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2", "Uniqueid": "63f2f9ce924a-1501852169.258"}, - {"CallerIDName": "Robert Murray", "CallerIDNum": "202", "Cause-txt": "Answered elsewhere", "ConnectedLineNum": "401", "ConnectedLineName": "", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000040;2", "AccountCode": "150010002", "Privilege": "call,all", "Cause": "26", "content": "", "Event": "Hangup", "Uniqueid": "63f2f9ce924a-1501852169.258"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "BRIDGEPEER", "Value": "Local/ID710150@osvpi_route_phoneaccount-0000003f;1", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "BRIDGEPEER", "Value": "SIP/150010002-0000007e", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.255", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;1"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "BRIDGEPVTCALLID", "Value": "5fa9a6a0-29123423@10.13.36.116", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.255", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;1"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "BRIDGEPEER", "Value": "Local/ID710150@osvpi_route_phoneaccount-0000003f;1", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "BRIDGEPEER", "Value": "SIP/150010002-0000007e", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.255", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;1"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "BRIDGEPVTCALLID", "Value": "5fa9a6a0-29123423@10.13.36.116", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.255", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;1"}, - {"OriginalState": "Up", "Privilege": "call,all", "content": "", "Event": "Masquerade", "Clone": "SIP/150010001-0000007f", "Original": "Local/ID710150@osvpi_route_phoneaccount-0000003f;1", "CloneState": "Up"}, - {"Privilege": "call,all", "Newname": "SIP/150010001-0000007f", "content": "", "Event": "Rename", "Channel": "SIP/150010001-0000007f", "Uniqueid": "63f2f9ce924a-1501852169.259"}, - {"Privilege": "call,all", "Newname": "SIP/150010001-0000007f", "content": "", "Event": "Rename", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;1", "Uniqueid": "63f2f9ce924a-1501852169.255"}, - {"Privilege": "call,all", "Newname": "Local/ID710150@osvpi_route_phoneaccount-0000003f;1", "content": "", "Event": "Rename", "Channel": "SIP/150010001-0000007f", "Uniqueid": "63f2f9ce924a-1501852169.259"}, - {"CallerIDName": "", "CallerIDNum": "401", "Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": "", "Event": "NewCallerid", "Uniqueid": "63f2f9ce924a-1501852169.255", "Channel": "SIP/150010001-0000007f"}, - {"Channel1": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2", "CallerID1": "202", "Uniqueid1": "63f2f9ce924a-1501852169.256", "Bridgetype": "core", "Privilege": "call,all", "CallerID2": "401", "content": "", "Bridgestate": "Unlink", "Uniqueid2": "63f2f9ce924a-1501852169.259", "Channel2": "Local/ID710150@osvpi_route_phoneaccount-0000003f;1", "Event": "Bridge"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "BRIDGEPEER", "Value": "SIP/150010001-0000007f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "BRIDGEPVTCALLID", "Value": "575641fe0a78f6a515dcc7fb28a68b3d@test.voipgrid.nl", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "ANSWEREDTIME", "Value": "0", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "BRIDGEPEER", "Value": "SIP/150010002-0000007e", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.255", "Channel": "SIP/150010001-0000007f"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "DIALEDTIME", "Value": "5", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "BRIDGEPVTCALLID", "Value": "5fa9a6a0-29123423@10.13.36.116", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.255", "Channel": "SIP/150010001-0000007f"}, - {"content": "", "Privilege": "call,all", "Event": "HangupRequest", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2", "Uniqueid": "63f2f9ce924a-1501852169.256"}, - {"CallerIDName": "", "CallerIDNum": "401", "Cause-txt": "Normal Clearing", "ConnectedLineNum": "202", "ConnectedLineName": "Robert Murray", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;1", "AccountCode": "150010002", "Privilege": "call,all", "Cause": "16", "content": "", "Event": "Hangup", "Uniqueid": "63f2f9ce924a-1501852169.259"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "DIALSTATUS", "Value": "ANSWER", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"DialStatus": "ANSWER", "Privilege": "call,all", "SubEvent": "End", "content": "", "UniqueID": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2", "Event": "Dial"}, - {"Privilege": "call,all", "Cause": "16", "content": "", "Event": "SoftHangupRequest", "Uniqueid": "63f2f9ce924a-1501852169.256", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2"}, - {"Context": "handlers", "Application": "GotoIf", "Privilege": "dialplan,all", "Extension": "onhangup", "content": "", "AppData": "1?nosip", "Event": "Newexten", "Priority": "1", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2", "Uniqueid": "63f2f9ce924a-1501852169.256"}, - {"Context": "handlers", "Application": "GosubIf", "Privilege": "dialplan,all", "Extension": "onhangup", "content": "", "AppData": "0?osvpi_proc_httptouch,s,1()", "Event": "Newexten", "Priority": "3", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2", "Uniqueid": "63f2f9ce924a-1501852169.256"}, - {"CallerIDName": "Robert Murray", "CallerIDNum": "202", "Cause-txt": "Normal Clearing", "ConnectedLineNum": "401", "ConnectedLineName": "", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000003f;2", "AccountCode": "150010002", "Privilege": "call,all", "Cause": "16", "content": "", "Event": "Hangup", "Uniqueid": "63f2f9ce924a-1501852169.256"}, - {"LastSR": "0.0000000000", "From": "172.20.0.254:52571", "SequenceNumberCycles": "0", "IAJitter": "15", "Privilege": "reporting,all", "Event": "RTCPReceived", "PacketsLost": "0", "HighestSequence": "8034", "content": "", "PT": "200(Sender Report)", "SenderSSRC": "0", "ReceptionReports": "1", "DLSR": "32768.0000(sec)", "FractionLost": "0"}, - {"OurSSRC": "841251359", "SentOctets": "1280", "TheirLastSR": "1913683967", "SentPackets": "8", "SentNTP": "1501852179.1919741952", "SentRTP": "458876000", "Event": "RTCPSent", "Privilege": "reporting,all", "FractionLost": "0", "content": "", "CumulativeLoss": "0", "To": "172.20.0.254:52571", "DLSR": "2.5940 (sec)", "IAJitter": "0.0000"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "RTPAUDIOQOS", "Value": "ssrc=841251359;themssrc=500999125;lp=0;rxjitter=0.000000;rxcount=1;txjitter=0.000000;txcount=8;rlp=0;rtt=0.000000", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.255", "Channel": "SIP/150010001-0000007f"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "RTPAUDIOQOSBRIDGED", "Value": "ssrc=841251359;themssrc=500999125;lp=0;rxjitter=0.000000;rxcount=1;txjitter=0.000000;txcount=8;rlp=0;rtt=0.000000", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "RTPAUDIOQOSJITTER", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.255", "Channel": "SIP/150010001-0000007f"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "RTPAUDIOQOSJITTERBRIDGED", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "RTPAUDIOQOSLOSS", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.255", "Channel": "SIP/150010001-0000007f"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "RTPAUDIOQOSLOSSBRIDGED", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "RTPAUDIOQOSRTT", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.255", "Channel": "SIP/150010001-0000007f"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "RTPAUDIOQOSRTTBRIDGED", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "RTPAUDIOQOS", "Value": "ssrc=578295883;themssrc=3150876344;lp=0;rxjitter=0.000000;rxcount=8;txjitter=0.000426;txcount=0;rlp=0;rtt=0.000000", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "RTPAUDIOQOSBRIDGED", "Value": "ssrc=578295883;themssrc=3150876344;lp=0;rxjitter=0.000000;rxcount=8;txjitter=0.000426;txcount=0;rlp=0;rtt=0.000000", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.255", "Channel": "SIP/150010001-0000007f"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "RTPAUDIOQOSJITTER", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "RTPAUDIOQOSJITTERBRIDGED", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.255", "Channel": "SIP/150010001-0000007f"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "RTPAUDIOQOSLOSS", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "RTPAUDIOQOSLOSSBRIDGED", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.255", "Channel": "SIP/150010001-0000007f"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "RTPAUDIOQOSRTT", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "RTPAUDIOQOSRTTBRIDGED", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.255", "Channel": "SIP/150010001-0000007f"}, - {"content": "", "Privilege": "call,all", "Event": "HangupRequest", "Channel": "SIP/150010001-0000007f", "Uniqueid": "63f2f9ce924a-1501852169.255"}, - {"Channel1": "SIP/150010002-0000007e", "CallerID1": "202", "Uniqueid1": "63f2f9ce924a-1501852169.254", "Bridgetype": "core", "Privilege": "call,all", "CallerID2": "401", "content": "", "Bridgestate": "Unlink", "Uniqueid2": "63f2f9ce924a-1501852169.255", "Channel2": "SIP/150010001-0000007f", "Event": "Bridge"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "ANSWEREDTIME", "Value": "6", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "DIALEDTIME", "Value": "11", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"CallerIDName": "", "CallerIDNum": "401", "Cause-txt": "Normal Clearing", "ConnectedLineNum": "202", "ConnectedLineName": "Robert Murray", "Channel": "SIP/150010001-0000007f", "AccountCode": "150010002", "Privilege": "call,all", "Cause": "16", "content": "", "Event": "Hangup", "Uniqueid": "63f2f9ce924a-1501852169.255"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "DIALSTATUS", "Value": "ANSWER", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"DialStatus": "ANSWER", "Privilege": "call,all", "SubEvent": "End", "content": "", "UniqueID": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e", "Event": "Dial"}, - {"Privilege": "call,all", "Cause": "16", "content": "", "Event": "SoftHangupRequest", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Context": "handlers", "Application": "GotoIf", "Privilege": "dialplan,all", "Extension": "onhangup", "content": "", "AppData": "0?nosip", "Event": "Newexten", "Priority": "1", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Context": "handlers", "Application": "NoOp", "Privilege": "dialplan,all", "Extension": "onhangup", "content": "", "AppData": "LOG: rtpqos: caller=172.20.0.254:57686;asterisk=0.0.0.0:13394;ssrc=578295883;themssrc=3150876344;lp=0;rxjitter=0.000000;rxcount=8;txjitter=0.000426;txcount=0;rlp=0;rtt=0.000000;billsec=0", "Event": "Newexten", "Priority": "2", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Context": "handlers", "Application": "GosubIf", "Privilege": "dialplan,all", "Extension": "onhangup", "content": "", "AppData": "0?osvpi_proc_httptouch,s,1()", "Event": "Newexten", "Priority": "3", "Channel": "SIP/150010002-0000007e", "Uniqueid": "63f2f9ce924a-1501852169.254"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "RTPAUDIOQOS", "Value": "ssrc=578295883;themssrc=3150876344;lp=0;rxjitter=0.000000;rxcount=8;txjitter=0.000426;txcount=0;rlp=0;rtt=0.000000", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "RTPAUDIOQOSJITTER", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "RTPAUDIOQOSLOSS", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "RTPAUDIOQOSRTT", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"Privilege": "dialplan,all", "content": "", "Variable": "RTPAUDIOQOS", "Value": "ssrc=578295883;themssrc=3150876344;lp=0;rxjitter=0.000000;rxcount=8;txjitter=0.000426;txcount=0;rlp=0;rtt=0.000000", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501852169.254", "Channel": "SIP/150010002-0000007e"}, - {"CallerIDName": "Robert Murray", "CallerIDNum": "202", "Cause-txt": "Normal Clearing", "ConnectedLineNum": "", "ConnectedLineName": "", "Channel": "SIP/150010002-0000007e", "AccountCode": "150010002", "Privilege": "call,all", "Cause": "16", "content": "", "Event": "Hangup", "Uniqueid": "63f2f9ce924a-1501852169.254"} -] + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-0000000d", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "401", "Language": "en", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.168", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-0000000d", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newstate", "Exten": "401", "Language": "nl", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.168", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "150010001", "Channel": "SIP/150010001-0000000d", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "401", "Language": "nl", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "5", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.168", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-0000000d", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "401", "Language": "nl", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "6", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.168", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000007;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.171", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000007;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.173", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000007;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "401", "Language": "en", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.171", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000007;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "401", "Language": "en", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.171", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000007;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "401", "Language": "en", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.171", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000008;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730152", "Language": "en", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.175", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000008;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730152", "Language": "en", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.177", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000008;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "401", "Language": "en", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.175", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000008;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "401", "Language": "en", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.175", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000008;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "401", "Language": "en", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.175", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000007;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.173", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000007;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.173", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000007;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.173", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730151", "LocalOneAccountCode": "150010001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "401", "LocalOneChannel": "Local/ID730151@osvpi_route_phoneaccount-00000007;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Andrew Garza", "LocalOneConnectedLineNum": "201", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "401", "LocalOneLanguage": "en", "LocalOneLinkedid": "195176c06ab8-1529936598.168", "LocalOnePriority": "1", "LocalOneUniqueid": "195176c06ab8-1529936598.171", "LocalOptimization": "Yes", "LocalTwoAccountCode": "150010001", "LocalTwoCallerIDName": "Andrew Garza", "LocalTwoCallerIDNum": "201", "LocalTwoChannel": "Local/ID730151@osvpi_route_phoneaccount-00000007;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "401", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730151", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "195176c06ab8-1529936598.168", "LocalTwoPriority": "1", "LocalTwoUniqueid": "195176c06ab8-1529936598.173", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-0000000d", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-00000007;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "401", "DestLanguage": "en", "DestLinkedid": "195176c06ab8-1529936598.168", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529936598.171", "DialString": "ID730151@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "401", "Language": "nl", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "12", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.168", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000008;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730152", "Language": "en", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.177", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000008;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730152", "Language": "en", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.177", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000008;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730152", "Language": "en", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.177", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730152", "LocalOneAccountCode": "150010001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "401", "LocalOneChannel": "Local/ID730152@osvpi_route_phoneaccount-00000008;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Andrew Garza", "LocalOneConnectedLineNum": "201", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "401", "LocalOneLanguage": "en", "LocalOneLinkedid": "195176c06ab8-1529936598.168", "LocalOnePriority": "1", "LocalOneUniqueid": "195176c06ab8-1529936598.175", "LocalOptimization": "Yes", "LocalTwoAccountCode": "150010001", "LocalTwoCallerIDName": "Andrew Garza", "LocalTwoCallerIDNum": "201", "LocalTwoChannel": "Local/ID730152@osvpi_route_phoneaccount-00000008;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "401", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730152", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "195176c06ab8-1529936598.168", "LocalTwoPriority": "1", "LocalTwoUniqueid": "195176c06ab8-1529936598.177", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-0000000d", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-00000008;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "401", "DestLanguage": "en", "DestLinkedid": "195176c06ab8-1529936598.168", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529936598.175", "DialString": "ID730152@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "401", "Language": "nl", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "12", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.168", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010002-0000000e", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.181", "content": ""}, + {"AccountCode": "150010003", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010003-0000000f", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.183", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010003-0000000f", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "401", "Language": "nl", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.183", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010003-0000000f", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "401", "Language": "nl", "Linkedid": "195176c06ab8-1529936598.168", "OldAccountCode": "150010003", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.183", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010003-0000000f", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "401", "Language": "nl", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.183", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010002-0000000e", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "401", "Language": "nl", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.181", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010002-0000000e", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "401", "Language": "nl", "Linkedid": "195176c06ab8-1529936598.168", "OldAccountCode": "150010002", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.181", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010002-0000000e", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "401", "Language": "nl", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.181", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000008;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "SIP/150010003-0000000f", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "401", "DestLanguage": "nl", "DestLinkedid": "195176c06ab8-1529936598.168", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529936598.183", "DialString": "150010003/150010003/172.20.0.13!!201", "Event": "DialBegin", "Exten": "401", "Language": "en", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.177", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000007;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "SIP/150010002-0000000e", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "401", "DestLanguage": "nl", "DestLinkedid": "195176c06ab8-1529936598.168", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529936598.181", "DialString": "150010002/150010002/172.20.0.13!!201", "Event": "DialBegin", "Exten": "401", "Language": "en", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.173", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010002-0000000e", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "401", "Language": "nl", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.181", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000007;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "401", "Language": "en", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.171", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010003-0000000f", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "401", "Language": "nl", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.183", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000008;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "401", "Language": "en", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.175", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010002-0000000e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "401", "Language": "nl", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.181", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000007;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "SIP/150010002-0000000e", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "195176c06ab8-1529936598.168", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529936598.181", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "401", "Language": "en", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.173", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000007;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "401", "Language": "en", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.173", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000007;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "401", "Language": "en", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.171", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-0000000d", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-00000008;1", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "401", "DestLanguage": "en", "DestLinkedid": "195176c06ab8-1529936598.168", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529936598.175", "DialStatus": "CANCEL", "Event": "DialEnd", "Exten": "401", "Language": "nl", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "12", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.168", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "8954843c-c556-4f3e-9796-6c9fbd14ec86", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Cause": "26", "Cause-txt": "Answered elsewhere", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000008;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "401", "Language": "en", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.175", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000008;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "SIP/150010003-0000000f", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "401", "DestLanguage": "nl", "DestLinkedid": "195176c06ab8-1529936598.168", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529936598.183", "DialStatus": "CANCEL", "Event": "DialEnd", "Exten": "401", "Language": "en", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.177", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Cause": "26", "Cause-txt": "Answered elsewhere", "Channel": "SIP/150010003-0000000f", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Hangup", "Exten": "401", "Language": "nl", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.183", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-0000000d", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-00000007;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "195176c06ab8-1529936598.168", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529936598.171", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "401", "Language": "nl", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "12", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.168", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-0000000d", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "Newstate", "Exten": "401", "Language": "nl", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "12", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.168", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "96f3747b-4e23-4b96-a082-029e97d7c2e2", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Cause": "26", "Cause-txt": "Answered elsewhere", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000008;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "4", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.177", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "8954843c-c556-4f3e-9796-6c9fbd14ec86", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010002-0000000e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.181", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "96f3747b-4e23-4b96-a082-029e97d7c2e2", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000007;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.171", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "8954843c-c556-4f3e-9796-6c9fbd14ec86", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000007;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "401", "Language": "en", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.173", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "96f3747b-4e23-4b96-a082-029e97d7c2e2", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-0000000d", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "401", "Language": "nl", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "12", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.168", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "96f3747b-4e23-4b96-a082-029e97d7c2e2", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-0000000d", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "401", "Language": "nl", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "12", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.168", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "8954843c-c556-4f3e-9796-6c9fbd14ec86", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000007;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "401", "Language": "en", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.173", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "8954843c-c556-4f3e-9796-6c9fbd14ec86", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-0000000d", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "401", "Language": "nl", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "12", "Privilege": "call,all", "SwapUniqueid": "195176c06ab8-1529936598.173", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.168", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "96f3747b-4e23-4b96-a082-029e97d7c2e2", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000007;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.171", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "96f3747b-4e23-4b96-a082-029e97d7c2e2", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000007;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "4", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.173", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000007;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.171", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "8954843c-c556-4f3e-9796-6c9fbd14ec86", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010002-0000000e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.181", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010002-0000000e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.181", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "8954843c-c556-4f3e-9796-6c9fbd14ec86", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-0000000d", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "401", "Language": "nl", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "12", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.168", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "8954843c-c556-4f3e-9796-6c9fbd14ec86", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010001-0000000d", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "195176c06ab8-1529936598.168", "Priority": "4", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936598.168", "content": ""} +] \ No newline at end of file diff --git a/tests/fixtures/simple/ab_callgroup_no_answer.json b/tests/fixtures/simple/ab_callgroup_no_answer.json index cfb29d4..e2dcd62 100644 --- a/tests/fixtures/simple/ab_callgroup_no_answer.json +++ b/tests/fixtures/simple/ab_callgroup_no_answer.json @@ -1,401 +1,53 @@ [ - {"Status": "Fully Booted", "Event": "FullyBooted", "Privilege": "system,all", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509355567.22", "Privilege": "call,all", "Event": "Newchannel", "content": "", "ChannelState": "0", "Channel": "SIP/150010002-0000000a", "AccountCode": "150010002", "Context": "osvpi_account", "ChannelStateDesc": "Down", "Exten": "403", "CallerIDNum": "150010002", "CallerIDName": "Bob"}, - {"Channel": "SIP/150010002-0000000a", "Variable": "SIPURI", "Value": "sip:150010002@10.13.36.116:5061", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "SIPDOMAIN", "Value": "10.13.37.110", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "SIPCALLID", "Value": "a38e6f4d-1ded4c41@10.13.36.116", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "__client_id", "Value": "15001", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "__account_id", "Value": "150010002", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "__record_call", "Value": "no", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "__intprefix", "Value": "31", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "__limit_account", "Value": "4", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "__limit_client", "Value": "0", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "__hide_ext_cliname", "Value": "1", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "__TRANSFER_CONTEXT", "Value": "osvpi_account_transfer", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "CallerIDName": "Bob", "ChannelStateDesc": "Ring", "ConnectedLineNum": "", "ConnectedLineName": "", "Privilege": "call,all", "CallerIDNum": "150010002", "Event": "Newstate", "content": "", "ChannelState": "4"}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_account", "AppData": "0?GotoIf(0?osvpi_proc_hangup_insecure,403,1)", "Extension": "403", "Event": "Newexten", "Application": "ExecIf", "Privilege": "dialplan,all", "Priority": "1", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_account", "AppData": "osvpi_proc_check_forwards,s,1", "Extension": "403", "Event": "Newexten", "Application": "Gosub", "Privilege": "dialplan,all", "Priority": "2", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "LOCAL(ARGC)", "Value": "0", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_proc_check_forwards", "AppData": "0?check,1", "Extension": "s", "Event": "Newexten", "Application": "GotoIf", "Privilege": "dialplan,all", "Priority": "1", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_proc_check_forwards", "AppData": "LOCAL(tmp)=70", "Extension": "s", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "2", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "LOCAL(tmp)", "Value": "70", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_proc_check_forwards", "AppData": "0?Goto(init,1)", "Extension": "s", "Event": "Newexten", "Application": "ExecIf", "Privilege": "dialplan,all", "Priority": "3", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_proc_check_forwards", "AppData": "1?Goto(init,1)", "Extension": "s", "Event": "Newexten", "Application": "ExecIf", "Privilege": "dialplan,all", "Priority": "4", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_proc_check_forwards", "AppData": "MASTER_CHANNEL(SIP_MAX_FORWARDS)=16", "Extension": "init", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "1", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "SIP_MAX_FORWARDS", "Value": "16", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_proc_check_forwards", "AppData": "DEBUG: MaxForwards: initialized to: 16", "Extension": "init", "Event": "Newexten", "Application": "NoOp", "Privilege": "dialplan,all", "Priority": "2", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_proc_check_forwards", "AppData": "", "Extension": "init", "Event": "Newexten", "Application": "Return", "Privilege": "dialplan,all", "Priority": "3", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "GOSUB_RETVAL", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_account", "AppData": "0?osvpi_account_transfer,403,1", "Extension": "403", "Event": "Newexten", "Application": "GotoIf", "Privilege": "dialplan,all", "Priority": "3", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_account", "AppData": "ENTRY POINT username=150010002,ip=172.20.0.13/172.20.0.13,from=sip:150010002@10.13.37.110,contact=sip:150010002@10.13.36.116:5061,ua=Cisco/SPA504G-7.5.3,name=Bob,num=150010002,pres=allowed_not_screened", "Extension": "403", "Event": "Newexten", "Application": "NoOp", "Privilege": "dialplan,all", "Priority": "4", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_account", "AppData": "is_transfer=0", "Extension": "403", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "5", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "is_transfer", "Value": "0", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_account", "AppData": "CDR(amaflags)=BILLING", "Extension": "403", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "6", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_account", "AppData": "user_privacy=0", "Extension": "403", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "7", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "user_privacy", "Value": "0", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_account", "AppData": "1?Set(__supports_progress=1)", "Extension": "403", "Event": "Newexten", "Application": "ExecIf", "Privilege": "dialplan,all", "Priority": "8", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "__supports_progress", "Value": "1", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_account", "AppData": "osvpi_proc_record_call,s-no,1(out,15001,150010002)", "Extension": "403", "Event": "Newexten", "Application": "Gosub", "Privilege": "dialplan,all", "Priority": "9", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "LOCAL(ARG1)", "Value": "out", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "LOCAL(ARG2)", "Value": "15001", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "LOCAL(ARG3)", "Value": "150010002", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "LOCAL(ARGC)", "Value": "3", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_proc_record_call", "AppData": "", "Extension": "s-no", "Event": "Newexten", "Application": "Return", "Privilege": "dialplan,all", "Priority": "1", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "GOSUB_RETVAL", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_account", "AppData": "l_tmp=", "Extension": "403", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "10", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "l_tmp", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_account", "AppData": "1?Set(l_tmp=)", "Extension": "403", "Event": "Newexten", "Application": "ExecIf", "Privilege": "dialplan,all", "Priority": "11", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "l_tmp", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_account", "AppData": "1?checkprivacy", "Extension": "403", "Event": "Newexten", "Application": "GotoIf", "Privilege": "dialplan,all", "Priority": "12", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_account", "AppData": "0?Set(CALLERID(pres)=allowed_passed_screen)", "Extension": "403", "Event": "Newexten", "Application": "ExecIf", "Privilege": "dialplan,all", "Priority": "16", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_account", "AppData": "0?Set(CALLERID(pres)=prohib_passed_screen)", "Extension": "403", "Event": "Newexten", "Application": "ExecIf", "Privilege": "dialplan,all", "Priority": "17", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_account", "AppData": "0?Set(CHANNEL(musicclass)=)", "Extension": "403", "Event": "Newexten", "Application": "ExecIf", "Privilege": "dialplan,all", "Priority": "18", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_account", "AppData": "1?continue", "Extension": "403", "Event": "Newexten", "Application": "GotoIf", "Privilege": "dialplan,all", "Priority": "19", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_account", "AppData": "osvpi_proc_set_i18n_region,31,1", "Extension": "403", "Event": "Newexten", "Application": "Gosub", "Privilege": "dialplan,all", "Priority": "22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "LOCAL(ARGC)", "Value": "0", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_proc_set_i18n_region", "AppData": "i18n_region=NL", "Extension": "31", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "1", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "i18n_region", "Value": "NL", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_proc_set_i18n_region", "AppData": "", "Extension": "31", "Event": "Newexten", "Application": "Return", "Privilege": "dialplan,all", "Priority": "2", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "GOSUB_RETVAL", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_account", "AppData": "osvpi_account_emergency_NL,403,1", "Extension": "403", "Event": "Newexten", "Application": "Goto", "Privilege": "dialplan,all", "Priority": "23", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_account_emergency_NL", "AppData": "osvpi_account_no_emergency,403,1", "Extension": "403", "Event": "Newexten", "Application": "Goto", "Privilege": "dialplan,all", "Priority": "1", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_account_no_emergency", "AppData": "osvpi_account,403,no-emergency", "Extension": "403", "Event": "Newexten", "Application": "Goto", "Privilege": "dialplan,all", "Priority": "1", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_account", "AppData": "osvpi_account_clean,403,1", "Extension": "403", "Event": "Newexten", "Application": "Goto", "Privilege": "dialplan,all", "Priority": "24", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_account_clean", "AppData": "return=osvpi_account_clean", "Extension": "403", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "1", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "return", "Value": "osvpi_account_clean", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_account_clean", "AppData": "osvpi_return_to_canonical,31i403,1", "Extension": "403", "Event": "Newexten", "Application": "Goto", "Privilege": "dialplan,all", "Priority": "2", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "INVALID_EXTEN", "Value": "31i403", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_return_to_canonical", "AppData": "osvpi_account_clean,403,local", "Extension": "i", "Event": "Newexten", "Application": "Goto", "Privilege": "dialplan,all", "Priority": "1", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_account_clean", "AppData": "0?extern", "Extension": "403", "Event": "Newexten", "Application": "GotoIf", "Privilege": "dialplan,all", "Priority": "3", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_account_clean", "AppData": "osvpi_proc_set_callerid,403,1(150010002,0,0)", "Extension": "403", "Event": "Newexten", "Application": "Gosub", "Privilege": "dialplan,all", "Priority": "4", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "LOCAL(ARG1)", "Value": "150010002", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "LOCAL(ARG2)", "Value": "0", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "LOCAL(ARG3)", "Value": "0", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "LOCAL(ARGC)", "Value": "3", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_proc_set_callerid", "AppData": "0?done", "Extension": "403", "Event": "Newexten", "Application": "GotoIf", "Privilege": "dialplan,all", "Priority": "1", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "ODBCROWS", "Value": "1", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "ODBCSTATUS", "Value": "SUCCESS", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "~ODBCFIELDS~", "Value": "set,privacy,name,number_int,number_ext", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_proc_set_callerid", "AppData": "ARRAY(LOCAL(set),LOCAL(privacy),LOCAL(name),LOCAL(number_int),LOCAL(number_ext))=1,0,David Meadows,202,+31150010002", "Extension": "403", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "2", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "LOCAL(set)", "Value": "1", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "LOCAL(privacy)", "Value": "0", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "LOCAL(name)", "Value": "David Meadows", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "LOCAL(number_int)", "Value": "202", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "LOCAL(number_ext)", "Value": "+31150010002", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_proc_set_callerid", "AppData": "0?presentation", "Extension": "403", "Event": "Newexten", "Application": "GotoIf", "Privilege": "dialplan,all", "Priority": "3", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_proc_set_callerid", "AppData": "CALLERID(pres)=allowed_passed_screen", "Extension": "403", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "4", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_proc_set_callerid", "AppData": "CALLERID(name)=David Meadows", "Extension": "403", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "5", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "Privilege": "call,all", "Event": "NewCallerid", "CallerIDName": "David Meadows", "content": "", "CallerIDNum": "150010002"}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_proc_set_callerid", "AppData": "CALLERID(num)=202", "Extension": "403", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "6", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "Privilege": "call,all", "Event": "NewCallerid", "CallerIDName": "David Meadows", "content": "", "CallerIDNum": "202"}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_proc_set_callerid", "AppData": "0?Set(CALLERID(pres)=prohib_passed_screen)", "Extension": "403", "Event": "Newexten", "Application": "ExecIf", "Privilege": "dialplan,all", "Priority": "7", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_proc_set_callerid", "AppData": "CALLERID(ANI)=202", "Extension": "403", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "8", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_proc_set_callerid", "AppData": "osvpi_proc_set_callerid_internal,403,1", "Extension": "403", "Event": "Newexten", "Application": "Gosub", "Privilege": "dialplan,all", "Priority": "9", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "LOCAL(ARG1)", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "LOCAL(ARG2)", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "LOCAL(ARG3)", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "LOCAL(ARGC)", "Value": "0", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_proc_set_callerid_internal", "AppData": "1?nop", "Extension": "403", "Event": "Newexten", "Application": "GotoIf", "Privilege": "dialplan,all", "Priority": "1", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_proc_set_callerid_internal", "AppData": "0?Set(CALLERID(ANI)=20)", "Extension": "403", "Event": "Newexten", "Application": "ExecIf", "Privilege": "dialplan,all", "Priority": "5", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_proc_set_callerid_internal", "AppData": "", "Extension": "403", "Event": "Newexten", "Application": "Return", "Privilege": "dialplan,all", "Priority": "6", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "GOSUB_RETVAL", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_proc_set_callerid", "AppData": "", "Extension": "403", "Event": "Newexten", "Application": "Return", "Privilege": "dialplan,all", "Priority": "10", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "GOSUB_RETVAL", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_account_clean", "AppData": "3?osvpi_account_call_int,403,1:i,1", "Extension": "403", "Event": "Newexten", "Application": "GotoIf", "Privilege": "dialplan,all", "Priority": "5", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_account_call_int", "AppData": "osvpi_proc_check_limits,403,1", "Extension": "403", "Event": "Newexten", "Application": "Gosub", "Privilege": "dialplan,all", "Priority": "1", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "LOCAL(ARGC)", "Value": "0", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_proc_check_limits", "AppData": "DEBUG: call_limit: client 0/0 and account 0/4", "Extension": "403", "Event": "Newexten", "Application": "NoOp", "Privilege": "dialplan,all", "Priority": "1", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_proc_check_limits", "AppData": "0?osvpi_handle_limit,403,client", "Extension": "403", "Event": "Newexten", "Application": "GotoIf", "Privilege": "dialplan,all", "Priority": "2", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_proc_check_limits", "AppData": "0?osvpi_handle_limit,403,account", "Extension": "403", "Event": "Newexten", "Application": "GotoIf", "Privilege": "dialplan,all", "Priority": "3", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_proc_check_limits", "AppData": "GROUP(account_lim)=150010002", "Extension": "403", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "4", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_proc_check_limits", "AppData": "GROUP(client_lim)=15001", "Extension": "403", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "5", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_proc_check_limits", "AppData": "", "Extension": "403", "Event": "Newexten", "Application": "Return", "Privilege": "dialplan,all", "Priority": "6", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "GOSUB_RETVAL", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_account_call_int", "AppData": "osvpi_proc_check_recurse,403,1(15001)", "Extension": "403", "Event": "Newexten", "Application": "Gosub", "Privilege": "dialplan,all", "Priority": "2", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "LOCAL(ARG1)", "Value": "15001", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "LOCAL(ARGC)", "Value": "1", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_proc_check_recurse", "AppData": "LOCAL(exten)=15001:403", "Extension": "403", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "1", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "LOCAL(exten)", "Value": "15001:403", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_proc_check_recurse", "AppData": "Recursion checking 15001:403 against ", "Extension": "403", "Event": "Newexten", "Application": "NoOp", "Privilege": "dialplan,all", "Priority": "2", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_proc_check_recurse", "AppData": "LOCAL(n)=0", "Extension": "403", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "3", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "LOCAL(n)", "Value": "0", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_proc_check_recurse", "AppData": "LOCAL(i)=1", "Extension": "403", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "4", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "LOCAL(i)", "Value": "1", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_proc_check_recurse", "AppData": "1?add", "Extension": "403", "Event": "Newexten", "Application": "GotoIf", "Privilege": "dialplan,all", "Priority": "5", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_proc_check_recurse", "AppData": "__EXTEN_LIST=15001:403 ", "Extension": "403", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "9", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "__EXTEN_LIST", "Value": "15001:403 ", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_proc_check_recurse", "AppData": "__EXTEN_LIST_LAST_EDIT_TIME=1509355567", "Extension": "403", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "10", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "__EXTEN_LIST_LAST_EDIT_TIME", "Value": "1509355567", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_proc_check_recurse", "AppData": "", "Extension": "403", "Event": "Newexten", "Application": "Return", "Privilege": "dialplan,all", "Priority": "11", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "GOSUB_RETVAL", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_account_call_int", "AppData": "__ORIG_EXTEN=403", "Extension": "403", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "3", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "__ORIG_EXTEN", "Value": "403", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "ODBCROWS", "Value": "0", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "ODBCSTATUS", "Value": "NODATA", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_account_call_int", "AppData": "ARRAY(conference_id,user_password,admin_password,conference_language)=", "Extension": "403", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "4", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "conference_id", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "user_password", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "admin_password", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "conference_language", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_account_call_int", "AppData": "0?osvpi_route_conference,ID,1", "Extension": "403", "Event": "Newexten", "Application": "GotoIf", "Privilege": "dialplan,all", "Priority": "5", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "ODBCROWS", "Value": "0", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "ODBCSTATUS", "Value": "NODATA", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_account_call_int", "AppData": "ARRAY(route_id,client_timezone)=", "Extension": "403", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "6", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "route_id", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "client_timezone", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_account_call_int", "AppData": "0?osvpi_route_root,403,restart", "Extension": "403", "Event": "Newexten", "Application": "GotoIf", "Privilege": "dialplan,all", "Priority": "7", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "ODBCROWS", "Value": "0", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "ODBCSTATUS", "Value": "NODATA", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_account_call_int", "AppData": "ARRAY(all_extensions,limited_extensions,password,account_spy_language)=", "Extension": "403", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "8", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "all_extensions", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "limited_extensions", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "password", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "account_spy_language", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_account_call_int", "AppData": "0?osvpi_account_spy,403,1", "Extension": "403", "Event": "Newexten", "Application": "GotoIf", "Privilege": "dialplan,all", "Priority": "9", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "ODBCROWS", "Value": "1", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "ODBCSTATUS", "Value": "SUCCESS", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "~ODBCFIELDS~", "Value": "interfaces", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_account_call_int", "AppData": "ARRAY(interfaces)=Local/ID690150@osvpi_route_phoneaccount&Local/ID690152@osvpi_route_phoneaccount", "Extension": "403", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "10", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "interfaces", "Value": "Local/ID690150@osvpi_route_phoneaccount&Local/ID690152@osvpi_route_phoneaccount", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_account_call_int", "AppData": "0?osvpi_handle_unallocated,403,1", "Extension": "403", "Event": "Newexten", "Application": "GotoIf", "Privilege": "dialplan,all", "Priority": "11", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_account_call_int", "AppData": "Local/ID690150@osvpi_route_phoneaccount&Local/ID690152@osvpi_route_phoneaccount", "Extension": "403", "Event": "Newexten", "Application": "Dial", "Privilege": "dialplan,all", "Priority": "12", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "DIALSTATUS", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "DIALEDPEERNUMBER", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "DIALEDPEERNAME", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "ANSWEREDTIME", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Variable": "DIALEDTIME", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509355567.23", "Privilege": "call,all", "Event": "Newchannel", "content": "", "ChannelState": "0", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;1", "AccountCode": "", "Context": "osvpi_route_phoneaccount", "ChannelStateDesc": "Down", "Exten": "ID690150", "CallerIDNum": "", "CallerIDName": ""}, - {"Uniqueid": "0f00dcaa884f-1509355567.24", "Privilege": "call,all", "Event": "Newchannel", "content": "", "ChannelState": "4", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "AccountCode": "", "Context": "osvpi_route_phoneaccount", "ChannelStateDesc": "Ring", "Exten": "ID690150", "CallerIDNum": "", "CallerIDName": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;1", "Variable": "DIALEDPEERNUMBER", "Value": "ID690150@osvpi_route_phoneaccount", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.23", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;1", "Uniqueid": "0f00dcaa884f-1509355567.23", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Privilege": "call,all", "Event": "NewCallerid", "CallerIDName": "", "content": "", "CallerIDNum": "403"}, - {"Uniqueid": "0f00dcaa884f-1509355567.25", "Privilege": "call,all", "Event": "Newchannel", "content": "", "ChannelState": "0", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;1", "AccountCode": "", "Context": "osvpi_route_phoneaccount", "ChannelStateDesc": "Down", "Exten": "ID690152", "CallerIDNum": "", "CallerIDName": ""}, - {"Uniqueid": "0f00dcaa884f-1509355567.26", "Privilege": "call,all", "Event": "Newchannel", "content": "", "ChannelState": "4", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "AccountCode": "", "Context": "osvpi_route_phoneaccount", "ChannelStateDesc": "Ring", "Exten": "ID690152", "CallerIDNum": "", "CallerIDName": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;1", "Variable": "DIALEDPEERNUMBER", "Value": "ID690152@osvpi_route_phoneaccount", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.25", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;1", "Uniqueid": "0f00dcaa884f-1509355567.25", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Privilege": "call,all", "Event": "NewCallerid", "CallerIDName": "", "content": "", "CallerIDNum": "403"}, - {"Channel1": "Local/ID690150@osvpi_route_phoneaccount-00000006;1", "Context": "osvpi_route_phoneaccount", "Uniqueid1": "0f00dcaa884f-1509355567.23", "Channel2": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Exten": "ID690150", "Uniqueid2": "0f00dcaa884f-1509355567.24", "Event": "LocalBridge", "Privilege": "call,all", "LocalOptimization": "Yes", "content": ""}, - {"UniqueID": "0f00dcaa884f-1509355567.22", "Destination": "Local/ID690150@osvpi_route_phoneaccount-00000006;1", "Dialstring": "ID690150@osvpi_route_phoneaccount", "ConnectedLineNum": "", "ConnectedLineName": "", "CallerIDName": "David Meadows", "Event": "Dial", "content": "", "CallerIDNum": "202", "Channel": "SIP/150010002-0000000a", "SubEvent": "Begin", "DestUniqueID": "0f00dcaa884f-1509355567.23", "Privilege": "call,all"}, - {"Channel1": "Local/ID690152@osvpi_route_phoneaccount-00000007;1", "Context": "osvpi_route_phoneaccount", "Uniqueid1": "0f00dcaa884f-1509355567.25", "Channel2": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Exten": "ID690152", "Uniqueid2": "0f00dcaa884f-1509355567.26", "Event": "LocalBridge", "Privilege": "call,all", "LocalOptimization": "Yes", "content": ""}, - {"UniqueID": "0f00dcaa884f-1509355567.22", "Destination": "Local/ID690152@osvpi_route_phoneaccount-00000007;1", "Dialstring": "ID690152@osvpi_route_phoneaccount", "ConnectedLineNum": "", "ConnectedLineName": "", "CallerIDName": "David Meadows", "Event": "Dial", "content": "", "CallerIDNum": "202", "Channel": "SIP/150010002-0000000a", "SubEvent": "Begin", "DestUniqueID": "0f00dcaa884f-1509355567.25", "Privilege": "call,all"}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "ODBCROWS", "Value": "1", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "ODBCSTATUS", "Value": "SUCCESS", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "~ODBCFIELDS~", "Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "ODBCROWS", "Value": "1", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "ODBCSTATUS", "Value": "SUCCESS", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "~ODBCFIELDS~", "Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Uniqueid": "0f00dcaa884f-1509355567.24", "Context": "osvpi_route_phoneaccount", "AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=150010001,accountid,dutch,from,,0", "Extension": "ID690150", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "1", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "__dst_account_id", "Value": "150010001", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "l_mangle_did", "Value": "accountid", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "l_mangle_cli", "Value": "dutch", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "l_cli_header", "Value": "from", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "l_primary_pickupgroup", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "app_account", "Value": "0", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Uniqueid": "0f00dcaa884f-1509355567.24", "Context": "osvpi_route_phoneaccount", "AppData": "0?vialer", "Extension": "ID690150", "Event": "Newexten", "Application": "GotoIf", "Privilege": "dialplan,all", "Priority": "2", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Uniqueid": "0f00dcaa884f-1509355567.24", "Context": "osvpi_route_phoneaccount", "AppData": "_PICKUPMARK=", "Extension": "ID690150", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "3", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "_PICKUPMARK", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Uniqueid": "0f00dcaa884f-1509355567.24", "Context": "osvpi_route_phoneaccount", "AppData": "l_trunk=0", "Extension": "ID690150", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "4", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "l_trunk", "Value": "0", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Uniqueid": "0f00dcaa884f-1509355567.24", "Context": "osvpi_route_phoneaccount", "AppData": "osvpi_route_account,ID690150,1", "Extension": "ID690150", "Event": "Newexten", "Application": "Goto", "Privilege": "dialplan,all", "Priority": "5", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Uniqueid": "0f00dcaa884f-1509355567.26", "Context": "osvpi_route_phoneaccount", "AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=150010003,accountid,dutch,from,,0", "Extension": "ID690152", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "1", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "__dst_account_id", "Value": "150010003", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "l_mangle_did", "Value": "accountid", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "l_mangle_cli", "Value": "dutch", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "l_cli_header", "Value": "from", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "l_primary_pickupgroup", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "app_account", "Value": "0", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Uniqueid": "0f00dcaa884f-1509355567.26", "Context": "osvpi_route_phoneaccount", "AppData": "0?vialer", "Extension": "ID690152", "Event": "Newexten", "Application": "GotoIf", "Privilege": "dialplan,all", "Priority": "2", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Uniqueid": "0f00dcaa884f-1509355567.26", "Context": "osvpi_route_phoneaccount", "AppData": "_PICKUPMARK=", "Extension": "ID690152", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "3", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "_PICKUPMARK", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Uniqueid": "0f00dcaa884f-1509355567.26", "Context": "osvpi_route_phoneaccount", "AppData": "l_trunk=0", "Extension": "ID690152", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "4", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "l_trunk", "Value": "0", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Uniqueid": "0f00dcaa884f-1509355567.26", "Context": "osvpi_route_phoneaccount", "AppData": "osvpi_route_account,ID690152,1", "Extension": "ID690152", "Event": "Newexten", "Application": "Goto", "Privilege": "dialplan,all", "Priority": "5", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "ODBCROWS", "Value": "1", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "ODBCSTATUS", "Value": "SUCCESS", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "~ODBCFIELDS~", "Value": "proxy", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Uniqueid": "0f00dcaa884f-1509355567.24", "Context": "osvpi_route_account", "AppData": "ARRAY(l_proxy)=172.20.0.13", "Extension": "ID690150", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "1", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "l_proxy", "Value": "172.20.0.13", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Uniqueid": "0f00dcaa884f-1509355567.24", "Context": "osvpi_route_account", "AppData": "osvpi_proc_mangle_number,accountid,1(150010001,403)", "Extension": "ID690150", "Event": "Newexten", "Application": "Gosub", "Privilege": "dialplan,all", "Priority": "2", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "LOCAL(ARG1)", "Value": "150010001", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "LOCAL(ARG2)", "Value": "403", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "LOCAL(ARGC)", "Value": "2", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Uniqueid": "0f00dcaa884f-1509355567.24", "Context": "osvpi_proc_mangle_number", "AppData": "MANGLED_EXTEN=150010001", "Extension": "accountid", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "1", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "MANGLED_EXTEN", "Value": "150010001", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Uniqueid": "0f00dcaa884f-1509355567.24", "Context": "osvpi_proc_mangle_number", "AppData": "", "Extension": "accountid", "Event": "Newexten", "Application": "Return", "Privilege": "dialplan,all", "Priority": "2", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "GOSUB_RETVAL", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Uniqueid": "0f00dcaa884f-1509355567.24", "Context": "osvpi_route_account", "AppData": "l_did=150010001", "Extension": "ID690150", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "3", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "l_did", "Value": "150010001", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Uniqueid": "0f00dcaa884f-1509355567.24", "Context": "osvpi_route_account", "AppData": "osvpi_proc_mangle_number,dutch,1(150010001,202)", "Extension": "ID690150", "Event": "Newexten", "Application": "Gosub", "Privilege": "dialplan,all", "Priority": "4", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "LOCAL(ARG1)", "Value": "150010001", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "LOCAL(ARG2)", "Value": "202", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "LOCAL(ARGC)", "Value": "2", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Uniqueid": "0f00dcaa884f-1509355567.24", "Context": "osvpi_proc_mangle_number", "AppData": "1?fullzero,1", "Extension": "dutch", "Event": "Newexten", "Application": "GotoIf", "Privilege": "dialplan,all", "Priority": "1", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Uniqueid": "0f00dcaa884f-1509355567.24", "Context": "osvpi_proc_mangle_number", "AppData": "MANGLED_EXTEN=202", "Extension": "fullzero", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "1", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "MANGLED_EXTEN", "Value": "202", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Uniqueid": "0f00dcaa884f-1509355567.24", "Context": "osvpi_proc_mangle_number", "AppData": "", "Extension": "fullzero", "Event": "Newexten", "Application": "Return", "Privilege": "dialplan,all", "Priority": "2", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "GOSUB_RETVAL", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Uniqueid": "0f00dcaa884f-1509355567.24", "Context": "osvpi_route_account", "AppData": "l_mangle_cli_hdr=from-dutch", "Extension": "ID690150", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "5", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "l_mangle_cli_hdr", "Value": "from-dutch", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Uniqueid": "0f00dcaa884f-1509355567.24", "Context": "osvpi_route_account", "AppData": "l_fromuser=", "Extension": "ID690150", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "6", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "l_fromuser", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Uniqueid": "0f00dcaa884f-1509355567.24", "Context": "osvpi_route_account", "AppData": "1?Set(l_fromuser=202)", "Extension": "ID690150", "Event": "Newexten", "Application": "ExecIf", "Privilege": "dialplan,all", "Priority": "7", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "l_fromuser", "Value": "202", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "ODBCROWS", "Value": "1", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "ODBCSTATUS", "Value": "SUCCESS", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "~ODBCFIELDS~", "Value": "IF((SELECT 1 FROM baseaccount_account ba INNER JOIN userdestination_selecteduserdestination udsud ON udsud.phoneaccount_id = ba.id INNER JOIN userdestination_userdestination udud ON udud.id = udsud.userdestination_id INNER JOIN crm_cloudctiuser cccu O", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "ODBCROWS", "Value": "1", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "ODBCSTATUS", "Value": "SUCCESS", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "~ODBCFIELDS~", "Value": "proxy", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Uniqueid": "0f00dcaa884f-1509355567.24", "Context": "osvpi_route_account", "AppData": "ARRAY(cloudcti)=0", "Extension": "ID690150", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "8", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "cloudcti", "Value": "0", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Uniqueid": "0f00dcaa884f-1509355567.24", "Context": "osvpi_route_account", "AppData": "1?skipcloudcti", "Extension": "ID690150", "Event": "Newexten", "Application": "GotoIf", "Privilege": "dialplan,all", "Priority": "9", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Uniqueid": "0f00dcaa884f-1509355567.26", "Context": "osvpi_route_account", "AppData": "ARRAY(l_proxy)=172.20.0.13", "Extension": "ID690152", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "1", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "l_proxy", "Value": "172.20.0.13", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "ODBCROWS", "Value": "1", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "ODBCSTATUS", "Value": "SUCCESS", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "~ODBCFIELDS~", "Value": "GROUP_CONCAT(DISTINCT(csw.url) SEPARATOR ' '),internal_number,GROUP_CONCAT(DISTINCT(ud.internal_number) SEPARATOR ' ')", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Uniqueid": "0f00dcaa884f-1509355567.26", "Context": "osvpi_route_account", "AppData": "osvpi_proc_mangle_number,accountid,1(150010003,403)", "Extension": "ID690152", "Event": "Newexten", "Application": "Gosub", "Privilege": "dialplan,all", "Priority": "2", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "LOCAL(ARG1)", "Value": "150010003", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "LOCAL(ARG2)", "Value": "403", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "LOCAL(ARGC)", "Value": "2", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Uniqueid": "0f00dcaa884f-1509355567.26", "Context": "osvpi_proc_mangle_number", "AppData": "MANGLED_EXTEN=150010003", "Extension": "accountid", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "1", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "MANGLED_EXTEN", "Value": "150010003", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Uniqueid": "0f00dcaa884f-1509355567.26", "Context": "osvpi_proc_mangle_number", "AppData": "", "Extension": "accountid", "Event": "Newexten", "Application": "Return", "Privilege": "dialplan,all", "Priority": "2", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "GOSUB_RETVAL", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Uniqueid": "0f00dcaa884f-1509355567.26", "Context": "osvpi_route_account", "AppData": "l_did=150010003", "Extension": "ID690152", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "3", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "l_did", "Value": "150010003", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Uniqueid": "0f00dcaa884f-1509355567.26", "Context": "osvpi_route_account", "AppData": "osvpi_proc_mangle_number,dutch,1(150010003,202)", "Extension": "ID690152", "Event": "Newexten", "Application": "Gosub", "Privilege": "dialplan,all", "Priority": "4", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "LOCAL(ARG1)", "Value": "150010003", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "LOCAL(ARG2)", "Value": "202", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "LOCAL(ARGC)", "Value": "2", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Uniqueid": "0f00dcaa884f-1509355567.26", "Context": "osvpi_proc_mangle_number", "AppData": "1?fullzero,1", "Extension": "dutch", "Event": "Newexten", "Application": "GotoIf", "Privilege": "dialplan,all", "Priority": "1", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Uniqueid": "0f00dcaa884f-1509355567.26", "Context": "osvpi_proc_mangle_number", "AppData": "MANGLED_EXTEN=202", "Extension": "fullzero", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "1", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "MANGLED_EXTEN", "Value": "202", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Uniqueid": "0f00dcaa884f-1509355567.26", "Context": "osvpi_proc_mangle_number", "AppData": "", "Extension": "fullzero", "Event": "Newexten", "Application": "Return", "Privilege": "dialplan,all", "Priority": "2", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "GOSUB_RETVAL", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Uniqueid": "0f00dcaa884f-1509355567.26", "Context": "osvpi_route_account", "AppData": "l_mangle_cli_hdr=from-dutch", "Extension": "ID690152", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "5", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "l_mangle_cli_hdr", "Value": "from-dutch", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Uniqueid": "0f00dcaa884f-1509355567.26", "Context": "osvpi_route_account", "AppData": "l_fromuser=", "Extension": "ID690152", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "6", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "l_fromuser", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Uniqueid": "0f00dcaa884f-1509355567.26", "Context": "osvpi_route_account", "AppData": "1?Set(l_fromuser=202)", "Extension": "ID690152", "Event": "Newexten", "Application": "ExecIf", "Privilege": "dialplan,all", "Priority": "7", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "l_fromuser", "Value": "202", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Uniqueid": "0f00dcaa884f-1509355567.24", "Context": "osvpi_route_account", "AppData": "ARRAY(webhooks,accountinternalnumber,userinternalnumbers)=,201,", "Extension": "ID690150", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "11", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "webhooks", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "ODBCROWS", "Value": "1", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "accountinternalnumber", "Value": "201", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "ODBCSTATUS", "Value": "SUCCESS", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "userinternalnumbers", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "~ODBCFIELDS~", "Value": "IF((SELECT 1 FROM baseaccount_account ba INNER JOIN userdestination_selecteduserdestination udsud ON udsud.phoneaccount_id = ba.id INNER JOIN userdestination_userdestination udud ON udud.id = udsud.userdestination_id INNER JOIN crm_cloudctiuser cccu O", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Uniqueid": "0f00dcaa884f-1509355567.24", "Context": "osvpi_route_account", "AppData": "osvpi_proc_proxy_out,403,1", "Extension": "ID690150", "Event": "Newexten", "Application": "Goto", "Privilege": "dialplan,all", "Priority": "13", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Uniqueid": "0f00dcaa884f-1509355567.24", "Context": "osvpi_proc_proxy_out", "AppData": "X-Accountcode: 150010001", "Extension": "403", "Event": "Newexten", "Application": "SIPAddHeader", "Privilege": "dialplan,all", "Priority": "1", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "__SIPADDHEADER01", "Value": "X-Accountcode: 150010001", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Uniqueid": "0f00dcaa884f-1509355567.24", "Context": "osvpi_proc_proxy_out", "AppData": "X-Insecure-Protection: geheim", "Extension": "403", "Event": "Newexten", "Application": "SIPAddHeader", "Privilege": "dialplan,all", "Priority": "2", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "__SIPADDHEADER02", "Value": "X-Insecure-Protection: geheim", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Uniqueid": "0f00dcaa884f-1509355567.24", "Context": "osvpi_proc_proxy_out", "AppData": "X-Mangle-Cli: from-dutch", "Extension": "403", "Event": "Newexten", "Application": "SIPAddHeader", "Privilege": "dialplan,all", "Priority": "3", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "__SIPADDHEADER03", "Value": "X-Mangle-Cli: from-dutch", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Uniqueid": "0f00dcaa884f-1509355567.24", "Context": "osvpi_proc_proxy_out", "AppData": "_dial_options_callaccept=", "Extension": "403", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "4", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "_dial_options_callaccept", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Uniqueid": "0f00dcaa884f-1509355567.24", "Context": "osvpi_proc_proxy_out", "AppData": "_dial_options_callnotify=", "Extension": "403", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "5", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "_dial_options_callnotify", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Uniqueid": "0f00dcaa884f-1509355567.24", "Context": "osvpi_proc_proxy_out", "AppData": "0?Set(l_proxy=opensipsfg)", "Extension": "403", "Event": "Newexten", "Application": "ExecIf", "Privilege": "dialplan,all", "Priority": "6", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Uniqueid": "0f00dcaa884f-1509355567.24", "Context": "osvpi_proc_proxy_out", "AppData": "l_extra_options=", "Extension": "403", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "7", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "l_extra_options", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Uniqueid": "0f00dcaa884f-1509355567.24", "Context": "osvpi_proc_proxy_out", "AppData": "SIP/150010001/150010001/172.20.0.13!!202,,", "Extension": "403", "Event": "Newexten", "Application": "Dial", "Privilege": "dialplan,all", "Priority": "8", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "DIALSTATUS", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "DIALEDPEERNUMBER", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "DIALEDPEERNAME", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "ANSWEREDTIME", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "DIALEDTIME", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Uniqueid": "0f00dcaa884f-1509355567.26", "Context": "osvpi_route_account", "AppData": "ARRAY(cloudcti)=0", "Extension": "ID690152", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "8", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "cloudcti", "Value": "0", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Uniqueid": "0f00dcaa884f-1509355567.26", "Context": "osvpi_route_account", "AppData": "1?skipcloudcti", "Extension": "ID690152", "Event": "Newexten", "Application": "GotoIf", "Privilege": "dialplan,all", "Priority": "9", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "ODBCROWS", "Value": "1", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "ODBCSTATUS", "Value": "SUCCESS", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "~ODBCFIELDS~", "Value": "GROUP_CONCAT(DISTINCT(csw.url) SEPARATOR ' '),internal_number,GROUP_CONCAT(DISTINCT(ud.internal_number) SEPARATOR ' ')", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Uniqueid": "0f00dcaa884f-1509355567.26", "Context": "osvpi_route_account", "AppData": "ARRAY(webhooks,accountinternalnumber,userinternalnumbers)=,203,", "Extension": "ID690152", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "11", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "webhooks", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "accountinternalnumber", "Value": "203", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "userinternalnumbers", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Uniqueid": "0f00dcaa884f-1509355567.26", "Context": "osvpi_route_account", "AppData": "osvpi_proc_proxy_out,403,1", "Extension": "ID690152", "Event": "Newexten", "Application": "Goto", "Privilege": "dialplan,all", "Priority": "13", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Uniqueid": "0f00dcaa884f-1509355567.26", "Context": "osvpi_proc_proxy_out", "AppData": "X-Accountcode: 150010003", "Extension": "403", "Event": "Newexten", "Application": "SIPAddHeader", "Privilege": "dialplan,all", "Priority": "1", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "__SIPADDHEADER01", "Value": "X-Accountcode: 150010003", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Uniqueid": "0f00dcaa884f-1509355567.26", "Context": "osvpi_proc_proxy_out", "AppData": "X-Insecure-Protection: geheim", "Extension": "403", "Event": "Newexten", "Application": "SIPAddHeader", "Privilege": "dialplan,all", "Priority": "2", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "__SIPADDHEADER02", "Value": "X-Insecure-Protection: geheim", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Uniqueid": "0f00dcaa884f-1509355567.26", "Context": "osvpi_proc_proxy_out", "AppData": "X-Mangle-Cli: from-dutch", "Extension": "403", "Event": "Newexten", "Application": "SIPAddHeader", "Privilege": "dialplan,all", "Priority": "3", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "__SIPADDHEADER03", "Value": "X-Mangle-Cli: from-dutch", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Uniqueid": "0f00dcaa884f-1509355567.26", "Context": "osvpi_proc_proxy_out", "AppData": "_dial_options_callaccept=", "Extension": "403", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "4", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "_dial_options_callaccept", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Uniqueid": "0f00dcaa884f-1509355567.26", "Context": "osvpi_proc_proxy_out", "AppData": "_dial_options_callnotify=", "Extension": "403", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "5", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "_dial_options_callnotify", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Uniqueid": "0f00dcaa884f-1509355567.26", "Context": "osvpi_proc_proxy_out", "AppData": "0?Set(l_proxy=opensipsfg)", "Extension": "403", "Event": "Newexten", "Application": "ExecIf", "Privilege": "dialplan,all", "Priority": "6", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Uniqueid": "0f00dcaa884f-1509355567.26", "Context": "osvpi_proc_proxy_out", "AppData": "l_extra_options=", "Extension": "403", "Event": "Newexten", "Application": "Set", "Privilege": "dialplan,all", "Priority": "7", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "l_extra_options", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Uniqueid": "0f00dcaa884f-1509355567.26", "Context": "osvpi_proc_proxy_out", "AppData": "SIP/150010003/150010003/172.20.0.13!!202,,", "Extension": "403", "Event": "Newexten", "Application": "Dial", "Privilege": "dialplan,all", "Priority": "8", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "DIALSTATUS", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "DIALEDPEERNUMBER", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "DIALEDPEERNAME", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "ANSWEREDTIME", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "DIALEDTIME", "Value": "", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509355567.27", "Privilege": "call,all", "Event": "Newchannel", "content": "", "ChannelState": "0", "Channel": "SIP/150010001-0000000b", "AccountCode": "150010001", "Context": "osvpi_account", "ChannelStateDesc": "Down", "Exten": "", "CallerIDNum": "", "CallerIDName": ""}, - {"Channel": "SIP/150010001-0000000b", "Variable": "SIPCALLID", "Value": "0349e1395bba79ad1c6655a675213393@test.voipgrid.nl", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.27", "content": ""}, - {"Channel": "SIP/150010001-0000000b", "Variable": "__client_id", "Value": "15001", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.27", "content": ""}, - {"Channel": "SIP/150010001-0000000b", "Variable": "__account_id", "Value": "150010001", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.27", "content": ""}, - {"Channel": "SIP/150010001-0000000b", "Variable": "__record_call", "Value": "no", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.27", "content": ""}, - {"Channel": "SIP/150010001-0000000b", "Variable": "__intprefix", "Value": "31", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.27", "content": ""}, - {"Channel": "SIP/150010001-0000000b", "Variable": "__limit_account", "Value": "4", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.27", "content": ""}, - {"Channel": "SIP/150010001-0000000b", "Variable": "__limit_client", "Value": "0", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.27", "content": ""}, - {"Channel": "SIP/150010001-0000000b", "Variable": "__hide_ext_cliname", "Value": "1", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.27", "content": ""}, - {"Channel": "SIP/150010001-0000000b", "Variable": "__TRANSFER_CONTEXT", "Value": "osvpi_account_transfer", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.27", "content": ""}, - {"Channel": "SIP/150010001-0000000b", "Variable": "DIALEDPEERNUMBER", "Value": "150010001/150010001/172.20.0.13!!202", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.27", "content": ""}, - {"Channel": "SIP/150010001-0000000b", "Uniqueid": "0f00dcaa884f-1509355567.27", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Privilege": "call,all", "Event": "NewCallerid", "CallerIDName": "", "content": "", "CallerIDNum": "403"}, - {"UniqueID": "0f00dcaa884f-1509355567.24", "Destination": "SIP/150010001-0000000b", "Dialstring": "150010001/150010001/172.20.0.13!!202", "ConnectedLineNum": "403", "ConnectedLineName": "", "CallerIDName": "David Meadows", "Event": "Dial", "content": "", "CallerIDNum": "202", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "SubEvent": "Begin", "DestUniqueID": "0f00dcaa884f-1509355567.27", "Privilege": "call,all"}, - {"Uniqueid": "0f00dcaa884f-1509355567.28", "Privilege": "call,all", "Event": "Newchannel", "content": "", "ChannelState": "0", "Channel": "SIP/150010003-0000000c", "AccountCode": "150010003", "Context": "osvpi_account", "ChannelStateDesc": "Down", "Exten": "", "CallerIDNum": "", "CallerIDName": ""}, - {"Channel": "SIP/150010003-0000000c", "Variable": "SIPCALLID", "Value": "2eeed81030ae2237084ba5d32e53ea0d@test.voipgrid.nl", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.28", "content": ""}, - {"Channel": "SIP/150010003-0000000c", "Variable": "__client_id", "Value": "15001", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.28", "content": ""}, - {"Channel": "SIP/150010003-0000000c", "Variable": "__account_id", "Value": "150010003", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.28", "content": ""}, - {"Channel": "SIP/150010003-0000000c", "Variable": "__record_call", "Value": "no", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.28", "content": ""}, - {"Channel": "SIP/150010003-0000000c", "Variable": "__intprefix", "Value": "31", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.28", "content": ""}, - {"Channel": "SIP/150010003-0000000c", "Variable": "__limit_account", "Value": "4", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.28", "content": ""}, - {"Channel": "SIP/150010003-0000000c", "Variable": "__limit_client", "Value": "0", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.28", "content": ""}, - {"Channel": "SIP/150010003-0000000c", "Variable": "__hide_ext_cliname", "Value": "1", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.28", "content": ""}, - {"Channel": "SIP/150010003-0000000c", "Variable": "__TRANSFER_CONTEXT", "Value": "osvpi_account_transfer", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.28", "content": ""}, - {"Channel": "SIP/150010003-0000000c", "Variable": "DIALEDPEERNUMBER", "Value": "150010003/150010003/172.20.0.13!!202", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.28", "content": ""}, - {"Channel": "SIP/150010003-0000000c", "Uniqueid": "0f00dcaa884f-1509355567.28", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Privilege": "call,all", "Event": "NewCallerid", "CallerIDName": "", "content": "", "CallerIDNum": "403"}, - {"UniqueID": "0f00dcaa884f-1509355567.26", "Destination": "SIP/150010003-0000000c", "Dialstring": "150010003/150010003/172.20.0.13!!202", "ConnectedLineNum": "403", "ConnectedLineName": "", "CallerIDName": "David Meadows", "Event": "Dial", "content": "", "CallerIDNum": "202", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "SubEvent": "Begin", "DestUniqueID": "0f00dcaa884f-1509355567.28", "Privilege": "call,all"}, - {"Channel": "SIP/150010001-0000000b", "Uniqueid": "0f00dcaa884f-1509355567.27", "CallerIDName": "", "ChannelStateDesc": "Ringing", "ConnectedLineNum": "202", "ConnectedLineName": "David Meadows", "Privilege": "call,all", "CallerIDNum": "403", "Event": "Newstate", "content": "", "ChannelState": "5"}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;1", "Uniqueid": "0f00dcaa884f-1509355567.23", "CallerIDName": "", "ChannelStateDesc": "Ringing", "ConnectedLineNum": "202", "ConnectedLineName": "David Meadows", "Privilege": "call,all", "CallerIDNum": "403", "Event": "Newstate", "content": "", "ChannelState": "5"}, - {"Channel": "SIP/150010003-0000000c", "Uniqueid": "0f00dcaa884f-1509355567.28", "CallerIDName": "", "ChannelStateDesc": "Ringing", "ConnectedLineNum": "202", "ConnectedLineName": "David Meadows", "Privilege": "call,all", "CallerIDNum": "403", "Event": "Newstate", "content": "", "ChannelState": "5"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;1", "Uniqueid": "0f00dcaa884f-1509355567.25", "CallerIDName": "", "ChannelStateDesc": "Ringing", "ConnectedLineNum": "202", "ConnectedLineName": "David Meadows", "Privilege": "call,all", "CallerIDNum": "403", "Event": "Newstate", "content": "", "ChannelState": "5"}, - {"Uniqueid": "0f00dcaa884f-1509355567.27", "ConnectedLineNum": "202", "ConnectedLineName": "David Meadows", "CallerIDName": "", "Cause": "17", "Cause-txt": "User busy", "Event": "Hangup", "content": "", "CallerIDNum": "403", "Channel": "SIP/150010001-0000000b", "AccountCode": "150010002", "Privilege": "call,all"}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Variable": "DIALSTATUS", "Value": "BUSY", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.24", "content": ""}, - {"UniqueID": "0f00dcaa884f-1509355567.24", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "SubEvent": "End", "DialStatus": "BUSY", "Event": "Dial", "Privilege": "call,all", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Uniqueid": "0f00dcaa884f-1509355567.24", "Context": "osvpi_proc_proxy_out", "AppData": "1?falloff", "Extension": "403", "Event": "Newexten", "Application": "GotoIf", "Privilege": "dialplan,all", "Priority": "9", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Uniqueid": "0f00dcaa884f-1509355567.24", "Context": "osvpi_proc_proxy_out", "AppData": "Got hangupcause 17 from peer 150010001 (did=150010001, cli=202, pres=allowed_passed_screen, status=BUSY, proxy=172.20.0.13)", "Extension": "403", "Event": "Newexten", "Application": "NoOp", "Privilege": "dialplan,all", "Priority": "12", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Uniqueid": "0f00dcaa884f-1509355567.24", "Context": "osvpi_proc_proxy_out", "AppData": "1?Hangup(USER_BUSY)", "Extension": "403", "Event": "Newexten", "Application": "ExecIf", "Privilege": "dialplan,all", "Priority": "13", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Uniqueid": "0f00dcaa884f-1509355567.24", "Privilege": "call,all", "Event": "SoftHangupRequest", "Cause": "16", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Uniqueid": "0f00dcaa884f-1509355567.24", "Context": "handlers", "AppData": "1?nosip", "Extension": "onhangup", "Event": "Newexten", "Application": "GotoIf", "Privilege": "dialplan,all", "Priority": "1", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "Uniqueid": "0f00dcaa884f-1509355567.24", "Context": "handlers", "AppData": "0?osvpi_proc_httptouch,s,1()", "Extension": "onhangup", "Event": "Newexten", "Application": "GosubIf", "Privilege": "dialplan,all", "Priority": "3", "content": ""}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;1", "Variable": "CHANLOCALSTATUS", "Value": "BUSY", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.23", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509355567.24", "ConnectedLineNum": "403", "ConnectedLineName": "", "CallerIDName": "David Meadows", "Cause": "17", "Cause-txt": "User busy", "Event": "Hangup", "content": "", "CallerIDNum": "202", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;2", "AccountCode": "150010002", "Privilege": "call,all"}, - {"Uniqueid": "0f00dcaa884f-1509355567.23", "ConnectedLineNum": "202", "ConnectedLineName": "David Meadows", "CallerIDName": "", "Cause": "17", "Cause-txt": "User busy", "Event": "Hangup", "content": "", "CallerIDNum": "403", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000006;1", "AccountCode": "150010002", "Privilege": "call,all"}, - {"Uniqueid": "0f00dcaa884f-1509355567.28", "ConnectedLineNum": "202", "ConnectedLineName": "David Meadows", "CallerIDName": "", "Cause": "21", "Cause-txt": "Call Rejected", "Event": "Hangup", "content": "", "CallerIDNum": "403", "Channel": "SIP/150010003-0000000c", "AccountCode": "150010002", "Privilege": "call,all"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Variable": "DIALSTATUS", "Value": "BUSY", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.26", "content": ""}, - {"UniqueID": "0f00dcaa884f-1509355567.26", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "SubEvent": "End", "DialStatus": "BUSY", "Event": "Dial", "Privilege": "call,all", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Uniqueid": "0f00dcaa884f-1509355567.26", "Context": "osvpi_proc_proxy_out", "AppData": "1?falloff", "Extension": "403", "Event": "Newexten", "Application": "GotoIf", "Privilege": "dialplan,all", "Priority": "9", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Uniqueid": "0f00dcaa884f-1509355567.26", "Context": "osvpi_proc_proxy_out", "AppData": "Got hangupcause 21 from peer 150010003 (did=150010003, cli=202, pres=allowed_passed_screen, status=BUSY, proxy=172.20.0.13)", "Extension": "403", "Event": "Newexten", "Application": "NoOp", "Privilege": "dialplan,all", "Priority": "12", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Uniqueid": "0f00dcaa884f-1509355567.26", "Context": "osvpi_proc_proxy_out", "AppData": "0?Hangup(USER_BUSY)", "Extension": "403", "Event": "Newexten", "Application": "ExecIf", "Privilege": "dialplan,all", "Priority": "13", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Uniqueid": "0f00dcaa884f-1509355567.26", "Context": "osvpi_proc_proxy_out", "AppData": "NO_ANSWER", "Extension": "403", "Event": "Newexten", "Application": "Hangup", "Privilege": "dialplan,all", "Priority": "14", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Uniqueid": "0f00dcaa884f-1509355567.26", "Privilege": "call,all", "Event": "SoftHangupRequest", "Cause": "16", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Uniqueid": "0f00dcaa884f-1509355567.26", "Context": "handlers", "AppData": "1?nosip", "Extension": "onhangup", "Event": "Newexten", "Application": "GotoIf", "Privilege": "dialplan,all", "Priority": "1", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "Uniqueid": "0f00dcaa884f-1509355567.26", "Context": "handlers", "AppData": "0?osvpi_proc_httptouch,s,1()", "Extension": "onhangup", "Event": "Newexten", "Application": "GosubIf", "Privilege": "dialplan,all", "Priority": "3", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;1", "Variable": "CHANLOCALSTATUS", "Value": "BUSY", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.25", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509355567.26", "ConnectedLineNum": "403", "ConnectedLineName": "", "CallerIDName": "David Meadows", "Cause": "19", "Cause-txt": "User alerting, no answer", "Event": "Hangup", "content": "", "CallerIDNum": "202", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;2", "AccountCode": "150010002", "Privilege": "call,all"}, - {"Uniqueid": "0f00dcaa884f-1509355567.25", "ConnectedLineNum": "202", "ConnectedLineName": "David Meadows", "CallerIDName": "", "Cause": "19", "Cause-txt": "User alerting, no answer", "Event": "Hangup", "content": "", "CallerIDNum": "403", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000007;1", "AccountCode": "150010002", "Privilege": "call,all"}, - {"Channel": "SIP/150010002-0000000a", "Variable": "DIALSTATUS", "Value": "NOANSWER", "Event": "VarSet", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509355567.22", "content": ""}, - {"UniqueID": "0f00dcaa884f-1509355567.22", "Channel": "SIP/150010002-0000000a", "SubEvent": "End", "DialStatus": "NOANSWER", "Event": "Dial", "Privilege": "call,all", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_account_call_int", "AppData": "0?osvpi_proc_hangup,403,1", "Extension": "403", "Event": "Newexten", "Application": "GotoIf", "Privilege": "dialplan,all", "Priority": "13", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "osvpi_account_call_int", "AppData": "NO_ANSWER", "Extension": "403", "Event": "Newexten", "Application": "Hangup", "Privilege": "dialplan,all", "Priority": "14", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Privilege": "call,all", "Event": "SoftHangupRequest", "Cause": "16", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "handlers", "AppData": "0?nosip", "Extension": "onhangup", "Event": "Newexten", "Application": "GotoIf", "Privilege": "dialplan,all", "Priority": "1", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "handlers", "AppData": "LOG: rtpqos: caller=172.20.0.254:43904;asterisk=0.0.0.0:16382;ssrc=2142249535;themssrc=0;lp=0;rxjitter=0.000000;rxcount=0;txjitter=0.000000;txcount=0;rlp=0;rtt=0.000000;billsec=0", "Extension": "onhangup", "Event": "Newexten", "Application": "NoOp", "Privilege": "dialplan,all", "Priority": "2", "content": ""}, - {"Channel": "SIP/150010002-0000000a", "Uniqueid": "0f00dcaa884f-1509355567.22", "Context": "handlers", "AppData": "0?osvpi_proc_httptouch,s,1()", "Extension": "onhangup", "Event": "Newexten", "Application": "GosubIf", "Privilege": "dialplan,all", "Priority": "3", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509355567.22", "ConnectedLineNum": "", "ConnectedLineName": "", "CallerIDName": "David Meadows", "Cause": "19", "Cause-txt": "User alerting, no answer", "Event": "Hangup", "content": "", "CallerIDNum": "202", "Channel": "SIP/150010002-0000000a", "AccountCode": "150010002", "Privilege": "call,all"} -] + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000010", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "401", "Language": "en", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.217", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000010", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newstate", "Exten": "401", "Language": "nl", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.217", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000010", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "401", "Language": "nl", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "5", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.217", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000010", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "401", "Language": "nl", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "6", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.217", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000009;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730152", "Language": "en", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.220", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000009;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730152", "Language": "en", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.222", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000009;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "401", "Language": "en", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.220", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000009;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "401", "Language": "en", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.220", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000009;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "401", "Language": "en", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.220", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000a;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.224", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000a;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.226", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000a;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "401", "Language": "en", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.224", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000a;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "401", "Language": "en", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.224", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000a;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "401", "Language": "en", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.224", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000009;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730152", "Language": "en", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.222", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000009;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730152", "Language": "en", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.222", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000009;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730152", "Language": "en", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.222", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730152", "LocalOneAccountCode": "150010001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "401", "LocalOneChannel": "Local/ID730152@osvpi_route_phoneaccount-00000009;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Andrew Garza", "LocalOneConnectedLineNum": "201", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "401", "LocalOneLanguage": "en", "LocalOneLinkedid": "195176c06ab8-1529936670.217", "LocalOnePriority": "1", "LocalOneUniqueid": "195176c06ab8-1529936670.220", "LocalOptimization": "Yes", "LocalTwoAccountCode": "150010001", "LocalTwoCallerIDName": "Andrew Garza", "LocalTwoCallerIDNum": "201", "LocalTwoChannel": "Local/ID730152@osvpi_route_phoneaccount-00000009;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "401", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730152", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "195176c06ab8-1529936670.217", "LocalTwoPriority": "1", "LocalTwoUniqueid": "195176c06ab8-1529936670.222", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000010", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-00000009;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "401", "DestLanguage": "en", "DestLinkedid": "195176c06ab8-1529936670.217", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529936670.220", "DialString": "ID730152@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "401", "Language": "nl", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "12", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.217", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000a;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.226", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000a;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.226", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000a;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.226", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730151", "LocalOneAccountCode": "150010001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "401", "LocalOneChannel": "Local/ID730151@osvpi_route_phoneaccount-0000000a;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Andrew Garza", "LocalOneConnectedLineNum": "201", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "401", "LocalOneLanguage": "en", "LocalOneLinkedid": "195176c06ab8-1529936670.217", "LocalOnePriority": "1", "LocalOneUniqueid": "195176c06ab8-1529936670.224", "LocalOptimization": "Yes", "LocalTwoAccountCode": "150010001", "LocalTwoCallerIDName": "Andrew Garza", "LocalTwoCallerIDNum": "201", "LocalTwoChannel": "Local/ID730151@osvpi_route_phoneaccount-0000000a;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "401", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730151", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "195176c06ab8-1529936670.217", "LocalTwoPriority": "1", "LocalTwoUniqueid": "195176c06ab8-1529936670.226", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000010", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-0000000a;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "401", "DestLanguage": "en", "DestLinkedid": "195176c06ab8-1529936670.217", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529936670.224", "DialString": "ID730151@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "401", "Language": "nl", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "12", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.217", "content": ""}, + {"AccountCode": "150010003", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010003-00000011", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.230", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010002-00000012", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.231", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010003-00000011", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "401", "Language": "nl", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.230", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010003-00000011", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "401", "Language": "nl", "Linkedid": "195176c06ab8-1529936670.217", "OldAccountCode": "150010003", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.230", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010003-00000011", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "401", "Language": "nl", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.230", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010002-00000012", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "401", "Language": "nl", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.231", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010002-00000012", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "401", "Language": "nl", "Linkedid": "195176c06ab8-1529936670.217", "OldAccountCode": "150010002", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.231", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010002-00000012", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "401", "Language": "nl", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.231", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000009;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "SIP/150010003-00000011", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "401", "DestLanguage": "nl", "DestLinkedid": "195176c06ab8-1529936670.217", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529936670.230", "DialString": "150010003/150010003/172.20.0.13!!201", "Event": "DialBegin", "Exten": "401", "Language": "en", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.222", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000a;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "SIP/150010002-00000012", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "401", "DestLanguage": "nl", "DestLinkedid": "195176c06ab8-1529936670.217", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529936670.231", "DialString": "150010002/150010002/172.20.0.13!!201", "Event": "DialBegin", "Exten": "401", "Language": "en", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.226", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010002-00000012", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "401", "Language": "nl", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.231", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000a;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "401", "Language": "en", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.224", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010003-00000011", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "401", "Language": "nl", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.230", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000009;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "401", "Language": "en", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.220", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000a;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "SIP/150010002-00000012", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "401", "DestLanguage": "nl", "DestLinkedid": "195176c06ab8-1529936670.217", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529936670.231", "DialStatus": "BUSY", "Event": "DialEnd", "Exten": "401", "Language": "en", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.226", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Cause": "17", "Cause-txt": "User busy", "Channel": "SIP/150010002-00000012", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Hangup", "Exten": "401", "Language": "nl", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.231", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000010", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-0000000a;1", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "401", "DestLanguage": "en", "DestLinkedid": "195176c06ab8-1529936670.217", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529936670.224", "DialStatus": "BUSY", "Event": "DialEnd", "Exten": "401", "Language": "nl", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "12", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.217", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Cause": "17", "Cause-txt": "User busy", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000a;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "401", "Language": "en", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.224", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Cause": "17", "Cause-txt": "User busy", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000a;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "4", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.226", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000009;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "SIP/150010003-00000011", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "401", "DestLanguage": "nl", "DestLinkedid": "195176c06ab8-1529936670.217", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529936670.230", "DialStatus": "BUSY", "Event": "DialEnd", "Exten": "401", "Language": "en", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.222", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Cause": "21", "Cause-txt": "Call Rejected", "Channel": "SIP/150010003-00000011", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Hangup", "Exten": "401", "Language": "nl", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.230", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Cause": "19", "Cause-txt": "User alerting, no answer", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000009;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "4", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.222", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000010", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-00000009;1", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "401", "DestLanguage": "en", "DestLinkedid": "195176c06ab8-1529936670.217", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529936670.220", "DialStatus": "NOANSWER", "Event": "DialEnd", "Exten": "401", "Language": "nl", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "12", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.217", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Cause": "19", "Cause-txt": "User alerting, no answer", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000009;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "401", "Language": "en", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.220", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Cause": "19", "Cause-txt": "User alerting, no answer", "Channel": "SIP/150010001-00000010", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "195176c06ab8-1529936670.217", "Priority": "4", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936670.217", "content": ""} +] \ No newline at end of file diff --git a/tests/fixtures/simple/ab_dnd.json b/tests/fixtures/simple/ab_dnd.json new file mode 100644 index 0000000..f127f69 --- /dev/null +++ b/tests/fixtures/simple/ab_dnd.json @@ -0,0 +1,29 @@ +[ + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000006", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529936189.77", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936189.77", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000006", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936189.77", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936189.77", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000006", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936189.77", "Priority": "5", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936189.77", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000006", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936189.77", "Priority": "6", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936189.77", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000003;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529936189.77", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936189.80", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000003;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529936189.77", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936189.82", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000003;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529936189.77", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936189.80", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000003;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529936189.77", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936189.80", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000003;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529936189.77", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936189.80", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000003;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529936189.77", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936189.82", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000003;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529936189.77", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936189.82", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000003;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529936189.77", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936189.82", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730151", "LocalOneAccountCode": "150010001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "202", "LocalOneChannel": "Local/ID730151@osvpi_route_phoneaccount-00000003;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Andrew Garza", "LocalOneConnectedLineNum": "201", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "202", "LocalOneLanguage": "en", "LocalOneLinkedid": "195176c06ab8-1529936189.77", "LocalOnePriority": "1", "LocalOneUniqueid": "195176c06ab8-1529936189.80", "LocalOptimization": "Yes", "LocalTwoAccountCode": "150010001", "LocalTwoCallerIDName": "Andrew Garza", "LocalTwoCallerIDNum": "201", "LocalTwoChannel": "Local/ID730151@osvpi_route_phoneaccount-00000003;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "202", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730151", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "195176c06ab8-1529936189.77", "LocalTwoPriority": "1", "LocalTwoUniqueid": "195176c06ab8-1529936189.82", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000006", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-00000003;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "202", "DestLanguage": "en", "DestLinkedid": "195176c06ab8-1529936189.77", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529936189.80", "DialString": "ID730151@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936189.77", "Priority": "12", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936189.77", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010002-00000007", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "195176c06ab8-1529936189.77", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936189.85", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000007", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936189.77", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936189.85", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000007", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936189.77", "OldAccountCode": "150010002", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936189.85", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000007", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936189.77", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936189.85", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000003;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "SIP/150010002-00000007", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "202", "DestLanguage": "nl", "DestLinkedid": "195176c06ab8-1529936189.77", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529936189.85", "DialString": "150010002/150010002/172.20.0.13!!201", "Event": "DialBegin", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529936189.77", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936189.82", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000003;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "SIP/150010002-00000007", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "202", "DestLanguage": "nl", "DestLinkedid": "195176c06ab8-1529936189.77", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529936189.85", "DialStatus": "BUSY", "Event": "DialEnd", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529936189.77", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936189.82", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Cause": "17", "Cause-txt": "User busy", "Channel": "SIP/150010002-00000007", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Hangup", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936189.77", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936189.85", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Cause": "17", "Cause-txt": "User busy", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000003;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "195176c06ab8-1529936189.77", "Priority": "4", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936189.82", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000006", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-00000003;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "202", "DestLanguage": "en", "DestLinkedid": "195176c06ab8-1529936189.77", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529936189.80", "DialStatus": "BUSY", "Event": "DialEnd", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936189.77", "Priority": "12", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936189.77", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Cause": "17", "Cause-txt": "User busy", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000003;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529936189.77", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936189.80", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Cause": "17", "Cause-txt": "User busy", "Channel": "SIP/150010001-00000006", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "195176c06ab8-1529936189.77", "Priority": "4", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936189.77", "content": ""} +] \ No newline at end of file diff --git a/tests/fixtures/simple/ab_reject.json b/tests/fixtures/simple/ab_reject.json new file mode 100644 index 0000000..788384e --- /dev/null +++ b/tests/fixtures/simple/ab_reject.json @@ -0,0 +1,31 @@ +[ + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000008", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529936241.98", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936241.98", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000008", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936241.98", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936241.98", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000008", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936241.98", "Priority": "5", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936241.98", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000008", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936241.98", "Priority": "6", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936241.98", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000004;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529936241.98", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936241.101", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000004;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529936241.98", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936241.103", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000004;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529936241.98", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936241.101", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000004;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529936241.98", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936241.101", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000004;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529936241.98", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936241.101", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000004;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529936241.98", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936241.103", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000004;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529936241.98", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936241.103", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000004;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529936241.98", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936241.103", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730151", "LocalOneAccountCode": "150010001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "202", "LocalOneChannel": "Local/ID730151@osvpi_route_phoneaccount-00000004;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Andrew Garza", "LocalOneConnectedLineNum": "201", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "202", "LocalOneLanguage": "en", "LocalOneLinkedid": "195176c06ab8-1529936241.98", "LocalOnePriority": "1", "LocalOneUniqueid": "195176c06ab8-1529936241.101", "LocalOptimization": "Yes", "LocalTwoAccountCode": "150010001", "LocalTwoCallerIDName": "Andrew Garza", "LocalTwoCallerIDNum": "201", "LocalTwoChannel": "Local/ID730151@osvpi_route_phoneaccount-00000004;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "202", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730151", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "195176c06ab8-1529936241.98", "LocalTwoPriority": "1", "LocalTwoUniqueid": "195176c06ab8-1529936241.103", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000008", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-00000004;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "202", "DestLanguage": "en", "DestLinkedid": "195176c06ab8-1529936241.98", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529936241.101", "DialString": "ID730151@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936241.98", "Priority": "12", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936241.98", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010002-00000009", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "195176c06ab8-1529936241.98", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936241.106", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000009", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936241.98", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936241.106", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000009", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936241.98", "OldAccountCode": "150010002", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936241.106", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000009", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936241.98", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936241.106", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000004;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "SIP/150010002-00000009", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "202", "DestLanguage": "nl", "DestLinkedid": "195176c06ab8-1529936241.98", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529936241.106", "DialString": "150010002/150010002/172.20.0.13!!201", "Event": "DialBegin", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529936241.98", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936241.103", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000009", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936241.98", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936241.106", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000004;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529936241.98", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936241.101", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000004;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "SIP/150010002-00000009", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "202", "DestLanguage": "nl", "DestLinkedid": "195176c06ab8-1529936241.98", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529936241.106", "DialStatus": "BUSY", "Event": "DialEnd", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529936241.98", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936241.103", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Cause": "17", "Cause-txt": "User busy", "Channel": "SIP/150010002-00000009", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Hangup", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936241.98", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936241.106", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Cause": "17", "Cause-txt": "User busy", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000004;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "195176c06ab8-1529936241.98", "Priority": "4", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936241.103", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000008", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-00000004;1", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "202", "DestLanguage": "en", "DestLinkedid": "195176c06ab8-1529936241.98", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529936241.101", "DialStatus": "BUSY", "Event": "DialEnd", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936241.98", "Priority": "12", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936241.98", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Cause": "17", "Cause-txt": "User busy", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000004;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529936241.98", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936241.101", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Cause": "17", "Cause-txt": "User busy", "Channel": "SIP/150010001-00000008", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "195176c06ab8-1529936241.98", "Priority": "4", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936241.98", "content": ""} +] \ No newline at end of file diff --git a/tests/fixtures/simple/ab_success.json b/tests/fixtures/simple/ab_success.json deleted file mode 100644 index 6f90979..0000000 --- a/tests/fixtures/simple/ab_success.json +++ /dev/null @@ -1,344 +0,0 @@ -[ - {"Status": "Fully Booted", "Event": "FullyBooted", "content": "", "Privilege": "system,all"}, - {"Channel": "SIP/150010002-00000073", "AccountCode": "150010002", "ChannelState": "0", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "203", "CallerIDName": "Docker", "content": "", "CallerIDNum": "150010002", "Privilege": "call,all", "ChannelStateDesc": "Down", "Uniqueid": "63f2f9ce924a-1501851189.231"}, - {"Variable": "SIPURI", "Value": "sip:150010002@10.13.36.116:5060", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "SIPDOMAIN", "Value": "10.13.37.110", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "SIPCALLID", "Value": "ca742a4e-fa315598@10.13.36.116", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "__client_id", "Value": "15001", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "__account_id", "Value": "150010002", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "__record_call", "Value": "no", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "__intprefix", "Value": "31", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "__limit_account", "Value": "4", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "__limit_client", "Value": "0", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "__hide_ext_cliname", "Value": "1", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "__TRANSFER_CONTEXT", "Value": "osvpi_account_transfer", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Channel": "SIP/150010002-00000073", "CallerIDName": "Docker", "content": "", "CallerIDNum": "150010002", "Privilege": "call,all", "ChannelState": "4", "ChannelStateDesc": "Ring", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newstate", "ConnectedLineNum": "", "ConnectedLineName": ""}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "0?GotoIf(0?osvpi_proc_hangup_insecure,203,1)", "Privilege": "dialplan,all", "content": "", "Priority": "1", "Context": "osvpi_account", "Application": "ExecIf", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "osvpi_proc_check_forwards,s,1", "Privilege": "dialplan,all", "content": "", "Priority": "2", "Context": "osvpi_account", "Application": "Gosub", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Variable": "LOCAL(ARGC)", "Value": "0", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Channel": "SIP/150010002-00000073", "Extension": "s", "AppData": "0?check,1", "Privilege": "dialplan,all", "content": "", "Priority": "1", "Context": "osvpi_proc_check_forwards", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Channel": "SIP/150010002-00000073", "Extension": "s", "AppData": "LOCAL(tmp)=70", "Privilege": "dialplan,all", "content": "", "Priority": "2", "Context": "osvpi_proc_check_forwards", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Variable": "LOCAL(tmp)", "Value": "70", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Channel": "SIP/150010002-00000073", "Extension": "s", "AppData": "0?Goto(init,1)", "Privilege": "dialplan,all", "content": "", "Priority": "3", "Context": "osvpi_proc_check_forwards", "Application": "ExecIf", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Channel": "SIP/150010002-00000073", "Extension": "s", "AppData": "1?Goto(init,1)", "Privilege": "dialplan,all", "content": "", "Priority": "4", "Context": "osvpi_proc_check_forwards", "Application": "ExecIf", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Channel": "SIP/150010002-00000073", "Extension": "init", "AppData": "MASTER_CHANNEL(SIP_MAX_FORWARDS)=16", "Privilege": "dialplan,all", "content": "", "Priority": "1", "Context": "osvpi_proc_check_forwards", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Variable": "SIP_MAX_FORWARDS", "Value": "16", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Channel": "SIP/150010002-00000073", "Extension": "init", "AppData": "DEBUG: MaxForwards: initialized to: 16", "Privilege": "dialplan,all", "content": "", "Priority": "2", "Context": "osvpi_proc_check_forwards", "Application": "NoOp", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Channel": "SIP/150010002-00000073", "Extension": "init", "AppData": "", "Privilege": "dialplan,all", "content": "", "Priority": "3", "Context": "osvpi_proc_check_forwards", "Application": "Return", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Variable": "GOSUB_RETVAL", "Value": "", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "0?osvpi_account_transfer,203,1", "Privilege": "dialplan,all", "content": "", "Priority": "3", "Context": "osvpi_account", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "ENTRY POINT username=150010002,ip=172.20.0.13/172.20.0.13,from=sip:150010002@10.13.37.110,contact=sip:150010002@10.13.36.116:5060,ua=Cisco/SPA504G-7.5.2b,name=Docker,num=150010002,pres=allowed_not_screened", "Privilege": "dialplan,all", "content": "", "Priority": "4", "Context": "osvpi_account", "Application": "NoOp", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "is_transfer=0", "Privilege": "dialplan,all", "content": "", "Priority": "5", "Context": "osvpi_account", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Variable": "is_transfer", "Value": "0", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "CDR(amaflags)=BILLING", "Privilege": "dialplan,all", "content": "", "Priority": "6", "Context": "osvpi_account", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "user_privacy=0", "Privilege": "dialplan,all", "content": "", "Priority": "7", "Context": "osvpi_account", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Variable": "user_privacy", "Value": "0", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "1?Set(__supports_progress=1)", "Privilege": "dialplan,all", "content": "", "Priority": "8", "Context": "osvpi_account", "Application": "ExecIf", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Variable": "__supports_progress", "Value": "1", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "osvpi_proc_record_call,s-no,1(out,15001,150010002)", "Privilege": "dialplan,all", "content": "", "Priority": "9", "Context": "osvpi_account", "Application": "Gosub", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Variable": "LOCAL(ARG1)", "Value": "out", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "LOCAL(ARG2)", "Value": "15001", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "LOCAL(ARG3)", "Value": "150010002", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "LOCAL(ARGC)", "Value": "3", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Channel": "SIP/150010002-00000073", "Extension": "s-no", "AppData": "", "Privilege": "dialplan,all", "content": "", "Priority": "1", "Context": "osvpi_proc_record_call", "Application": "Return", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Variable": "GOSUB_RETVAL", "Value": "", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "l_tmp=", "Privilege": "dialplan,all", "content": "", "Priority": "10", "Context": "osvpi_account", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Variable": "l_tmp", "Value": "", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "1?Set(l_tmp=)", "Privilege": "dialplan,all", "content": "", "Priority": "11", "Context": "osvpi_account", "Application": "ExecIf", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Variable": "l_tmp", "Value": "", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "1?checkprivacy", "Privilege": "dialplan,all", "content": "", "Priority": "12", "Context": "osvpi_account", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "0?Set(CALLERID(pres)=allowed_passed_screen)", "Privilege": "dialplan,all", "content": "", "Priority": "16", "Context": "osvpi_account", "Application": "ExecIf", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "0?Set(CALLERID(pres)=prohib_passed_screen)", "Privilege": "dialplan,all", "content": "", "Priority": "17", "Context": "osvpi_account", "Application": "ExecIf", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "0?Set(CHANNEL(musicclass)=)", "Privilege": "dialplan,all", "content": "", "Priority": "18", "Context": "osvpi_account", "Application": "ExecIf", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "1?continue", "Privilege": "dialplan,all", "content": "", "Priority": "19", "Context": "osvpi_account", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "osvpi_proc_set_i18n_region,31,1", "Privilege": "dialplan,all", "content": "", "Priority": "22", "Context": "osvpi_account", "Application": "Gosub", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Variable": "LOCAL(ARGC)", "Value": "0", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Channel": "SIP/150010002-00000073", "Extension": "31", "AppData": "i18n_region=NL", "Privilege": "dialplan,all", "content": "", "Priority": "1", "Context": "osvpi_proc_set_i18n_region", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Variable": "i18n_region", "Value": "NL", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Channel": "SIP/150010002-00000073", "Extension": "31", "AppData": "", "Privilege": "dialplan,all", "content": "", "Priority": "2", "Context": "osvpi_proc_set_i18n_region", "Application": "Return", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Variable": "GOSUB_RETVAL", "Value": "", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "osvpi_account_emergency_NL,203,1", "Privilege": "dialplan,all", "content": "", "Priority": "23", "Context": "osvpi_account", "Application": "Goto", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "osvpi_account_no_emergency,203,1", "Privilege": "dialplan,all", "content": "", "Priority": "1", "Context": "osvpi_account_emergency_NL", "Application": "Goto", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "osvpi_account,203,no-emergency", "Privilege": "dialplan,all", "content": "", "Priority": "1", "Context": "osvpi_account_no_emergency", "Application": "Goto", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "osvpi_account_clean,203,1", "Privilege": "dialplan,all", "content": "", "Priority": "24", "Context": "osvpi_account", "Application": "Goto", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "return=osvpi_account_clean", "Privilege": "dialplan,all", "content": "", "Priority": "1", "Context": "osvpi_account_clean", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Variable": "return", "Value": "osvpi_account_clean", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "osvpi_return_to_canonical,31i203,1", "Privilege": "dialplan,all", "content": "", "Priority": "2", "Context": "osvpi_account_clean", "Application": "Goto", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Variable": "INVALID_EXTEN", "Value": "31i203", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Channel": "SIP/150010002-00000073", "Extension": "i", "AppData": "osvpi_account_clean,203,local", "Privilege": "dialplan,all", "content": "", "Priority": "1", "Context": "osvpi_return_to_canonical", "Application": "Goto", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "0?extern", "Privilege": "dialplan,all", "content": "", "Priority": "3", "Context": "osvpi_account_clean", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "osvpi_proc_set_callerid,203,1(150010002,0,0)", "Privilege": "dialplan,all", "content": "", "Priority": "4", "Context": "osvpi_account_clean", "Application": "Gosub", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Variable": "LOCAL(ARG1)", "Value": "150010002", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "LOCAL(ARG2)", "Value": "0", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "LOCAL(ARG3)", "Value": "0", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "LOCAL(ARGC)", "Value": "3", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "0?done", "Privilege": "dialplan,all", "content": "", "Priority": "1", "Context": "osvpi_proc_set_callerid", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Variable": "ODBCROWS", "Value": "1", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "ODBCSTATUS", "Value": "SUCCESS", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "~ODBCFIELDS~", "Value": "set,privacy,name,number_int,number_ext", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "ARRAY(LOCAL(set),LOCAL(privacy),LOCAL(name),LOCAL(number_int),LOCAL(number_ext))=1,0,Robert Murray,202,+31150010001", "Privilege": "dialplan,all", "content": "", "Priority": "2", "Context": "osvpi_proc_set_callerid", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Variable": "LOCAL(set)", "Value": "1", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "LOCAL(privacy)", "Value": "0", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "LOCAL(name)", "Value": "Robert Murray", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "LOCAL(number_int)", "Value": "202", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "LOCAL(number_ext)", "Value": "+31150010001", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "0?presentation", "Privilege": "dialplan,all", "content": "", "Priority": "3", "Context": "osvpi_proc_set_callerid", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "CALLERID(pres)=allowed_passed_screen", "Privilege": "dialplan,all", "content": "", "Priority": "4", "Context": "osvpi_proc_set_callerid", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "CALLERID(name)=Robert Murray", "Privilege": "dialplan,all", "content": "", "Priority": "5", "Context": "osvpi_proc_set_callerid", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"CallerIDName": "Robert Murray", "Channel": "SIP/150010002-00000073", "Privilege": "call,all", "content": "", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "NewCallerid", "CallerIDNum": "150010002", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "CALLERID(num)=202", "Privilege": "dialplan,all", "content": "", "Priority": "6", "Context": "osvpi_proc_set_callerid", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"CallerIDName": "Robert Murray", "Channel": "SIP/150010002-00000073", "Privilege": "call,all", "content": "", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "NewCallerid", "CallerIDNum": "202", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "0?Set(CALLERID(pres)=prohib_passed_screen)", "Privilege": "dialplan,all", "content": "", "Priority": "7", "Context": "osvpi_proc_set_callerid", "Application": "ExecIf", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "CALLERID(ANI)=202", "Privilege": "dialplan,all", "content": "", "Priority": "8", "Context": "osvpi_proc_set_callerid", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "osvpi_proc_set_callerid_internal,203,1", "Privilege": "dialplan,all", "content": "", "Priority": "9", "Context": "osvpi_proc_set_callerid", "Application": "Gosub", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Variable": "LOCAL(ARG1)", "Value": "", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "LOCAL(ARG2)", "Value": "", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "LOCAL(ARG3)", "Value": "", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "LOCAL(ARGC)", "Value": "0", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "1?nop", "Privilege": "dialplan,all", "content": "", "Priority": "1", "Context": "osvpi_proc_set_callerid_internal", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "0?Set(CALLERID(ANI)=20)", "Privilege": "dialplan,all", "content": "", "Priority": "5", "Context": "osvpi_proc_set_callerid_internal", "Application": "ExecIf", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "", "Privilege": "dialplan,all", "content": "", "Priority": "6", "Context": "osvpi_proc_set_callerid_internal", "Application": "Return", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Variable": "GOSUB_RETVAL", "Value": "", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "", "Privilege": "dialplan,all", "content": "", "Priority": "10", "Context": "osvpi_proc_set_callerid", "Application": "Return", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Variable": "GOSUB_RETVAL", "Value": "", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "3?osvpi_account_call_int,203,1:i,1", "Privilege": "dialplan,all", "content": "", "Priority": "5", "Context": "osvpi_account_clean", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "osvpi_proc_check_limits,203,1", "Privilege": "dialplan,all", "content": "", "Priority": "1", "Context": "osvpi_account_call_int", "Application": "Gosub", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Variable": "LOCAL(ARGC)", "Value": "0", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "DEBUG: call_limit: client 0/0 and account 0/4", "Privilege": "dialplan,all", "content": "", "Priority": "1", "Context": "osvpi_proc_check_limits", "Application": "NoOp", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "0?osvpi_handle_limit,203,client", "Privilege": "dialplan,all", "content": "", "Priority": "2", "Context": "osvpi_proc_check_limits", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "0?osvpi_handle_limit,203,account", "Privilege": "dialplan,all", "content": "", "Priority": "3", "Context": "osvpi_proc_check_limits", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "GROUP(account_lim)=150010002", "Privilege": "dialplan,all", "content": "", "Priority": "4", "Context": "osvpi_proc_check_limits", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "GROUP(client_lim)=15001", "Privilege": "dialplan,all", "content": "", "Priority": "5", "Context": "osvpi_proc_check_limits", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "", "Privilege": "dialplan,all", "content": "", "Priority": "6", "Context": "osvpi_proc_check_limits", "Application": "Return", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Variable": "GOSUB_RETVAL", "Value": "", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "osvpi_proc_check_recurse,203,1(15001)", "Privilege": "dialplan,all", "content": "", "Priority": "2", "Context": "osvpi_account_call_int", "Application": "Gosub", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Variable": "LOCAL(ARG1)", "Value": "15001", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "LOCAL(ARGC)", "Value": "1", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "LOCAL(exten)=15001:203", "Privilege": "dialplan,all", "content": "", "Priority": "1", "Context": "osvpi_proc_check_recurse", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Variable": "LOCAL(exten)", "Value": "15001:203", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "Recursion checking 15001:203 against ", "Privilege": "dialplan,all", "content": "", "Priority": "2", "Context": "osvpi_proc_check_recurse", "Application": "NoOp", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "LOCAL(n)=0", "Privilege": "dialplan,all", "content": "", "Priority": "3", "Context": "osvpi_proc_check_recurse", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Variable": "LOCAL(n)", "Value": "0", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "LOCAL(i)=1", "Privilege": "dialplan,all", "content": "", "Priority": "4", "Context": "osvpi_proc_check_recurse", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Variable": "LOCAL(i)", "Value": "1", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "1?add", "Privilege": "dialplan,all", "content": "", "Priority": "5", "Context": "osvpi_proc_check_recurse", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "__EXTEN_LIST=15001:203 ", "Privilege": "dialplan,all", "content": "", "Priority": "9", "Context": "osvpi_proc_check_recurse", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Variable": "__EXTEN_LIST", "Value": "15001:203 ", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "__EXTEN_LIST_LAST_EDIT_TIME=1501851189", "Privilege": "dialplan,all", "content": "", "Priority": "10", "Context": "osvpi_proc_check_recurse", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Variable": "__EXTEN_LIST_LAST_EDIT_TIME", "Value": "1501851189", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "", "Privilege": "dialplan,all", "content": "", "Priority": "11", "Context": "osvpi_proc_check_recurse", "Application": "Return", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Variable": "GOSUB_RETVAL", "Value": "", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "__ORIG_EXTEN=203", "Privilege": "dialplan,all", "content": "", "Priority": "3", "Context": "osvpi_account_call_int", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Variable": "__ORIG_EXTEN", "Value": "203", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "ODBCROWS", "Value": "0", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "ODBCSTATUS", "Value": "NODATA", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "ARRAY(conference_id,user_password,admin_password,conference_language)=", "Privilege": "dialplan,all", "content": "", "Priority": "4", "Context": "osvpi_account_call_int", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Variable": "conference_id", "Value": "", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "user_password", "Value": "", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "admin_password", "Value": "", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "conference_language", "Value": "", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "0?osvpi_route_conference,ID,1", "Privilege": "dialplan,all", "content": "", "Priority": "5", "Context": "osvpi_account_call_int", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Variable": "ODBCROWS", "Value": "0", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "ODBCSTATUS", "Value": "NODATA", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "ARRAY(route_id,client_timezone)=", "Privilege": "dialplan,all", "content": "", "Priority": "6", "Context": "osvpi_account_call_int", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Variable": "route_id", "Value": "", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "client_timezone", "Value": "", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "0?osvpi_route_root,203,restart", "Privilege": "dialplan,all", "content": "", "Priority": "7", "Context": "osvpi_account_call_int", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Variable": "ODBCROWS", "Value": "0", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "ODBCSTATUS", "Value": "NODATA", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "ARRAY(all_extensions,limited_extensions,password,account_spy_language)=", "Privilege": "dialplan,all", "content": "", "Priority": "8", "Context": "osvpi_account_call_int", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Variable": "all_extensions", "Value": "", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "limited_extensions", "Value": "", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "password", "Value": "", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "account_spy_language", "Value": "", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "0?osvpi_account_spy,203,1", "Privilege": "dialplan,all", "content": "", "Priority": "9", "Context": "osvpi_account_call_int", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Variable": "ODBCROWS", "Value": "1", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "ODBCSTATUS", "Value": "SUCCESS", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "~ODBCFIELDS~", "Value": "interfaces", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "ARRAY(interfaces)=Local/ID710152@osvpi_route_phoneaccount", "Privilege": "dialplan,all", "content": "", "Priority": "10", "Context": "osvpi_account_call_int", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Variable": "interfaces", "Value": "Local/ID710152@osvpi_route_phoneaccount", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "0?osvpi_handle_unallocated,203,1", "Privilege": "dialplan,all", "content": "", "Priority": "11", "Context": "osvpi_account_call_int", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Channel": "SIP/150010002-00000073", "Extension": "203", "AppData": "Local/ID710152@osvpi_route_phoneaccount", "Privilege": "dialplan,all", "content": "", "Priority": "12", "Context": "osvpi_account_call_int", "Application": "Dial", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Variable": "DIALSTATUS", "Value": "", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "DIALEDPEERNUMBER", "Value": "", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "DIALEDPEERNAME", "Value": "", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "ANSWEREDTIME", "Value": "", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "DIALEDTIME", "Value": "", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;1", "AccountCode": "", "ChannelState": "0", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID710152", "CallerIDName": "", "content": "", "CallerIDNum": "", "Privilege": "call,all", "ChannelStateDesc": "Down", "Uniqueid": "63f2f9ce924a-1501851189.232"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "AccountCode": "", "ChannelState": "4", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID710152", "CallerIDName": "", "content": "", "CallerIDNum": "", "Privilege": "call,all", "ChannelStateDesc": "Ring", "Uniqueid": "63f2f9ce924a-1501851189.233"}, - {"Variable": "DIALEDPEERNUMBER", "Value": "ID710152@osvpi_route_phoneaccount", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.232", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;1"}, - {"CallerIDName": "", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;1", "Privilege": "call,all", "content": "", "Uniqueid": "63f2f9ce924a-1501851189.232", "Event": "NewCallerid", "CallerIDNum": "203", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"Privilege": "call,all", "LocalOptimization": "Yes", "Uniqueid2": "63f2f9ce924a-1501851189.233", "content": "", "Channel2": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "Channel1": "Local/ID710152@osvpi_route_phoneaccount-00000039;1", "Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID710152", "Uniqueid1": "63f2f9ce924a-1501851189.232"}, - {"Destination": "Local/ID710152@osvpi_route_phoneaccount-00000039;1", "DestUniqueID": "63f2f9ce924a-1501851189.232", "content": "", "Event": "Dial", "ConnectedLineNum": "", "UniqueID": "63f2f9ce924a-1501851189.231", "CallerIDName": "Robert Murray", "Channel": "SIP/150010002-00000073", "CallerIDNum": "202", "Privilege": "call,all", "SubEvent": "Begin", "Dialstring": "ID710152@osvpi_route_phoneaccount", "ConnectedLineName": ""}, - {"Variable": "ODBCROWS", "Value": "1", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Variable": "ODBCSTATUS", "Value": "SUCCESS", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Variable": "~ODBCFIELDS~", "Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "Extension": "ID710152", "AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=150010003,accountid,dutch,from,450110,0", "Privilege": "dialplan,all", "content": "", "Priority": "1", "Context": "osvpi_route_phoneaccount", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "Newexten"}, - {"Variable": "__dst_account_id", "Value": "150010003", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Variable": "l_mangle_did", "Value": "accountid", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Variable": "l_mangle_cli", "Value": "dutch", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Variable": "l_cli_header", "Value": "from", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Variable": "l_primary_pickupgroup", "Value": "450110", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Variable": "app_account", "Value": "0", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "Extension": "ID710152", "AppData": "0?vialer", "Privilege": "dialplan,all", "content": "", "Priority": "2", "Context": "osvpi_route_phoneaccount", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "Newexten"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "Extension": "ID710152", "AppData": "_PICKUPMARK=450110", "Privilege": "dialplan,all", "content": "", "Priority": "3", "Context": "osvpi_route_phoneaccount", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "Newexten"}, - {"Variable": "_PICKUPMARK", "Value": "450110", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "Extension": "ID710152", "AppData": "l_trunk=0", "Privilege": "dialplan,all", "content": "", "Priority": "4", "Context": "osvpi_route_phoneaccount", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "Newexten"}, - {"Variable": "l_trunk", "Value": "0", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "Extension": "ID710152", "AppData": "osvpi_route_account,ID710152,1", "Privilege": "dialplan,all", "content": "", "Priority": "5", "Context": "osvpi_route_phoneaccount", "Application": "Goto", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "Newexten"}, - {"Variable": "ODBCROWS", "Value": "1", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Variable": "ODBCSTATUS", "Value": "SUCCESS", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Variable": "~ODBCFIELDS~", "Value": "proxy", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "Extension": "ID710152", "AppData": "ARRAY(l_proxy)=172.20.0.13", "Privilege": "dialplan,all", "content": "", "Priority": "1", "Context": "osvpi_route_account", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "Newexten"}, - {"Variable": "l_proxy", "Value": "172.20.0.13", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "Extension": "ID710152", "AppData": "osvpi_proc_mangle_number,accountid,1(150010003,203)", "Privilege": "dialplan,all", "content": "", "Priority": "2", "Context": "osvpi_route_account", "Application": "Gosub", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "Newexten"}, - {"Variable": "LOCAL(ARG1)", "Value": "150010003", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Variable": "LOCAL(ARG2)", "Value": "203", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Variable": "LOCAL(ARGC)", "Value": "2", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "Extension": "accountid", "AppData": "MANGLED_EXTEN=150010003", "Privilege": "dialplan,all", "content": "", "Priority": "1", "Context": "osvpi_proc_mangle_number", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "Newexten"}, - {"Variable": "MANGLED_EXTEN", "Value": "150010003", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "Extension": "accountid", "AppData": "", "Privilege": "dialplan,all", "content": "", "Priority": "2", "Context": "osvpi_proc_mangle_number", "Application": "Return", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "Newexten"}, - {"Variable": "GOSUB_RETVAL", "Value": "", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "Extension": "ID710152", "AppData": "l_did=150010003", "Privilege": "dialplan,all", "content": "", "Priority": "3", "Context": "osvpi_route_account", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "Newexten"}, - {"Variable": "l_did", "Value": "150010003", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "Extension": "ID710152", "AppData": "osvpi_proc_mangle_number,dutch,1(150010003,202)", "Privilege": "dialplan,all", "content": "", "Priority": "4", "Context": "osvpi_route_account", "Application": "Gosub", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "Newexten"}, - {"Variable": "LOCAL(ARG1)", "Value": "150010003", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Variable": "LOCAL(ARG2)", "Value": "202", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Variable": "LOCAL(ARGC)", "Value": "2", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "Extension": "dutch", "AppData": "1?fullzero,1", "Privilege": "dialplan,all", "content": "", "Priority": "1", "Context": "osvpi_proc_mangle_number", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "Newexten"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "Extension": "fullzero", "AppData": "MANGLED_EXTEN=202", "Privilege": "dialplan,all", "content": "", "Priority": "1", "Context": "osvpi_proc_mangle_number", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "Newexten"}, - {"Variable": "MANGLED_EXTEN", "Value": "202", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "Extension": "fullzero", "AppData": "", "Privilege": "dialplan,all", "content": "", "Priority": "2", "Context": "osvpi_proc_mangle_number", "Application": "Return", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "Newexten"}, - {"Variable": "GOSUB_RETVAL", "Value": "", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "Extension": "ID710152", "AppData": "l_mangle_cli_hdr=from-dutch", "Privilege": "dialplan,all", "content": "", "Priority": "5", "Context": "osvpi_route_account", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "Newexten"}, - {"Variable": "l_mangle_cli_hdr", "Value": "from-dutch", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "Extension": "ID710152", "AppData": "l_fromuser=", "Privilege": "dialplan,all", "content": "", "Priority": "6", "Context": "osvpi_route_account", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "Newexten"}, - {"Variable": "l_fromuser", "Value": "", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "Extension": "ID710152", "AppData": "1?Set(l_fromuser=202)", "Privilege": "dialplan,all", "content": "", "Priority": "7", "Context": "osvpi_route_account", "Application": "ExecIf", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "Newexten"}, - {"Variable": "l_fromuser", "Value": "202", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Variable": "ODBCROWS", "Value": "1", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Variable": "ODBCSTATUS", "Value": "SUCCESS", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Variable": "~ODBCFIELDS~", "Value": "IF((SELECT 1 FROM baseaccount_account ba INNER JOIN userdestination_selecteduserdestination udsud ON udsud.phoneaccount_id = ba.id INNER JOIN userdestination_userdestination udud ON udud.id = udsud.userdestination_id INNER JOIN crm_cloudctiuser cccu O", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "Extension": "ID710152", "AppData": "ARRAY(cloudcti)=0", "Privilege": "dialplan,all", "content": "", "Priority": "8", "Context": "osvpi_route_account", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "Newexten"}, - {"Variable": "cloudcti", "Value": "0", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "Extension": "ID710152", "AppData": "1?skipcloudcti", "Privilege": "dialplan,all", "content": "", "Priority": "9", "Context": "osvpi_route_account", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "Newexten"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "Extension": "ID710152", "AppData": "osvpi_proc_proxy_out,203,1", "Privilege": "dialplan,all", "content": "", "Priority": "11", "Context": "osvpi_route_account", "Application": "Goto", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "Newexten"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "Extension": "203", "AppData": "X-Accountcode: 150010003", "Privilege": "dialplan,all", "content": "", "Priority": "1", "Context": "osvpi_proc_proxy_out", "Application": "SIPAddHeader", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "Newexten"}, - {"Variable": "__SIPADDHEADER01", "Value": "X-Accountcode: 150010003", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "Extension": "203", "AppData": "X-Insecure-Protection: geheim", "Privilege": "dialplan,all", "content": "", "Priority": "2", "Context": "osvpi_proc_proxy_out", "Application": "SIPAddHeader", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "Newexten"}, - {"Variable": "__SIPADDHEADER02", "Value": "X-Insecure-Protection: geheim", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "Extension": "203", "AppData": "X-Mangle-Cli: from-dutch", "Privilege": "dialplan,all", "content": "", "Priority": "3", "Context": "osvpi_proc_proxy_out", "Application": "SIPAddHeader", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "Newexten"}, - {"Variable": "__SIPADDHEADER03", "Value": "X-Mangle-Cli: from-dutch", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "Extension": "203", "AppData": "_dial_options_callaccept=", "Privilege": "dialplan,all", "content": "", "Priority": "4", "Context": "osvpi_proc_proxy_out", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "Newexten"}, - {"Variable": "_dial_options_callaccept", "Value": "", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "Extension": "203", "AppData": "_dial_options_callnotify=", "Privilege": "dialplan,all", "content": "", "Priority": "5", "Context": "osvpi_proc_proxy_out", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "Newexten"}, - {"Variable": "_dial_options_callnotify", "Value": "", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "Extension": "203", "AppData": "0?Set(l_proxy=opensipsfg)", "Privilege": "dialplan,all", "content": "", "Priority": "6", "Context": "osvpi_proc_proxy_out", "Application": "ExecIf", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "Newexten"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "Extension": "203", "AppData": "l_extra_options=", "Privilege": "dialplan,all", "content": "", "Priority": "7", "Context": "osvpi_proc_proxy_out", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "Newexten"}, - {"Variable": "l_extra_options", "Value": "", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "Extension": "203", "AppData": "SIP/150010003/150010003/172.20.0.13!!202,,", "Privilege": "dialplan,all", "content": "", "Priority": "8", "Context": "osvpi_proc_proxy_out", "Application": "Dial", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "Newexten"}, - {"Variable": "DIALSTATUS", "Value": "", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Variable": "DIALEDPEERNUMBER", "Value": "", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Variable": "DIALEDPEERNAME", "Value": "", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Variable": "ANSWEREDTIME", "Value": "", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Variable": "DIALEDTIME", "Value": "", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Channel": "SIP/150010003-00000074", "AccountCode": "150010003", "ChannelState": "0", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "", "CallerIDName": "", "content": "", "CallerIDNum": "", "Privilege": "call,all", "ChannelStateDesc": "Down", "Uniqueid": "63f2f9ce924a-1501851189.234"}, - {"Variable": "SIPCALLID", "Value": "4f505f7b64d138f97e3c60df13820a46@test.voipgrid.nl", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.234", "Event": "VarSet", "Channel": "SIP/150010003-00000074"}, - {"Variable": "__client_id", "Value": "15001", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.234", "Event": "VarSet", "Channel": "SIP/150010003-00000074"}, - {"Variable": "__account_id", "Value": "150010003", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.234", "Event": "VarSet", "Channel": "SIP/150010003-00000074"}, - {"Variable": "__record_call", "Value": "no", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.234", "Event": "VarSet", "Channel": "SIP/150010003-00000074"}, - {"Variable": "__intprefix", "Value": "31", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.234", "Event": "VarSet", "Channel": "SIP/150010003-00000074"}, - {"Variable": "__limit_account", "Value": "4", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.234", "Event": "VarSet", "Channel": "SIP/150010003-00000074"}, - {"Variable": "__limit_client", "Value": "0", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.234", "Event": "VarSet", "Channel": "SIP/150010003-00000074"}, - {"Variable": "__hide_ext_cliname", "Value": "1", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.234", "Event": "VarSet", "Channel": "SIP/150010003-00000074"}, - {"Variable": "__TRANSFER_CONTEXT", "Value": "osvpi_account_transfer", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.234", "Event": "VarSet", "Channel": "SIP/150010003-00000074"}, - {"Variable": "DIALEDPEERNUMBER", "Value": "150010003/150010003/172.20.0.13!!202", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.234", "Event": "VarSet", "Channel": "SIP/150010003-00000074"}, - {"CallerIDName": "", "Channel": "SIP/150010003-00000074", "Privilege": "call,all", "content": "", "Uniqueid": "63f2f9ce924a-1501851189.234", "Event": "NewCallerid", "CallerIDNum": "203", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"Destination": "SIP/150010003-00000074", "DestUniqueID": "63f2f9ce924a-1501851189.234", "content": "", "Event": "Dial", "ConnectedLineNum": "203", "UniqueID": "63f2f9ce924a-1501851189.233", "CallerIDName": "Robert Murray", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "CallerIDNum": "202", "Privilege": "call,all", "SubEvent": "Begin", "Dialstring": "150010003/150010003/172.20.0.13!!202", "ConnectedLineName": ""}, - {"Channel": "SIP/150010003-00000074", "CallerIDName": "", "content": "", "CallerIDNum": "203", "Privilege": "call,all", "ChannelState": "5", "ChannelStateDesc": "Ringing", "Uniqueid": "63f2f9ce924a-1501851189.234", "Event": "Newstate", "ConnectedLineNum": "202", "ConnectedLineName": "Robert Murray"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;1", "CallerIDName": "", "content": "", "CallerIDNum": "203", "Privilege": "call,all", "ChannelState": "5", "ChannelStateDesc": "Ringing", "Uniqueid": "63f2f9ce924a-1501851189.232", "Event": "Newstate", "ConnectedLineNum": "202", "ConnectedLineName": "Robert Murray"}, - {"Channel": "SIP/150010003-00000074", "CallerIDName": "", "content": "", "CallerIDNum": "203", "Privilege": "call,all", "ChannelState": "6", "ChannelStateDesc": "Up", "Uniqueid": "63f2f9ce924a-1501851189.234", "Event": "Newstate", "ConnectedLineNum": "202", "ConnectedLineName": "Robert Murray"}, - {"Variable": "DIALSTATUS", "Value": "ANSWER", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Variable": "DIALEDPEERNAME", "Value": "SIP/150010003-00000074", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Variable": "DIALEDPEERNUMBER", "Value": "150010003/150010003/172.20.0.13!!202", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Variable": "BRIDGEPEER", "Value": "SIP/150010003-00000074", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Variable": "BRIDGEPEER", "Value": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.234", "Event": "VarSet", "Channel": "SIP/150010003-00000074"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "CallerIDName": "Robert Murray", "content": "", "CallerIDNum": "202", "Privilege": "call,all", "ChannelState": "6", "ChannelStateDesc": "Up", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "Newstate", "ConnectedLineNum": "203", "ConnectedLineName": ""}, - {"Channel": "SIP/150010003-00000074", "AccountCode": "150010002", "Privilege": "call,all", "content": "", "Uniqueid": "63f2f9ce924a-1501851189.234", "OldAccountCode": "150010002", "Event": "NewAccountCode"}, - {"Channel2": "SIP/150010003-00000074", "CallerID1": "202", "Privilege": "call,all", "content": "", "Bridgetype": "core", "Channel1": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "CallerID2": "203", "Event": "Bridge", "Uniqueid1": "63f2f9ce924a-1501851189.233", "Bridgestate": "Link", "Uniqueid2": "63f2f9ce924a-1501851189.234"}, - {"Variable": "BRIDGEPEER", "Value": "SIP/150010003-00000074", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Variable": "BRIDGEPVTCALLID", "Value": "4f505f7b64d138f97e3c60df13820a46@test.voipgrid.nl", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Variable": "BRIDGEPEER", "Value": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.234", "Event": "VarSet", "Channel": "SIP/150010003-00000074"}, - {"Variable": "BRIDGEPEER", "Value": "SIP/150010003-00000074", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Variable": "BRIDGEPVTCALLID", "Value": "4f505f7b64d138f97e3c60df13820a46@test.voipgrid.nl", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Variable": "BRIDGEPEER", "Value": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.234", "Event": "VarSet", "Channel": "SIP/150010003-00000074"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;1", "CallerIDName": "", "content": "", "CallerIDNum": "203", "Privilege": "call,all", "ChannelState": "6", "ChannelStateDesc": "Up", "Uniqueid": "63f2f9ce924a-1501851189.232", "Event": "Newstate", "ConnectedLineNum": "202", "ConnectedLineName": "Robert Murray"}, - {"Variable": "DIALSTATUS", "Value": "ANSWER", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "DIALEDPEERNAME", "Value": "Local/ID710152@osvpi_route_phoneaccount-00000039;1", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "DIALEDPEERNUMBER", "Value": "ID710152@osvpi_route_phoneaccount", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "BRIDGEPEER", "Value": "Local/ID710152@osvpi_route_phoneaccount-00000039;1", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "BRIDGEPEER", "Value": "SIP/150010002-00000073", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.232", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;1"}, - {"Channel": "SIP/150010002-00000073", "CallerIDName": "Robert Murray", "content": "", "CallerIDNum": "202", "Privilege": "call,all", "ChannelState": "6", "ChannelStateDesc": "Up", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newstate", "ConnectedLineNum": "", "ConnectedLineName": ""}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;1", "AccountCode": "150010002", "Privilege": "call,all", "content": "", "Uniqueid": "63f2f9ce924a-1501851189.232", "OldAccountCode": "150010002", "Event": "NewAccountCode"}, - {"Channel2": "Local/ID710152@osvpi_route_phoneaccount-00000039;1", "CallerID1": "202", "Privilege": "call,all", "content": "", "Bridgetype": "core", "Channel1": "SIP/150010002-00000073", "CallerID2": "203", "Event": "Bridge", "Uniqueid1": "63f2f9ce924a-1501851189.231", "Bridgestate": "Link", "Uniqueid2": "63f2f9ce924a-1501851189.232"}, - {"Variable": "BRIDGEPEER", "Value": "Local/ID710152@osvpi_route_phoneaccount-00000039;1", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "BRIDGEPEER", "Value": "SIP/150010002-00000073", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.232", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;1"}, - {"Variable": "BRIDGEPVTCALLID", "Value": "ca742a4e-fa315598@10.13.36.116", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.232", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;1"}, - {"Variable": "BRIDGEPEER", "Value": "Local/ID710152@osvpi_route_phoneaccount-00000039;1", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "BRIDGEPEER", "Value": "SIP/150010002-00000073", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.232", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;1"}, - {"Variable": "BRIDGEPVTCALLID", "Value": "ca742a4e-fa315598@10.13.36.116", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.232", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;1"}, - {"Original": "Local/ID710152@osvpi_route_phoneaccount-00000039;1", "content": "", "Privilege": "call,all", "CloneState": "Up", "OriginalState": "Up", "Event": "Masquerade", "Clone": "SIP/150010003-00000074"}, - {"Newname": "SIP/150010003-00000074", "Channel": "SIP/150010003-00000074", "Privilege": "call,all", "content": "", "Uniqueid": "63f2f9ce924a-1501851189.234", "Event": "Rename"}, - {"Newname": "SIP/150010003-00000074", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;1", "Privilege": "call,all", "content": "", "Uniqueid": "63f2f9ce924a-1501851189.232", "Event": "Rename"}, - {"Newname": "Local/ID710152@osvpi_route_phoneaccount-00000039;1", "Channel": "SIP/150010003-00000074", "Privilege": "call,all", "content": "", "Uniqueid": "63f2f9ce924a-1501851189.234", "Event": "Rename"}, - {"CallerIDName": "", "Channel": "SIP/150010003-00000074", "Privilege": "call,all", "content": "", "Uniqueid": "63f2f9ce924a-1501851189.232", "Event": "NewCallerid", "CallerIDNum": "203", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"Channel2": "Local/ID710152@osvpi_route_phoneaccount-00000039;1", "CallerID1": "202", "Privilege": "call,all", "content": "", "Bridgetype": "core", "Channel1": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "CallerID2": "203", "Event": "Bridge", "Uniqueid1": "63f2f9ce924a-1501851189.233", "Bridgestate": "Unlink", "Uniqueid2": "63f2f9ce924a-1501851189.234"}, - {"Variable": "ANSWEREDTIME", "Value": "0", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Variable": "DIALEDTIME", "Value": "2", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"Variable": "BRIDGEPEER", "Value": "SIP/150010003-00000074", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "BRIDGEPVTCALLID", "Value": "4f505f7b64d138f97e3c60df13820a46@test.voipgrid.nl", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "BRIDGEPEER", "Value": "SIP/150010002-00000073", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.232", "Event": "VarSet", "Channel": "SIP/150010003-00000074"}, - {"Variable": "BRIDGEPVTCALLID", "Value": "ca742a4e-fa315598@10.13.36.116", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.232", "Event": "VarSet", "Channel": "SIP/150010003-00000074"}, - {"Uniqueid": "63f2f9ce924a-1501851189.233", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "Event": "HangupRequest", "content": "", "Privilege": "call,all"}, - {"AccountCode": "150010002", "content": "", "Cause-txt": "Normal Clearing", "Event": "Hangup", "ConnectedLineNum": "202", "CallerIDName": "", "Cause": "16", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;1", "CallerIDNum": "203", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1501851189.234", "ConnectedLineName": "Robert Murray"}, - {"Variable": "DIALSTATUS", "Value": "ANSWER", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "VarSet", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2"}, - {"UniqueID": "63f2f9ce924a-1501851189.233", "SubEvent": "End", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "content": "", "Privilege": "call,all", "Event": "Dial", "DialStatus": "ANSWER"}, - {"Cause": "16", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "content": "", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "SoftHangupRequest"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "Extension": "onhangup", "AppData": "1?nosip", "Privilege": "dialplan,all", "content": "", "Priority": "1", "Context": "handlers", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "Newexten"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "Extension": "onhangup", "AppData": "0?osvpi_proc_httptouch,s,1()", "Privilege": "dialplan,all", "content": "", "Priority": "3", "Context": "handlers", "Application": "GosubIf", "Uniqueid": "63f2f9ce924a-1501851189.233", "Event": "Newexten"}, - {"AccountCode": "150010002", "content": "", "Cause-txt": "Normal Clearing", "Event": "Hangup", "ConnectedLineNum": "203", "CallerIDName": "Robert Murray", "Cause": "16", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000039;2", "CallerIDNum": "202", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1501851189.233", "ConnectedLineName": ""}, - {"LastSR": "0.0000000000", "SequenceNumberCycles": "0", "From": "172.20.0.254:48657", "PT": "200(Sender Report)", "Event": "RTCPReceived", "ReceptionReports": "1", "Privilege": "reporting,all", "SenderSSRC": "0", "FractionLost": "0", "content": "", "HighestSequence": "12287", "IAJitter": "79", "PacketsLost": "0", "DLSR": "0.0000(sec)"}, - {"Variable": "RTPAUDIOQOS", "Value": "ssrc=1913965898;themssrc=0;lp=0;rxjitter=0.000000;rxcount=0;txjitter=0.000000;txcount=0;rlp=0;rtt=0.000000", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "RTPAUDIOQOSBRIDGED", "Value": "ssrc=1913965898;themssrc=0;lp=0;rxjitter=0.000000;rxcount=0;txjitter=0.000000;txcount=0;rlp=0;rtt=0.000000", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.232", "Event": "VarSet", "Channel": "SIP/150010003-00000074"}, - {"Variable": "RTPAUDIOQOSJITTER", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "RTPAUDIOQOSJITTERBRIDGED", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.232", "Event": "VarSet", "Channel": "SIP/150010003-00000074"}, - {"Variable": "RTPAUDIOQOSLOSS", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "RTPAUDIOQOSLOSSBRIDGED", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.232", "Event": "VarSet", "Channel": "SIP/150010003-00000074"}, - {"Variable": "RTPAUDIOQOSRTT", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "RTPAUDIOQOSRTTBRIDGED", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.232", "Event": "VarSet", "Channel": "SIP/150010003-00000074"}, - {"Variable": "RTPAUDIOQOS", "Value": "ssrc=1892536085;themssrc=1473040049;lp=0;rxjitter=0.000000;rxcount=1;txjitter=0.000000;txcount=0;rlp=0;rtt=0.000000", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.232", "Event": "VarSet", "Channel": "SIP/150010003-00000074"}, - {"Variable": "RTPAUDIOQOSBRIDGED", "Value": "ssrc=1892536085;themssrc=1473040049;lp=0;rxjitter=0.000000;rxcount=1;txjitter=0.000000;txcount=0;rlp=0;rtt=0.000000", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "RTPAUDIOQOSJITTER", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.232", "Event": "VarSet", "Channel": "SIP/150010003-00000074"}, - {"Variable": "RTPAUDIOQOSJITTERBRIDGED", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "RTPAUDIOQOSLOSS", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.232", "Event": "VarSet", "Channel": "SIP/150010003-00000074"}, - {"Variable": "RTPAUDIOQOSLOSSBRIDGED", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "RTPAUDIOQOSRTT", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.232", "Event": "VarSet", "Channel": "SIP/150010003-00000074"}, - {"Variable": "RTPAUDIOQOSRTTBRIDGED", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Uniqueid": "63f2f9ce924a-1501851189.231", "Channel": "SIP/150010002-00000073", "Event": "HangupRequest", "content": "", "Privilege": "call,all"}, - {"Channel2": "SIP/150010003-00000074", "CallerID1": "202", "Privilege": "call,all", "content": "", "Bridgetype": "core", "Channel1": "SIP/150010002-00000073", "CallerID2": "203", "Event": "Bridge", "Uniqueid1": "63f2f9ce924a-1501851189.231", "Bridgestate": "Unlink", "Uniqueid2": "63f2f9ce924a-1501851189.232"}, - {"Variable": "ANSWEREDTIME", "Value": "4", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "DIALEDTIME", "Value": "6", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"Variable": "RTPAUDIOQOS", "Value": "ssrc=1892536085;themssrc=1473040049;lp=0;rxjitter=0.000000;rxcount=1;txjitter=0.000000;txcount=0;rlp=0;rtt=0.000000", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.232", "Event": "VarSet", "Channel": "SIP/150010003-00000074"}, - {"Variable": "RTPAUDIOQOSJITTER", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.232", "Event": "VarSet", "Channel": "SIP/150010003-00000074"}, - {"Variable": "RTPAUDIOQOSLOSS", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.232", "Event": "VarSet", "Channel": "SIP/150010003-00000074"}, - {"Variable": "RTPAUDIOQOSRTT", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.232", "Event": "VarSet", "Channel": "SIP/150010003-00000074"}, - {"Variable": "RTPAUDIOQOS", "Value": "ssrc=1892536085;themssrc=1473040049;lp=0;rxjitter=0.000000;rxcount=1;txjitter=0.000000;txcount=0;rlp=0;rtt=0.000000", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.232", "Event": "VarSet", "Channel": "SIP/150010003-00000074"}, - {"AccountCode": "150010002", "content": "", "Cause-txt": "Normal Clearing", "Event": "Hangup", "ConnectedLineNum": "202", "CallerIDName": "", "Cause": "16", "Channel": "SIP/150010003-00000074", "CallerIDNum": "203", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1501851189.232", "ConnectedLineName": "Robert Murray"}, - {"Variable": "DIALSTATUS", "Value": "ANSWER", "content": "", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "VarSet", "Channel": "SIP/150010002-00000073"}, - {"UniqueID": "63f2f9ce924a-1501851189.231", "SubEvent": "End", "Channel": "SIP/150010002-00000073", "content": "", "Privilege": "call,all", "Event": "Dial", "DialStatus": "ANSWER"}, - {"Cause": "16", "Channel": "SIP/150010002-00000073", "content": "", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "SoftHangupRequest"}, - {"Channel": "SIP/150010002-00000073", "Extension": "onhangup", "AppData": "0?nosip", "Privilege": "dialplan,all", "content": "", "Priority": "1", "Context": "handlers", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Channel": "SIP/150010002-00000073", "Extension": "onhangup", "AppData": "LOG: rtpqos: caller=(null);asterisk=0.0.0.0:19370;ssrc=1913965898;themssrc=0;lp=0;rxjitter=0.000000;rxcount=0;txjitter=0.000000;txcount=0;rlp=0;rtt=0.000000;billsec=0", "Privilege": "dialplan,all", "content": "", "Priority": "2", "Context": "handlers", "Application": "NoOp", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"Channel": "SIP/150010002-00000073", "Extension": "onhangup", "AppData": "0?osvpi_proc_httptouch,s,1()", "Privilege": "dialplan,all", "content": "", "Priority": "3", "Context": "handlers", "Application": "GosubIf", "Uniqueid": "63f2f9ce924a-1501851189.231", "Event": "Newexten"}, - {"AccountCode": "150010002", "content": "", "Cause-txt": "Normal Clearing", "Event": "Hangup", "ConnectedLineNum": "", "CallerIDName": "Robert Murray", "Cause": "16", "Channel": "SIP/150010002-00000073", "CallerIDNum": "202", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1501851189.231", "ConnectedLineName": ""} -] diff --git a/tests/fixtures/simple/ab_success_a_hangup.json b/tests/fixtures/simple/ab_success_a_hangup.json new file mode 100644 index 0000000..6e879f8 --- /dev/null +++ b/tests/fixtures/simple/ab_success_a_hangup.json @@ -0,0 +1,1048 @@ +[ + { + "Event": "FullyBooted", + "Privilege": "system,all", + "Status": "Fully Booted", + "content": "" + }, + { + "Event": "FullyBooted", + "Privilege": "system,all", + "Status": "Fully Booted", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "Local Alice", + "CallerIDNum": "150010001", + "Channel": "SIP/150010001-00000004", + "ChannelState": "0", + "ChannelStateDesc": "Down", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "osvpi_account", + "Event": "Newchannel", + "Exten": "202", + "Language": "en", + "Linkedid": "195176c06ab8-1529936170.42", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529936170.42", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "Local Alice", + "CallerIDNum": "150010001", + "Channel": "SIP/150010001-00000004", + "ChannelState": "4", + "ChannelStateDesc": "Ring", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "osvpi_account", + "Event": "Newstate", + "Exten": "202", + "Language": "nl", + "Linkedid": "195176c06ab8-1529936170.42", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529936170.42", + "content": "" + }, + { + "AccountCode": "150010001", + "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "150010001", + "Channel": "SIP/150010001-00000004", + "ChannelState": "4", + "ChannelStateDesc": "Ring", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "osvpi_proc_set_callerid", + "Event": "NewCallerid", + "Exten": "202", + "Language": "nl", + "Linkedid": "195176c06ab8-1529936170.42", + "Priority": "5", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529936170.42", + "content": "" + }, + { + "AccountCode": "150010001", + "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "SIP/150010001-00000004", + "ChannelState": "4", + "ChannelStateDesc": "Ring", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "osvpi_proc_set_callerid", + "Event": "NewCallerid", + "Exten": "202", + "Language": "nl", + "Linkedid": "195176c06ab8-1529936170.42", + "Priority": "6", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529936170.42", + "content": "" + }, + { + "AccountCode": "", + "CallerIDName": "", + "CallerIDNum": "", + "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000002;1", + "ChannelState": "0", + "ChannelStateDesc": "Down", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "osvpi_route_phoneaccount", + "Event": "Newchannel", + "Exten": "ID730151", + "Language": "en", + "Linkedid": "195176c06ab8-1529936170.42", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529936170.45", + "content": "" + }, + { + "AccountCode": "", + "CallerIDName": "", + "CallerIDNum": "", + "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000002;2", + "ChannelState": "4", + "ChannelStateDesc": "Ring", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "osvpi_route_phoneaccount", + "Event": "Newchannel", + "Exten": "ID730151", + "Language": "en", + "Linkedid": "195176c06ab8-1529936170.42", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529936170.47", + "content": "" + }, + { + "AccountCode": "150010001", + "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", + "CallerIDName": "", + "CallerIDNum": "202", + "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000002;1", + "ChannelState": "0", + "ChannelStateDesc": "Down", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_route_phoneaccount", + "Event": "NewCallerid", + "Exten": "202", + "Language": "en", + "Linkedid": "195176c06ab8-1529936170.42", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529936170.45", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "", + "CallerIDNum": "202", + "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000002;1", + "ChannelState": "0", + "ChannelStateDesc": "Down", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_route_phoneaccount", + "Event": "NewAccountCode", + "Exten": "202", + "Language": "en", + "Linkedid": "195176c06ab8-1529936170.42", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529936170.45", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "", + "CallerIDNum": "202", + "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000002;1", + "ChannelState": "0", + "ChannelStateDesc": "Down", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_route_phoneaccount", + "Event": "NewConnectedLine", + "Exten": "202", + "Language": "en", + "Linkedid": "195176c06ab8-1529936170.42", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529936170.45", + "content": "" + }, + { + "AccountCode": "150010001", + "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000002;2", + "ChannelState": "4", + "ChannelStateDesc": "Ring", + "ConnectedLineName": "", + "ConnectedLineNum": "202", + "Context": "osvpi_route_phoneaccount", + "Event": "NewCallerid", + "Exten": "ID730151", + "Language": "en", + "Linkedid": "195176c06ab8-1529936170.42", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529936170.47", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000002;2", + "ChannelState": "4", + "ChannelStateDesc": "Ring", + "ConnectedLineName": "", + "ConnectedLineNum": "202", + "Context": "osvpi_route_phoneaccount", + "Event": "NewAccountCode", + "Exten": "ID730151", + "Language": "en", + "Linkedid": "195176c06ab8-1529936170.42", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529936170.47", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000002;2", + "ChannelState": "4", + "ChannelStateDesc": "Ring", + "ConnectedLineName": "", + "ConnectedLineNum": "202", + "Context": "osvpi_route_phoneaccount", + "Event": "NewConnectedLine", + "Exten": "ID730151", + "Language": "en", + "Linkedid": "195176c06ab8-1529936170.42", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529936170.47", + "content": "" + }, + { + "Context": "osvpi_route_phoneaccount", + "Event": "LocalBridge", + "Exten": "ID730151", + "LocalOneAccountCode": "150010001", + "LocalOneCallerIDName": "", + "LocalOneCallerIDNum": "202", + "LocalOneChannel": "Local/ID730151@osvpi_route_phoneaccount-00000002;1", + "LocalOneChannelState": "0", + "LocalOneChannelStateDesc": "Down", + "LocalOneConnectedLineName": "Andrew Garza", + "LocalOneConnectedLineNum": "201", + "LocalOneContext": "osvpi_route_phoneaccount", + "LocalOneExten": "202", + "LocalOneLanguage": "en", + "LocalOneLinkedid": "195176c06ab8-1529936170.42", + "LocalOnePriority": "1", + "LocalOneUniqueid": "195176c06ab8-1529936170.45", + "LocalOptimization": "Yes", + "LocalTwoAccountCode": "150010001", + "LocalTwoCallerIDName": "Andrew Garza", + "LocalTwoCallerIDNum": "201", + "LocalTwoChannel": "Local/ID730151@osvpi_route_phoneaccount-00000002;2", + "LocalTwoChannelState": "4", + "LocalTwoChannelStateDesc": "Ring", + "LocalTwoConnectedLineName": "", + "LocalTwoConnectedLineNum": "202", + "LocalTwoContext": "osvpi_route_phoneaccount", + "LocalTwoExten": "ID730151", + "LocalTwoLanguage": "en", + "LocalTwoLinkedid": "195176c06ab8-1529936170.42", + "LocalTwoPriority": "1", + "LocalTwoUniqueid": "195176c06ab8-1529936170.47", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "SIP/150010001-00000004", + "ChannelState": "4", + "ChannelStateDesc": "Ring", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "osvpi_account_call_int", + "DestAccountCode": "150010001", + "DestCallerIDName": "", + "DestCallerIDNum": "202", + "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-00000002;1", + "DestChannelState": "0", + "DestChannelStateDesc": "Down", + "DestConnectedLineName": "Andrew Garza", + "DestConnectedLineNum": "201", + "DestContext": "osvpi_route_phoneaccount", + "DestExten": "202", + "DestLanguage": "en", + "DestLinkedid": "195176c06ab8-1529936170.42", + "DestPriority": "1", + "DestUniqueid": "195176c06ab8-1529936170.45", + "DialString": "ID730151@osvpi_route_phoneaccount", + "Event": "DialBegin", + "Exten": "202", + "Language": "nl", + "Linkedid": "195176c06ab8-1529936170.42", + "Priority": "12", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529936170.42", + "content": "" + }, + { + "AccountCode": "150010002", + "CallerIDName": "", + "CallerIDNum": "", + "Channel": "SIP/150010002-00000005", + "ChannelState": "0", + "ChannelStateDesc": "Down", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "osvpi_account", + "Event": "Newchannel", + "Exten": "s", + "Language": "en", + "Linkedid": "195176c06ab8-1529936170.42", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529936170.50", + "content": "" + }, + { + "AccountCode": "150010001", + "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", + "CallerIDName": "", + "CallerIDNum": "202", + "Channel": "SIP/150010002-00000005", + "ChannelState": "0", + "ChannelStateDesc": "Down", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_account", + "Event": "NewCallerid", + "Exten": "202", + "Language": "nl", + "Linkedid": "195176c06ab8-1529936170.42", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529936170.50", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "", + "CallerIDNum": "202", + "Channel": "SIP/150010002-00000005", + "ChannelState": "0", + "ChannelStateDesc": "Down", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_account", + "Event": "NewAccountCode", + "Exten": "202", + "Language": "nl", + "Linkedid": "195176c06ab8-1529936170.42", + "OldAccountCode": "150010002", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529936170.50", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "", + "CallerIDNum": "202", + "Channel": "SIP/150010002-00000005", + "ChannelState": "0", + "ChannelStateDesc": "Down", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_account", + "Event": "NewConnectedLine", + "Exten": "202", + "Language": "nl", + "Linkedid": "195176c06ab8-1529936170.42", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529936170.50", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000002;2", + "ChannelState": "4", + "ChannelStateDesc": "Ring", + "ConnectedLineName": "", + "ConnectedLineNum": "202", + "Context": "osvpi_proc_proxy_out", + "DestAccountCode": "150010001", + "DestCallerIDName": "", + "DestCallerIDNum": "202", + "DestChannel": "SIP/150010002-00000005", + "DestChannelState": "0", + "DestChannelStateDesc": "Down", + "DestConnectedLineName": "Andrew Garza", + "DestConnectedLineNum": "201", + "DestContext": "osvpi_account", + "DestExten": "202", + "DestLanguage": "nl", + "DestLinkedid": "195176c06ab8-1529936170.42", + "DestPriority": "1", + "DestUniqueid": "195176c06ab8-1529936170.50", + "DialString": "150010002/150010002/172.20.0.13!!201", + "Event": "DialBegin", + "Exten": "202", + "Language": "en", + "Linkedid": "195176c06ab8-1529936170.42", + "Priority": "8", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529936170.47", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "", + "CallerIDNum": "202", + "Channel": "SIP/150010002-00000005", + "ChannelState": "5", + "ChannelStateDesc": "Ringing", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_account", + "Event": "Newstate", + "Exten": "202", + "Language": "nl", + "Linkedid": "195176c06ab8-1529936170.42", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529936170.50", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "", + "CallerIDNum": "202", + "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000002;1", + "ChannelState": "5", + "ChannelStateDesc": "Ringing", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_route_phoneaccount", + "Event": "Newstate", + "Exten": "202", + "Language": "en", + "Linkedid": "195176c06ab8-1529936170.42", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529936170.45", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "", + "CallerIDNum": "202", + "Channel": "SIP/150010002-00000005", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_account", + "Event": "Newstate", + "Exten": "202", + "Language": "nl", + "Linkedid": "195176c06ab8-1529936170.42", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529936170.50", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000002;2", + "ChannelState": "4", + "ChannelStateDesc": "Ring", + "ConnectedLineName": "", + "ConnectedLineNum": "202", + "Context": "osvpi_proc_proxy_out", + "DestAccountCode": "150010001", + "DestCallerIDName": "", + "DestCallerIDNum": "202", + "DestChannel": "SIP/150010002-00000005", + "DestChannelState": "6", + "DestChannelStateDesc": "Up", + "DestConnectedLineName": "Andrew Garza", + "DestConnectedLineNum": "201", + "DestContext": "osvpi_account", + "DestExten": "", + "DestLanguage": "nl", + "DestLinkedid": "195176c06ab8-1529936170.42", + "DestPriority": "1", + "DestUniqueid": "195176c06ab8-1529936170.50", + "DialStatus": "ANSWER", + "Event": "DialEnd", + "Exten": "202", + "Language": "en", + "Linkedid": "195176c06ab8-1529936170.42", + "Priority": "8", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529936170.47", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000002;2", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "", + "ConnectedLineNum": "202", + "Context": "osvpi_proc_proxy_out", + "Event": "Newstate", + "Exten": "202", + "Language": "en", + "Linkedid": "195176c06ab8-1529936170.42", + "Priority": "8", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529936170.47", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "", + "CallerIDNum": "202", + "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000002;1", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_route_phoneaccount", + "Event": "Newstate", + "Exten": "202", + "Language": "en", + "Linkedid": "195176c06ab8-1529936170.42", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529936170.45", + "content": "" + }, + { + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "0", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "e3ea0fbd-e609-4fef-b3aa-71acb63765b4", + "BridgeVideoSourceMode": "none", + "Event": "BridgeCreate", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "SIP/150010001-00000004", + "ChannelState": "4", + "ChannelStateDesc": "Ring", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "osvpi_account_call_int", + "DestAccountCode": "150010001", + "DestCallerIDName": "", + "DestCallerIDNum": "202", + "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-00000002;1", + "DestChannelState": "6", + "DestChannelStateDesc": "Up", + "DestConnectedLineName": "Andrew Garza", + "DestConnectedLineNum": "201", + "DestContext": "osvpi_route_phoneaccount", + "DestExten": "", + "DestLanguage": "en", + "DestLinkedid": "195176c06ab8-1529936170.42", + "DestPriority": "1", + "DestUniqueid": "195176c06ab8-1529936170.45", + "DialStatus": "ANSWER", + "Event": "DialEnd", + "Exten": "202", + "Language": "nl", + "Linkedid": "195176c06ab8-1529936170.42", + "Priority": "12", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529936170.42", + "content": "" + }, + { + "AccountCode": "150010001", + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "1", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "e3ea0fbd-e609-4fef-b3aa-71acb63765b4", + "BridgeVideoSourceMode": "none", + "CallerIDName": "", + "CallerIDNum": "202", + "Channel": "SIP/150010002-00000005", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_account", + "Event": "BridgeEnter", + "Exten": "", + "Language": "nl", + "Linkedid": "195176c06ab8-1529936170.42", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529936170.50", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "SIP/150010001-00000004", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "osvpi_account_call_int", + "Event": "Newstate", + "Exten": "202", + "Language": "nl", + "Linkedid": "195176c06ab8-1529936170.42", + "Priority": "12", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529936170.42", + "content": "" + }, + { + "AccountCode": "150010001", + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "2", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "e3ea0fbd-e609-4fef-b3aa-71acb63765b4", + "BridgeVideoSourceMode": "none", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000002;2", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "", + "ConnectedLineNum": "202", + "Context": "osvpi_proc_proxy_out", + "Event": "BridgeEnter", + "Exten": "202", + "Language": "en", + "Linkedid": "195176c06ab8-1529936170.42", + "Priority": "8", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529936170.47", + "content": "" + }, + { + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "0", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "8766289b-839b-4127-aafe-93b097ac5ffe", + "BridgeVideoSourceMode": "none", + "Event": "BridgeCreate", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "content": "" + }, + { + "AccountCode": "150010001", + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "1", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "8766289b-839b-4127-aafe-93b097ac5ffe", + "BridgeVideoSourceMode": "none", + "CallerIDName": "", + "CallerIDNum": "202", + "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000002;1", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_route_phoneaccount", + "Event": "BridgeEnter", + "Exten": "", + "Language": "en", + "Linkedid": "195176c06ab8-1529936170.42", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529936170.45", + "content": "" + }, + { + "AccountCode": "150010001", + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "2", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "8766289b-839b-4127-aafe-93b097ac5ffe", + "BridgeVideoSourceMode": "none", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "SIP/150010001-00000004", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "osvpi_account_call_int", + "Event": "BridgeEnter", + "Exten": "202", + "Language": "nl", + "Linkedid": "195176c06ab8-1529936170.42", + "Priority": "12", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529936170.42", + "content": "" + }, + { + "AccountCode": "150010001", + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "1", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "8766289b-839b-4127-aafe-93b097ac5ffe", + "BridgeVideoSourceMode": "none", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "SIP/150010001-00000004", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "osvpi_account_call_int", + "Event": "BridgeLeave", + "Exten": "202", + "Language": "nl", + "Linkedid": "195176c06ab8-1529936170.42", + "Priority": "12", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529936170.42", + "content": "" + }, + { + "AccountCode": "150010001", + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "1", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "e3ea0fbd-e609-4fef-b3aa-71acb63765b4", + "BridgeVideoSourceMode": "none", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000002;2", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "", + "ConnectedLineNum": "202", + "Context": "osvpi_proc_proxy_out", + "Event": "BridgeLeave", + "Exten": "202", + "Language": "en", + "Linkedid": "195176c06ab8-1529936170.42", + "Priority": "8", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529936170.47", + "content": "" + }, + { + "AccountCode": "150010001", + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "2", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "e3ea0fbd-e609-4fef-b3aa-71acb63765b4", + "BridgeVideoSourceMode": "none", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "SIP/150010001-00000004", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "osvpi_account_call_int", + "Event": "BridgeEnter", + "Exten": "202", + "Language": "nl", + "Linkedid": "195176c06ab8-1529936170.42", + "Priority": "12", + "Privilege": "call,all", + "SwapUniqueid": "195176c06ab8-1529936170.47", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529936170.42", + "content": "" + }, + { + "AccountCode": "150010001", + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "0", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "8766289b-839b-4127-aafe-93b097ac5ffe", + "BridgeVideoSourceMode": "none", + "CallerIDName": "", + "CallerIDNum": "202", + "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000002;1", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_route_phoneaccount", + "Event": "BridgeLeave", + "Exten": "", + "Language": "en", + "Linkedid": "195176c06ab8-1529936170.42", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529936170.45", + "content": "" + }, + { + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "0", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "8766289b-839b-4127-aafe-93b097ac5ffe", + "BridgeVideoSourceMode": "none", + "Event": "BridgeDestroy", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Cause": "16", + "Cause-txt": "Normal Clearing", + "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000002;2", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "", + "ConnectedLineNum": "202", + "Context": "handlers", + "Event": "Hangup", + "Exten": "onhangup", + "Language": "en", + "Linkedid": "195176c06ab8-1529936170.42", + "Priority": "4", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529936170.47", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "", + "CallerIDNum": "202", + "Cause": "16", + "Cause-txt": "Normal Clearing", + "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000002;1", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_route_phoneaccount", + "Event": "Hangup", + "Exten": "", + "Language": "en", + "Linkedid": "195176c06ab8-1529936170.42", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529936170.45", + "content": "" + }, + { + "AccountCode": "150010001", + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "1", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "e3ea0fbd-e609-4fef-b3aa-71acb63765b4", + "BridgeVideoSourceMode": "none", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "SIP/150010001-00000004", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "osvpi_account_call_int", + "Event": "BridgeLeave", + "Exten": "202", + "Language": "nl", + "Linkedid": "195176c06ab8-1529936170.42", + "Priority": "12", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529936170.42", + "content": "" + }, + { + "AccountCode": "150010001", + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "0", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "e3ea0fbd-e609-4fef-b3aa-71acb63765b4", + "BridgeVideoSourceMode": "none", + "CallerIDName": "", + "CallerIDNum": "202", + "Channel": "SIP/150010002-00000005", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_account", + "Event": "BridgeLeave", + "Exten": "", + "Language": "nl", + "Linkedid": "195176c06ab8-1529936170.42", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529936170.50", + "content": "" + }, + { + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "0", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "e3ea0fbd-e609-4fef-b3aa-71acb63765b4", + "BridgeVideoSourceMode": "none", + "Event": "BridgeDestroy", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Cause": "16", + "Cause-txt": "Normal Clearing", + "Channel": "SIP/150010001-00000004", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "handlers", + "Event": "Hangup", + "Exten": "onhangup", + "Language": "nl", + "Linkedid": "195176c06ab8-1529936170.42", + "Priority": "4", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529936170.42", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "", + "CallerIDNum": "202", + "Cause": "16", + "Cause-txt": "Normal Clearing", + "Channel": "SIP/150010002-00000005", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_account", + "Event": "Hangup", + "Exten": "", + "Language": "nl", + "Linkedid": "195176c06ab8-1529936170.42", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529936170.50", + "content": "" + } +] diff --git a/tests/fixtures/simple/ab_success_b_hangup.json b/tests/fixtures/simple/ab_success_b_hangup.json new file mode 100644 index 0000000..812f84e --- /dev/null +++ b/tests/fixtures/simple/ab_success_b_hangup.json @@ -0,0 +1,49 @@ +[ + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000013", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529936710.252", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936710.252", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000013", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936710.252", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936710.252", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000013", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936710.252", "Priority": "5", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936710.252", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000013", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936710.252", "Priority": "6", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936710.252", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000b;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529936710.252", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936710.254", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000b;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529936710.252", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936710.255", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000b;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529936710.252", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936710.254", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000b;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529936710.252", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936710.254", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000b;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529936710.252", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936710.254", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000b;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529936710.252", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936710.255", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000b;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529936710.252", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936710.255", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000b;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529936710.252", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936710.255", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730151", "LocalOneAccountCode": "150010001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "202", "LocalOneChannel": "Local/ID730151@osvpi_route_phoneaccount-0000000b;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Andrew Garza", "LocalOneConnectedLineNum": "201", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "202", "LocalOneLanguage": "en", "LocalOneLinkedid": "195176c06ab8-1529936710.252", "LocalOnePriority": "1", "LocalOneUniqueid": "195176c06ab8-1529936710.254", "LocalOptimization": "Yes", "LocalTwoAccountCode": "150010001", "LocalTwoCallerIDName": "Andrew Garza", "LocalTwoCallerIDNum": "201", "LocalTwoChannel": "Local/ID730151@osvpi_route_phoneaccount-0000000b;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "202", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730151", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "195176c06ab8-1529936710.252", "LocalTwoPriority": "1", "LocalTwoUniqueid": "195176c06ab8-1529936710.255", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000013", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-0000000b;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "202", "DestLanguage": "en", "DestLinkedid": "195176c06ab8-1529936710.252", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529936710.254", "DialString": "ID730151@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936710.252", "Priority": "12", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936710.252", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010002-00000014", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "195176c06ab8-1529936710.252", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936710.260", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000014", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936710.252", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936710.260", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000014", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936710.252", "OldAccountCode": "150010002", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936710.260", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000014", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936710.252", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936710.260", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000b;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "SIP/150010002-00000014", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "202", "DestLanguage": "nl", "DestLinkedid": "195176c06ab8-1529936710.252", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529936710.260", "DialString": "150010002/150010002/172.20.0.13!!201", "Event": "DialBegin", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529936710.252", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936710.255", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000014", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936710.252", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936710.260", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000b;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529936710.252", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936710.254", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000014", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936710.252", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936710.260", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000b;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "SIP/150010002-00000014", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "195176c06ab8-1529936710.252", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529936710.260", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529936710.252", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936710.255", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000b;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529936710.252", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936710.255", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000b;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529936710.252", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936710.254", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "66f4615e-1e6b-471a-b7f1-da9ede908a6a", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000013", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-0000000b;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "195176c06ab8-1529936710.252", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529936710.254", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936710.252", "Priority": "12", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936710.252", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000013", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936710.252", "Priority": "12", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936710.252", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "4187d679-56f2-4f75-be6d-28f722e0cdf9", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "66f4615e-1e6b-471a-b7f1-da9ede908a6a", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000014", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "195176c06ab8-1529936710.252", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936710.260", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "66f4615e-1e6b-471a-b7f1-da9ede908a6a", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000b;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529936710.252", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936710.255", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "4187d679-56f2-4f75-be6d-28f722e0cdf9", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000b;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "195176c06ab8-1529936710.252", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936710.254", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "4187d679-56f2-4f75-be6d-28f722e0cdf9", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000013", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936710.252", "Priority": "12", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936710.252", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "4187d679-56f2-4f75-be6d-28f722e0cdf9", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000013", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936710.252", "Priority": "12", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936710.252", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "66f4615e-1e6b-471a-b7f1-da9ede908a6a", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000b;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529936710.252", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936710.255", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "66f4615e-1e6b-471a-b7f1-da9ede908a6a", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000013", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936710.252", "Priority": "12", "Privilege": "call,all", "SwapUniqueid": "195176c06ab8-1529936710.255", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936710.252", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "4187d679-56f2-4f75-be6d-28f722e0cdf9", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000b;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "195176c06ab8-1529936710.252", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936710.254", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "4187d679-56f2-4f75-be6d-28f722e0cdf9", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000b;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "195176c06ab8-1529936710.252", "Priority": "4", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936710.255", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000b;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "195176c06ab8-1529936710.252", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936710.254", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "66f4615e-1e6b-471a-b7f1-da9ede908a6a", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000014", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "195176c06ab8-1529936710.252", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936710.260", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "66f4615e-1e6b-471a-b7f1-da9ede908a6a", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000013", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529936710.252", "Priority": "12", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936710.252", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "66f4615e-1e6b-471a-b7f1-da9ede908a6a", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010001-00000013", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "195176c06ab8-1529936710.252", "Priority": "4", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936710.252", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010002-00000014", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "195176c06ab8-1529936710.252", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936710.260", "content": ""} +] diff --git a/tests/fixtures/simple/ab_success_twoclients.json b/tests/fixtures/simple/ab_success_twoclients.json index da9eb4d..bba946f 100644 --- a/tests/fixtures/simple/ab_success_twoclients.json +++ b/tests/fixtures/simple/ab_success_twoclients.json @@ -1,38 +1,94 @@ [ - {"Event":"FullyBooted","Privilege":"system,all","content":"","Status":"Fully Booted"}, - {"Event":"Newchannel","AccountCode":"","Channel":"SIP/voipgrid-siproute-docker-00000008","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"2087873f7e47-1508940720.14","Privilege":"call,all","Exten":"+31150010001","Context":"voipgrid_in","CallerIDName":"","CallerIDNum":"+31260010001","content":""}, - {"Event":"Newstate","Channel":"SIP/voipgrid-siproute-docker-00000008","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"2087873f7e47-1508940720.14","Privilege":"call,all","ConnectedLineName":"","CallerIDNum":"+31260010001","ConnectedLineNum":"","content":"","CallerIDName":""}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"SIP/voipgrid-siproute-docker-00000008","Uniqueid":"2087873f7e47-1508940720.14","Privilege":"call,all","content":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/ID690150@osvpi_route_phoneaccount-00000003;1","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"2087873f7e47-1508940720.15","Privilege":"call,all","Exten":"ID690150","Context":"osvpi_route_phoneaccount","CallerIDName":"","CallerIDNum":"","content":""}, - {"Event":"Newchannel","AccountCode":"","Channel":"Local/ID690150@osvpi_route_phoneaccount-00000003;2","ChannelState":"4","ChannelStateDesc":"Ring","Uniqueid":"2087873f7e47-1508940720.16","Privilege":"call,all","Exten":"ID690150","Context":"osvpi_route_phoneaccount","CallerIDName":"","CallerIDNum":"","content":""}, - {"Event":"NewCallerid","Channel":"Local/ID690150@osvpi_route_phoneaccount-00000003;1","Uniqueid":"2087873f7e47-1508940720.15","Privilege":"call,all","content":"","CallerIDName":"","CallerIDNum":"+31150010001","CID-CallingPres":"0 (Presentation Allowed, Not Screened)"}, - {"Event":"LocalBridge","Channel1":"Local/ID690150@osvpi_route_phoneaccount-00000003;1","Uniqueid1":"2087873f7e47-1508940720.15","Channel2":"Local/ID690150@osvpi_route_phoneaccount-00000003;2","Uniqueid2":"2087873f7e47-1508940720.16","Privilege":"call,all","Exten":"ID690150","content":"","LocalOptimization":"Yes","Context":"osvpi_route_phoneaccount"}, - {"Event":"Dial","SubEvent":"Begin","Channel":"SIP/voipgrid-siproute-docker-00000008","UniqueID":"2087873f7e47-1508940720.14","Privilege":"call,all","CallerIDName":"","Destination":"Local/ID690150@osvpi_route_phoneaccount-00000003;1","CallerIDNum":"+31260010001","ConnectedLineNum":"","ConnectedLineName":"","DestUniqueID":"2087873f7e47-1508940720.15","Dialstring":"ID690150@osvpi_route_phoneaccount","content":""}, - {"Event":"UserEvent","UserEvent":"NotifyCallstate","AccountCode":"150010001","Uniqueid":"2087873f7e47-1508940720.16","Privilege":"user,all","WebhookUrls":"http://webhook.example.com/","Provider":"webhook","content":"","UserInternalNumbers":"601","AccountInternalNumber":"201"}, - {"Event":"Newchannel","AccountCode":"150010001","Channel":"SIP/150010001-00000009","ChannelState":"0","ChannelStateDesc":"Down","Uniqueid":"2087873f7e47-1508940720.17","Privilege":"call,all","Exten":"","Context":"osvpi_account","CallerIDName":"","CallerIDNum":"","content":""}, - {"Event":"NewCallerid","Channel":"SIP/150010001-00000009","Uniqueid":"2087873f7e47-1508940720.17","Privilege":"call,all","content":"","CallerIDName":"","CallerIDNum":"+31150010001","CID-CallingPres":"0 (Presentation Allowed, Not Screened)"}, - {"Event":"Dial","SubEvent":"Begin","Channel":"Local/ID690150@osvpi_route_phoneaccount-00000003;2","UniqueID":"2087873f7e47-1508940720.16","Privilege":"call,all","CallerIDName":"","Destination":"SIP/150010001-00000009","CallerIDNum":"+31260010001","ConnectedLineNum":"+31150010001","ConnectedLineName":"","DestUniqueID":"2087873f7e47-1508940720.17","Dialstring":"150010001/150010001/172.20.0.13!!0260010001","content":""}, - {"Event":"Newstate","Channel":"SIP/150010001-00000009","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"2087873f7e47-1508940720.17","Privilege":"call,all","ConnectedLineName":"","CallerIDNum":"+31150010001","ConnectedLineNum":"+31260010001","content":"","CallerIDName":""}, - {"Event":"Newstate","Channel":"Local/ID690150@osvpi_route_phoneaccount-00000003;1","ChannelState":"5","ChannelStateDesc":"Ringing","Uniqueid":"2087873f7e47-1508940720.15","Privilege":"call,all","ConnectedLineName":"","CallerIDNum":"+31150010001","ConnectedLineNum":"+31260010001","content":"","CallerIDName":""}, - {"Event":"Newstate","Channel":"SIP/150010001-00000009","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"2087873f7e47-1508940720.17","Privilege":"call,all","ConnectedLineName":"","CallerIDNum":"+31150010001","ConnectedLineNum":"+31260010001","content":"","CallerIDName":""}, - {"Event":"Newstate","Channel":"Local/ID690150@osvpi_route_phoneaccount-00000003;2","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"2087873f7e47-1508940720.16","Privilege":"call,all","ConnectedLineName":"","CallerIDNum":"+31260010001","ConnectedLineNum":"+31150010001","content":"","CallerIDName":""}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"SIP/150010001-00000009","Uniqueid":"2087873f7e47-1508940720.17","Privilege":"call,all","content":"","OldAccountCode":"15001"}, - {"Event":"Newstate","Channel":"Local/ID690150@osvpi_route_phoneaccount-00000003;1","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"2087873f7e47-1508940720.15","Privilege":"call,all","ConnectedLineName":"","CallerIDNum":"+31150010001","ConnectedLineNum":"+31260010001","content":"","CallerIDName":""}, - {"Event":"Bridge","Channel1":"Local/ID690150@osvpi_route_phoneaccount-00000003;2","Uniqueid1":"2087873f7e47-1508940720.16","CallerID1":"+31260010001","Channel2":"SIP/150010001-00000009","Uniqueid2":"2087873f7e47-1508940720.17","CallerID2":"+31150010001","Privilege":"call,all","Bridgestate":"Link","Bridgetype":"core","content":""}, - {"Event":"Newstate","Channel":"SIP/voipgrid-siproute-docker-00000008","ChannelState":"6","ChannelStateDesc":"Up","Uniqueid":"2087873f7e47-1508940720.14","Privilege":"call,all","ConnectedLineName":"","CallerIDNum":"+31260010001","ConnectedLineNum":"","content":"","CallerIDName":""}, - {"Event":"NewAccountCode","AccountCode":"15001","Channel":"Local/ID690150@osvpi_route_phoneaccount-00000003;1","Uniqueid":"2087873f7e47-1508940720.15","Privilege":"call,all","content":"","OldAccountCode":"15001"}, - {"Event":"Bridge","Channel1":"SIP/voipgrid-siproute-docker-00000008","Uniqueid1":"2087873f7e47-1508940720.14","CallerID1":"+31260010001","Channel2":"Local/ID690150@osvpi_route_phoneaccount-00000003;1","Uniqueid2":"2087873f7e47-1508940720.15","CallerID2":"+31150010001","Privilege":"call,all","Bridgestate":"Link","Bridgetype":"core","content":""}, - {"Event":"Masquerade","Privilege":"call,all","Original":"Local/ID690150@osvpi_route_phoneaccount-00000003;1","OriginalState":"Up","content":"","Clone":"SIP/150010001-00000009","CloneState":"Up"}, - {"Event":"Rename","Channel":"SIP/150010001-00000009","Uniqueid":"2087873f7e47-1508940720.17","Privilege":"call,all","Newname":"SIP/150010001-00000009","content":""}, - {"Event":"Rename","Channel":"Local/ID690150@osvpi_route_phoneaccount-00000003;1","Uniqueid":"2087873f7e47-1508940720.15","Privilege":"call,all","Newname":"SIP/150010001-00000009","content":""}, - {"Event":"Rename","Channel":"SIP/150010001-00000009","Uniqueid":"2087873f7e47-1508940720.17","Privilege":"call,all","Newname":"Local/ID690150@osvpi_route_phoneaccount-00000003;1","content":""}, - {"Event":"NewCallerid","Channel":"SIP/150010001-00000009","Uniqueid":"2087873f7e47-1508940720.15","Privilege":"call,all","content":"","CallerIDName":"","CallerIDNum":"+31150010001","CID-CallingPres":"0 (Presentation Allowed, Not Screened)"}, - {"Event":"Bridge","Channel1":"Local/ID690150@osvpi_route_phoneaccount-00000003;2","Uniqueid1":"2087873f7e47-1508940720.16","CallerID1":"+31260010001","Channel2":"Local/ID690150@osvpi_route_phoneaccount-00000003;1","Uniqueid2":"2087873f7e47-1508940720.17","CallerID2":"+31150010001","Privilege":"call,all","Bridgestate":"Unlink","Bridgetype":"core","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/ID690150@osvpi_route_phoneaccount-00000003;1","Uniqueid":"2087873f7e47-1508940720.17","Privilege":"call,all","Cause-txt":"Normal Clearing","ConnectedLineNum":"+31260010001","CallerIDNum":"+31150010001","Cause":"16","ConnectedLineName":"","content":"","CallerIDName":""}, - {"Event":"Dial","SubEvent":"End","Channel":"Local/ID690150@osvpi_route_phoneaccount-00000003;2","UniqueID":"2087873f7e47-1508940720.16","Privilege":"call,all","content":"","DialStatus":"ANSWER"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"Local/ID690150@osvpi_route_phoneaccount-00000003;2","Uniqueid":"2087873f7e47-1508940720.16","Privilege":"call,all","Cause-txt":"Normal Clearing","ConnectedLineNum":"+31150010001","CallerIDNum":"+31260010001","Cause":"16","ConnectedLineName":"","content":"","CallerIDName":""}, - {"Event":"Masquerade","Privilege":"call,all","Original":"Local/+31150010001@world_out-00000002;1","OriginalState":"Up","content":"","Clone":"SIP/voipgrid-siproute-docker-00000007","CloneState":"Up"}, - {"Event":"Bridge","Channel1":"SIP/voipgrid-siproute-docker-00000008","Uniqueid1":"2087873f7e47-1508940720.14","CallerID1":"+31260010001","Channel2":"SIP/150010001-00000009","Uniqueid2":"2087873f7e47-1508940720.15","CallerID2":"+31150010001","Privilege":"call,all","Bridgestate":"Unlink","Bridgetype":"core","content":""}, - {"Event":"Hangup","AccountCode":"15001","Channel":"SIP/150010001-00000009","Uniqueid":"2087873f7e47-1508940720.15","Privilege":"call,all","Cause-txt":"Normal Clearing","ConnectedLineNum":"+31260010001","CallerIDNum":"+31150010001","Cause":"16","ConnectedLineName":"","content":"","CallerIDName":""}, - {"Event":"Dial","SubEvent":"End","Channel":"SIP/voipgrid-siproute-docker-00000008","UniqueID":"2087873f7e47-1508940720.14","Privilege":"call,all","content":"","DialStatus":"ANSWER"}, - {"Event":"Hangup","AccountCode":"15001","Channel":"SIP/voipgrid-siproute-docker-00000008","Uniqueid":"2087873f7e47-1508940720.14","Privilege":"call,all","Cause-txt":"Normal Clearing","ConnectedLineNum":"","CallerIDNum":"+31260010001","Cause":"16","ConnectedLineName":"","content":"","CallerIDName":""}] + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "Docker Erin", "CallerIDNum": "260010001", "Channel": "SIP/260010001-00000015", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "0150010001", "Language": "en", "Linkedid": "195176c06ab8-1529936734.287", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.287", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "Docker Erin", "CallerIDNum": "260010001", "Channel": "SIP/260010001-00000015", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newstate", "Exten": "0150010001", "Language": "nl", "Linkedid": "195176c06ab8-1529936734.287", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.287", "content": ""}, + {"AccountCode": "260010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Amanda Haynes", "CallerIDNum": "260010001", "Channel": "SIP/260010001-00000015", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "nl", "Linkedid": "195176c06ab8-1529936734.287", "Priority": "5", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.287", "content": ""}, + {"AccountCode": "260010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Amanda Haynes", "CallerIDNum": "+31260010001", "Channel": "SIP/260010001-00000015", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "nl", "Linkedid": "195176c06ab8-1529936734.287", "Priority": "6", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.287", "content": ""}, + {"AccountCode": "260010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/260010001-00000015", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world_call", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "nl", "Linkedid": "195176c06ab8-1529936734.287", "Priority": "7", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.287", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31150010001@world_out-0000000c;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "world_out", "Event": "Newchannel", "Exten": "+31150010001", "Language": "en", "Linkedid": "195176c06ab8-1529936734.287", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.289", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31150010001@world_out-0000000c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "world_out", "Event": "Newchannel", "Exten": "+31150010001", "Language": "en", "Linkedid": "195176c06ab8-1529936734.287", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.290", "content": ""}, + {"AccountCode": "260010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-0000000c;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "en", "Linkedid": "195176c06ab8-1529936734.287", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.289", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-0000000c;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "en", "Linkedid": "195176c06ab8-1529936734.287", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.289", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-0000000c;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "en", "Linkedid": "195176c06ab8-1529936734.287", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.289", "content": ""}, + {"AccountCode": "260010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31150010001@world_out-0000000c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "en", "Linkedid": "195176c06ab8-1529936734.287", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.290", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31150010001@world_out-0000000c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "en", "Linkedid": "195176c06ab8-1529936734.287", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.290", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31150010001@world_out-0000000c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "en", "Linkedid": "195176c06ab8-1529936734.287", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.290", "content": ""}, + {"Context": "world_out", "Event": "LocalBridge", "Exten": "+31150010001", "LocalOneAccountCode": "260010001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31150010001", "LocalOneChannel": "Local/+31150010001@world_out-0000000c;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31260010001", "LocalOneContext": "world_out", "LocalOneExten": "+31150010001", "LocalOneLanguage": "en", "LocalOneLinkedid": "195176c06ab8-1529936734.287", "LocalOnePriority": "1", "LocalOneUniqueid": "195176c06ab8-1529936734.289", "LocalOptimization": "Yes", "LocalTwoAccountCode": "260010001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31260010001", "LocalTwoChannel": "Local/+31150010001@world_out-0000000c;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31150010001", "LocalTwoContext": "world_out", "LocalTwoExten": "+31150010001", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "195176c06ab8-1529936734.287", "LocalTwoPriority": "1", "LocalTwoUniqueid": "195176c06ab8-1529936734.290", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/260010001-00000015", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world_call", "DestAccountCode": "260010001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/+31150010001@world_out-0000000c;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "world_out", "DestExten": "+31150010001", "DestLanguage": "en", "DestLinkedid": "195176c06ab8-1529936734.287", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529936734.289", "DialString": "+31150010001@world_out", "Event": "DialBegin", "Exten": "+31150010001", "Language": "nl", "Linkedid": "195176c06ab8-1529936734.287", "Priority": "15", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.287", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/voipgrid-siproute-docker-00000016", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "195176c06ab8-1529936734.287", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.295", "content": ""}, + {"AccountCode": "260010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000016", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_in", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "nl", "Linkedid": "195176c06ab8-1529936734.287", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.295", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000016", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_in", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "nl", "Linkedid": "195176c06ab8-1529936734.287", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.295", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000016", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_in", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "nl", "Linkedid": "195176c06ab8-1529936734.287", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.295", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31150010001@world_out-0000000c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_out", "DestAccountCode": "260010001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "SIP/voipgrid-siproute-docker-00000016", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "voipgrid_in", "DestExten": "+31150010001", "DestLanguage": "nl", "DestLinkedid": "195176c06ab8-1529936734.287", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529936734.295", "DialString": "+31150010001@voipgrid-siproute-docker", "Event": "DialBegin", "Exten": "+31150010001", "Language": "en", "Linkedid": "195176c06ab8-1529936734.287", "Priority": "4", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.290", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000017", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newchannel", "Exten": "+31150010001", "Language": "en", "Linkedid": "195176c06ab8-1529936734.297", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.297", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000017", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "195176c06ab8-1529936734.297", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.297", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000017", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "nl", "Linkedid": "195176c06ab8-1529936734.297", "Priority": "10", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.297", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000016", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "195176c06ab8-1529936734.287", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.295", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-0000000c;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "195176c06ab8-1529936734.287", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.289", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730150", "Language": "en", "Linkedid": "195176c06ab8-1529936734.297", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936735.300", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730150", "Language": "en", "Linkedid": "195176c06ab8-1529936734.297", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936735.302", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "en", "Linkedid": "195176c06ab8-1529936734.297", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936735.300", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "en", "Linkedid": "195176c06ab8-1529936734.297", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936735.300", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "en", "Linkedid": "195176c06ab8-1529936734.297", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936735.300", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730150", "Language": "en", "Linkedid": "195176c06ab8-1529936734.297", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936735.302", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730150", "Language": "en", "Linkedid": "195176c06ab8-1529936734.297", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936735.302", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730150", "Language": "en", "Linkedid": "195176c06ab8-1529936734.297", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936735.302", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730150", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31150010001", "LocalOneChannel": "Local/ID730150@osvpi_route_phoneaccount-0000000d;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31260010001", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "+31150010001", "LocalOneLanguage": "en", "LocalOneLinkedid": "195176c06ab8-1529936734.297", "LocalOnePriority": "1", "LocalOneUniqueid": "195176c06ab8-1529936735.300", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31260010001", "LocalTwoChannel": "Local/ID730150@osvpi_route_phoneaccount-0000000d;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31150010001", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730150", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "195176c06ab8-1529936734.297", "LocalTwoPriority": "1", "LocalTwoUniqueid": "195176c06ab8-1529936735.302", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000017", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/ID730150@osvpi_route_phoneaccount-0000000d;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "+31150010001", "DestLanguage": "en", "DestLinkedid": "195176c06ab8-1529936734.297", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529936735.300", "DialString": "ID730150@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "+31150010001", "Language": "nl", "Linkedid": "195176c06ab8-1529936734.297", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.297", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010001-00000018", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "195176c06ab8-1529936734.297", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936735.305", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000018", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "nl", "Linkedid": "195176c06ab8-1529936734.297", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936735.305", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000018", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "nl", "Linkedid": "195176c06ab8-1529936734.297", "OldAccountCode": "150010001", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936735.305", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000018", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "nl", "Linkedid": "195176c06ab8-1529936734.297", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936735.305", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "SIP/150010001-00000018", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "+31150010001", "DestLanguage": "nl", "DestLinkedid": "195176c06ab8-1529936734.297", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529936735.305", "DialString": "150010001/150010001/172.20.0.13!!0260010001", "Event": "DialBegin", "Exten": "+31150010001", "Language": "en", "Linkedid": "195176c06ab8-1529936734.297", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936735.302", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000018", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "195176c06ab8-1529936734.297", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936735.305", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000d;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "195176c06ab8-1529936734.297", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936735.300", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000018", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "195176c06ab8-1529936734.297", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936735.305", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "SIP/150010001-00000018", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "195176c06ab8-1529936734.297", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529936735.305", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31150010001", "Language": "en", "Linkedid": "195176c06ab8-1529936734.297", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936735.302", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000d;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "195176c06ab8-1529936734.297", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936735.302", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "195176c06ab8-1529936734.297", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936735.300", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "1d1f27f3-b054-48b3-84c7-5d7b05bc83d7", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "1d1f27f3-b054-48b3-84c7-5d7b05bc83d7", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000018", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "195176c06ab8-1529936734.297", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936735.305", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000017", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/ID730150@osvpi_route_phoneaccount-0000000d;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "195176c06ab8-1529936734.297", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529936735.300", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31150010001", "Language": "nl", "Linkedid": "195176c06ab8-1529936734.297", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.297", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000017", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "195176c06ab8-1529936734.297", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.297", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "1d1f27f3-b054-48b3-84c7-5d7b05bc83d7", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000d;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "en", "Linkedid": "195176c06ab8-1529936734.297", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936735.302", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "17ebeb29-d271-422b-b284-04db06bd7191", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "17ebeb29-d271-422b-b284-04db06bd7191", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "195176c06ab8-1529936734.297", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936735.300", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000016", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "195176c06ab8-1529936734.287", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.295", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "17ebeb29-d271-422b-b284-04db06bd7191", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000017", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "nl", "Linkedid": "195176c06ab8-1529936734.297", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.297", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31150010001@world_out-0000000c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_out", "DestAccountCode": "260010001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "SIP/voipgrid-siproute-docker-00000016", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "voipgrid_in", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "195176c06ab8-1529936734.287", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529936734.295", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31150010001", "Language": "en", "Linkedid": "195176c06ab8-1529936734.287", "Priority": "4", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.290", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31150010001@world_out-0000000c;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_out", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "195176c06ab8-1529936734.287", "Priority": "4", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.290", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "fad3c1c3-20ff-4db8-a27e-43b08809b1eb", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-0000000c;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "195176c06ab8-1529936734.287", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.289", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/260010001-00000015", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world_call", "DestAccountCode": "260010001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/+31150010001@world_out-0000000c;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "world_out", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "195176c06ab8-1529936734.287", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529936734.289", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31150010001", "Language": "nl", "Linkedid": "195176c06ab8-1529936734.287", "Priority": "15", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.287", "content": ""}, + {"AccountCode": "260010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "fad3c1c3-20ff-4db8-a27e-43b08809b1eb", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000016", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_in", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "195176c06ab8-1529936734.287", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.295", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/260010001-00000015", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world_call", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "195176c06ab8-1529936734.287", "Priority": "15", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.287", "content": ""}, + {"AccountCode": "260010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "fad3c1c3-20ff-4db8-a27e-43b08809b1eb", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31150010001@world_out-0000000c;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_out", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "en", "Linkedid": "195176c06ab8-1529936734.287", "Priority": "4", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.290", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "bb8b8449-4cad-4e69-980c-d28b08b90fa7", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "260010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "bb8b8449-4cad-4e69-980c-d28b08b90fa7", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-0000000c;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "195176c06ab8-1529936734.287", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.289", "content": ""}, + {"AccountCode": "260010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "bb8b8449-4cad-4e69-980c-d28b08b90fa7", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/260010001-00000015", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world_call", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "nl", "Linkedid": "195176c06ab8-1529936734.287", "Priority": "15", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.287", "content": ""}, + {"AccountCode": "260010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "bb8b8449-4cad-4e69-980c-d28b08b90fa7", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/260010001-00000015", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world_call", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "nl", "Linkedid": "195176c06ab8-1529936734.287", "Priority": "15", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.287", "content": ""}, + {"AccountCode": "260010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "fad3c1c3-20ff-4db8-a27e-43b08809b1eb", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31150010001@world_out-0000000c;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_out", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "en", "Linkedid": "195176c06ab8-1529936734.287", "Priority": "4", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.290", "content": ""}, + {"AccountCode": "260010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "fad3c1c3-20ff-4db8-a27e-43b08809b1eb", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/260010001-00000015", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world_call", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "nl", "Linkedid": "195176c06ab8-1529936734.287", "Priority": "15", "Privilege": "call,all", "SwapUniqueid": "195176c06ab8-1529936734.290", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.287", "content": ""}, + {"AccountCode": "260010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "bb8b8449-4cad-4e69-980c-d28b08b90fa7", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-0000000c;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "195176c06ab8-1529936734.287", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.289", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "bb8b8449-4cad-4e69-980c-d28b08b90fa7", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/+31150010001@world_out-0000000c;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "195176c06ab8-1529936734.287", "Priority": "4", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.290", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "17ebeb29-d271-422b-b284-04db06bd7191", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000017", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "nl", "Linkedid": "195176c06ab8-1529936734.297", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.297", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "1d1f27f3-b054-48b3-84c7-5d7b05bc83d7", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000d;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "en", "Linkedid": "195176c06ab8-1529936734.297", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936735.302", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "1d1f27f3-b054-48b3-84c7-5d7b05bc83d7", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000017", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "nl", "Linkedid": "195176c06ab8-1529936734.297", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "195176c06ab8-1529936735.302", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.297", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "17ebeb29-d271-422b-b284-04db06bd7191", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "195176c06ab8-1529936734.297", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936735.300", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "17ebeb29-d271-422b-b284-04db06bd7191", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000d;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "195176c06ab8-1529936734.297", "Priority": "4", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936735.302", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "195176c06ab8-1529936734.297", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936735.300", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/+31150010001@world_out-0000000c;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "195176c06ab8-1529936734.287", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.289", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "1d1f27f3-b054-48b3-84c7-5d7b05bc83d7", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000018", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "195176c06ab8-1529936734.297", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936735.305", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "1d1f27f3-b054-48b3-84c7-5d7b05bc83d7", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000017", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "nl", "Linkedid": "195176c06ab8-1529936734.297", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.297", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "1d1f27f3-b054-48b3-84c7-5d7b05bc83d7", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/voipgrid-siproute-docker-00000017", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "195176c06ab8-1529936734.297", "Priority": "4", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.297", "content": ""}, + {"AccountCode": "260010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "fad3c1c3-20ff-4db8-a27e-43b08809b1eb", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000016", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_in", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "195176c06ab8-1529936734.287", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.295", "content": ""}, + {"AccountCode": "260010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "fad3c1c3-20ff-4db8-a27e-43b08809b1eb", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/260010001-00000015", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world_call", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "nl", "Linkedid": "195176c06ab8-1529936734.287", "Priority": "15", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.287", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/voipgrid-siproute-docker-00000016", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_in", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "195176c06ab8-1529936734.287", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.295", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "fad3c1c3-20ff-4db8-a27e-43b08809b1eb", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/260010001-00000015", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "195176c06ab8-1529936734.287", "Priority": "4", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936734.287", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010001-00000018", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "195176c06ab8-1529936734.297", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529936735.305", "content": ""} +] \ No newline at end of file diff --git a/tests/fixtures/var_set/user_events.json b/tests/fixtures/var_set/user_events.json index ed88d42..4820a94 100644 --- a/tests/fixtures/var_set/user_events.json +++ b/tests/fixtures/var_set/user_events.json @@ -1,456 +1,98 @@ [ - {"Privilege": "system,all", "Status": "Fully Booted", "content": "", "Event": "FullyBooted"}, - {"Privilege": "system,all", "Status": "Fully Booted", "content": "", "Event": "FullyBooted"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Exten": "203", "ChannelState": "0", "AccountCode": "150010002", "CallerIDNum": "150010002", "CallerIDName": "Docker", "Privilege": "call,all", "ChannelStateDesc": "Down", "Uniqueid": "63f2f9ce924a-1501243765.21", "Context": "osvpi_account", "Event": "Newchannel"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "SIPURI", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "sip:150010002@10.13.36.116:5060", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "SIPDOMAIN", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "10.13.37.110", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "SIPCALLID", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "ceaa8201-3173536f@10.13.36.116", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "__client_id", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "15001", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "__account_id", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "150010002", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "__record_call", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "no", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "__intprefix", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "31", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "__limit_account", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "4", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "__limit_client", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "__hide_ext_cliname", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "1", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "__TRANSFER_CONTEXT", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "osvpi_account_transfer", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "CallerIDName": "Docker", "content": "", "ConnectedLineNum": "", "ConnectedLineName": "", "CallerIDNum": "150010002", "Privilege": "call,all", "ChannelStateDesc": "Ring", "ChannelState": "4", "Uniqueid": "63f2f9ce924a-1501243765.21", "Event": "Newstate"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "LOCAL(tmp)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "70", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "SIP_MAX_FORWARDS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "16", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "is_transfer", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "user_privacy", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "__supports_progress", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "1", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "out", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "15001", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "LOCAL(ARG3)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "150010002", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "3", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "l_tmp", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "l_tmp", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "i18n_region", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "NL", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "return", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "osvpi_account_clean", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "INVALID_EXTEN", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "31i203", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "150010002", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "LOCAL(ARG3)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "3", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "1", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "SUCCESS", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "set,privacy,name,number_int,number_ext", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "LOCAL(set)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "1", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "LOCAL(privacy)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "LOCAL(name)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "Robert Murray", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "LOCAL(number_int)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "202", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "LOCAL(number_ext)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "+31150010001", "Event": "VarSet"}, - {"CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "Channel": "SIP/150010002-0000000b", "content": "", "CallerIDName": "Robert Murray", "CallerIDNum": "150010002", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Event": "NewCallerid"}, - {"CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "Channel": "SIP/150010002-0000000b", "content": "", "CallerIDName": "Robert Murray", "CallerIDNum": "202", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Event": "NewCallerid"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "LOCAL(ARG3)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "15001", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "1", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "LOCAL(exten)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "15001:203", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "LOCAL(n)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "LOCAL(i)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "1", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "__EXTEN_LIST", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "15001:203 ", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "__EXTEN_LIST_LAST_EDIT_TIME", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "1501243765", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "__ORIG_EXTEN", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "203", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "NODATA", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "conference_id", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "user_password", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "admin_password", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "conference_language", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "NODATA", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "route_id", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "client_timezone", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "NODATA", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "all_extensions", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "limited_extensions", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "password", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "account_spy_language", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "1", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "SUCCESS", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "interfaces", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "interfaces", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "Local/ID710152@osvpi_route_phoneaccount", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;1", "content": "", "Exten": "ID710152", "ChannelState": "0", "AccountCode": "", "CallerIDNum": "", "CallerIDName": "", "Privilege": "call,all", "ChannelStateDesc": "Down", "Uniqueid": "63f2f9ce924a-1501243765.22", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Exten": "ID710152", "ChannelState": "4", "AccountCode": "", "CallerIDNum": "", "CallerIDName": "", "Privilege": "call,all", "ChannelStateDesc": "Ring", "Uniqueid": "63f2f9ce924a-1501243765.23", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;1", "content": "", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.22", "Value": "ID710152@osvpi_route_phoneaccount", "Event": "VarSet"}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;1", "content": "", "CallerIDName": "", "CallerIDNum": "203", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1501243765.22", "Event": "NewCallerid"}, - {"Channel2": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "Channel1": "Local/ID710152@osvpi_route_phoneaccount-00000005;1", "content": "", "Exten": "ID710152", "Uniqueid1": "63f2f9ce924a-1501243765.22", "Privilege": "call,all", "Uniqueid2": "63f2f9ce924a-1501243765.23", "LocalOptimization": "Yes", "Context": "osvpi_route_phoneaccount", "Event": "LocalBridge"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "UniqueID": "63f2f9ce924a-1501243765.21", "CallerIDNum": "202", "Destination": "Local/ID710152@osvpi_route_phoneaccount-00000005;1", "DestUniqueID": "63f2f9ce924a-1501243765.22", "ConnectedLineNum": "", "CallerIDName": "Robert Murray", "Privilege": "call,all", "Dialstring": "ID710152@osvpi_route_phoneaccount", "ConnectedLineName": "", "SubEvent": "Begin", "Event": "Dial"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "1", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "SUCCESS", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "__dst_account_id", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "150010003", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "l_mangle_did", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "accountid", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "l_mangle_cli", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "dutch", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "l_cli_header", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "from", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "l_primary_pickupgroup", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "app_account", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "0", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "_PICKUPMARK", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "l_trunk", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "0", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "1", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "SUCCESS", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "proxy", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "l_proxy", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "172.20.0.13", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "150010003", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "203", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "2", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "MANGLED_EXTEN", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "150010003", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "l_did", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "150010003", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "150010003", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "202", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "2", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "MANGLED_EXTEN", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "202", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "l_mangle_cli_hdr", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "from-dutch", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "l_fromuser", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "l_fromuser", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "202", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "1", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "SUCCESS", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "IF((SELECT 1 FROM baseaccount_account ba INNER JOIN userdestination_selecteduserdestination udsud ON udsud.phoneaccount_id = ba.id INNER JOIN userdestination_userdestination udud ON udud.id = udsud.userdestination_id INNER JOIN crm_cloudctiuser cccu O", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "cloudcti", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "1", "Event": "VarSet"}, - {"content": "", "AccountCode": "150010003", "Privilege": "user,all", "UserEvent": "NotifyCallstate", "Provider": "cloudcti", "Uniqueid": "63f2f9ce924a-1501243765.23", "Event": "UserEvent"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "__SIPADDHEADER01", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "X-Accountcode: 150010003", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "__SIPADDHEADER02", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "X-Insecure-Protection: geheim", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "__SIPADDHEADER03", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "X-Mangle-Cli: from-dutch", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "_dial_options_callaccept", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "_dial_options_callnotify", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "l_extra_options", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "Exten": "", "ChannelState": "0", "AccountCode": "150010003", "CallerIDNum": "", "CallerIDName": "", "Privilege": "call,all", "ChannelStateDesc": "Down", "Uniqueid": "63f2f9ce924a-1501243765.24", "Context": "osvpi_account", "Event": "Newchannel"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "Variable": "SIPCALLID", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.24", "Value": "6d43213e29d8a7fc72a57f4e7582d82a@test.voipgrid.nl", "Event": "VarSet"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "Variable": "__client_id", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.24", "Value": "15001", "Event": "VarSet"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "Variable": "__account_id", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.24", "Value": "150010003", "Event": "VarSet"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "Variable": "__record_call", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.24", "Value": "no", "Event": "VarSet"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "Variable": "__intprefix", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.24", "Value": "31", "Event": "VarSet"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "Variable": "__limit_account", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.24", "Value": "4", "Event": "VarSet"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "Variable": "__limit_client", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.24", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "Variable": "__hide_ext_cliname", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.24", "Value": "1", "Event": "VarSet"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "Variable": "__TRANSFER_CONTEXT", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.24", "Value": "osvpi_account_transfer", "Event": "VarSet"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.24", "Value": "150010003/150010003/172.20.0.13!!202", "Event": "VarSet"}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Channel": "SIP/150010003-0000000c", "content": "", "CallerIDName": "", "CallerIDNum": "203", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1501243765.24", "Event": "NewCallerid"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "UniqueID": "63f2f9ce924a-1501243765.23", "CallerIDNum": "202", "Destination": "SIP/150010003-0000000c", "DestUniqueID": "63f2f9ce924a-1501243765.24", "ConnectedLineNum": "203", "CallerIDName": "Robert Murray", "Privilege": "call,all", "Dialstring": "150010003/150010003/172.20.0.13!!202", "ConnectedLineName": "", "SubEvent": "Begin", "Event": "Dial"}, - {"Channel": "SIP/150010003-0000000c", "CallerIDName": "", "content": "", "ConnectedLineNum": "202", "ConnectedLineName": "Robert Murray", "CallerIDNum": "203", "Privilege": "call,all", "ChannelStateDesc": "Ringing", "ChannelState": "5", "Uniqueid": "63f2f9ce924a-1501243765.24", "Event": "Newstate"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;1", "CallerIDName": "", "content": "", "ConnectedLineNum": "202", "ConnectedLineName": "Robert Murray", "CallerIDNum": "203", "Privilege": "call,all", "ChannelStateDesc": "Ringing", "ChannelState": "5", "Uniqueid": "63f2f9ce924a-1501243765.22", "Event": "Newstate"}, - {"Channel": "SIP/150010003-0000000c", "CallerIDName": "", "content": "", "ConnectedLineNum": "202", "ConnectedLineName": "Robert Murray", "CallerIDNum": "203", "Privilege": "call,all", "ChannelStateDesc": "Up", "ChannelState": "6", "Uniqueid": "63f2f9ce924a-1501243765.24", "Event": "Newstate"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "ANSWER", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "SIP/150010003-0000000c", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "150010003/150010003/172.20.0.13!!202", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "SIP/150010003-0000000c", "Event": "VarSet"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.24", "Value": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "CallerIDName": "Robert Murray", "content": "", "ConnectedLineNum": "203", "ConnectedLineName": "", "CallerIDNum": "202", "Privilege": "call,all", "ChannelStateDesc": "Up", "ChannelState": "6", "Uniqueid": "63f2f9ce924a-1501243765.23", "Event": "Newstate"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;1", "CallerIDName": "", "content": "", "ConnectedLineNum": "202", "ConnectedLineName": "Robert Murray", "CallerIDNum": "203", "Privilege": "call,all", "ChannelStateDesc": "Up", "ChannelState": "6", "Uniqueid": "63f2f9ce924a-1501243765.22", "Event": "Newstate"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "AccountCode": "150010002", "Privilege": "call,all", "Event": "NewAccountCode", "Uniqueid": "63f2f9ce924a-1501243765.24", "OldAccountCode": "150010002"}, - {"Channel2": "SIP/150010003-0000000c", "Uniqueid1": "63f2f9ce924a-1501243765.23", "Channel1": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "CallerID2": "203", "Bridgestate": "Link", "Bridgetype": "core", "Privilege": "call,all", "CallerID1": "202", "Uniqueid2": "63f2f9ce924a-1501243765.24", "Event": "Bridge"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "SIP/150010003-0000000c", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "6d43213e29d8a7fc72a57f4e7582d82a@test.voipgrid.nl", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "ANSWER", "Event": "VarSet"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.24", "Value": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "Local/ID710152@osvpi_route_phoneaccount-00000005;1", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "SIP/150010003-0000000c", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "ID710152@osvpi_route_phoneaccount", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "6d43213e29d8a7fc72a57f4e7582d82a@test.voipgrid.nl", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "Local/ID710152@osvpi_route_phoneaccount-00000005;1", "Event": "VarSet"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.24", "Value": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;1", "content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.22", "Value": "SIP/150010002-0000000b", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "CallerIDName": "Robert Murray", "content": "", "ConnectedLineNum": "", "ConnectedLineName": "", "CallerIDNum": "202", "Privilege": "call,all", "ChannelStateDesc": "Up", "ChannelState": "6", "Uniqueid": "63f2f9ce924a-1501243765.21", "Event": "Newstate"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;1", "content": "", "AccountCode": "150010002", "Privilege": "call,all", "Event": "NewAccountCode", "Uniqueid": "63f2f9ce924a-1501243765.22", "OldAccountCode": "150010002"}, - {"Channel2": "Local/ID710152@osvpi_route_phoneaccount-00000005;1", "Uniqueid1": "63f2f9ce924a-1501243765.21", "Channel1": "SIP/150010002-0000000b", "content": "", "CallerID2": "203", "Bridgestate": "Link", "Bridgetype": "core", "Privilege": "call,all", "CallerID1": "202", "Uniqueid2": "63f2f9ce924a-1501243765.22", "Event": "Bridge"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "Local/ID710152@osvpi_route_phoneaccount-00000005;1", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;1", "content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.22", "Value": "SIP/150010002-0000000b", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;1", "content": "", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.22", "Value": "ceaa8201-3173536f@10.13.36.116", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "Local/ID710152@osvpi_route_phoneaccount-00000005;1", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;1", "content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.22", "Value": "SIP/150010002-0000000b", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;1", "content": "", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.22", "Value": "ceaa8201-3173536f@10.13.36.116", "Event": "VarSet"}, - {"Clone": "SIP/150010003-0000000c", "content": "", "CloneState": "Up", "Original": "Local/ID710152@osvpi_route_phoneaccount-00000005;1", "Privilege": "call,all", "OriginalState": "Up", "Event": "Masquerade"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "Newname": "SIP/150010003-0000000c", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1501243765.24", "Event": "Rename"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;1", "content": "", "Newname": "SIP/150010003-0000000c", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1501243765.22", "Event": "Rename"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "Newname": "Local/ID710152@osvpi_route_phoneaccount-00000005;1", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1501243765.24", "Event": "Rename"}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Channel": "SIP/150010003-0000000c", "content": "", "CallerIDName": "", "CallerIDNum": "203", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1501243765.22", "Event": "NewCallerid"}, - {"Channel2": "Local/ID710152@osvpi_route_phoneaccount-00000005;1", "Uniqueid1": "63f2f9ce924a-1501243765.23", "Channel1": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "CallerID2": "203", "Bridgestate": "Unlink", "Bridgetype": "core", "Privilege": "call,all", "CallerID1": "202", "Uniqueid2": "63f2f9ce924a-1501243765.24", "Event": "Bridge"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "SIP/150010003-0000000c", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "6d43213e29d8a7fc72a57f4e7582d82a@test.voipgrid.nl", "Event": "VarSet"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.22", "Value": "SIP/150010002-0000000b", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.22", "Value": "ceaa8201-3173536f@10.13.36.116", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "4", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;1", "content": "", "ConnectedLineNum": "202", "AccountCode": "150010002", "CallerIDNum": "203", "Cause": "16", "CallerIDName": "", "Privilege": "call,all", "ConnectedLineName": "Robert Murray", "Cause-txt": "Normal Clearing", "Uniqueid": "63f2f9ce924a-1501243765.24", "Event": "Hangup"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.23", "Value": "ANSWER", "Event": "VarSet"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "UniqueID": "63f2f9ce924a-1501243765.23", "DialStatus": "ANSWER", "Privilege": "call,all", "SubEvent": "End", "Event": "Dial"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "ConnectedLineNum": "203", "AccountCode": "150010002", "CallerIDNum": "202", "Cause": "16", "CallerIDName": "Robert Murray", "Privilege": "call,all", "ConnectedLineName": "", "Cause-txt": "Normal Clearing", "Uniqueid": "63f2f9ce924a-1501243765.23", "Event": "Hangup"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Exten": "201", "ChannelState": "0", "AccountCode": "150010002", "CallerIDNum": "150010002", "CallerIDName": "Docker", "Privilege": "call,all", "ChannelStateDesc": "Down", "Uniqueid": "63f2f9ce924a-1501243782.25", "Context": "osvpi_account", "Event": "Newchannel"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "SIPURI", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "sip:150010002@10.13.36.116:5060", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "SIPDOMAIN", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "10.13.37.110", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "SIPCALLID", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "bc9f035d-c54b686e@10.13.36.116", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "__client_id", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "15001", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "__account_id", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "150010002", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "__record_call", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "no", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "__intprefix", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "31", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "__limit_account", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "4", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "__limit_client", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "__hide_ext_cliname", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "1", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "__TRANSFER_CONTEXT", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "osvpi_account_transfer", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "CallerIDName": "Docker", "content": "", "ConnectedLineNum": "", "ConnectedLineName": "", "CallerIDNum": "150010002", "Privilege": "call,all", "ChannelStateDesc": "Ring", "ChannelState": "4", "Uniqueid": "63f2f9ce924a-1501243782.25", "Event": "Newstate"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "LOCAL(tmp)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "70", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "SIP_MAX_FORWARDS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "16", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "is_transfer", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "user_privacy", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "__supports_progress", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "1", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "out", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "15001", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "LOCAL(ARG3)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "150010002", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "3", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "l_tmp", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "l_tmp", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "i18n_region", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "NL", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "return", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "osvpi_account_clean", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "INVALID_EXTEN", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "31i201", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "150010002", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "LOCAL(ARG3)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "3", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "1", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "SUCCESS", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "set,privacy,name,number_int,number_ext", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "LOCAL(set)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "1", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "LOCAL(privacy)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "LOCAL(name)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "Robert Murray", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "LOCAL(number_int)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "202", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "LOCAL(number_ext)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "+31150010001", "Event": "VarSet"}, - {"CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "Channel": "SIP/150010002-0000000d", "content": "", "CallerIDName": "Robert Murray", "CallerIDNum": "150010002", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Event": "NewCallerid"}, - {"CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "Channel": "SIP/150010002-0000000d", "content": "", "CallerIDName": "Robert Murray", "CallerIDNum": "202", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Event": "NewCallerid"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "LOCAL(ARG3)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "15001", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "1", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "LOCAL(exten)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "15001:201", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "LOCAL(n)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "LOCAL(i)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "1", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "__EXTEN_LIST", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "15001:201 ", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "__EXTEN_LIST_LAST_EDIT_TIME", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "1501243782", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "__ORIG_EXTEN", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "201", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "NODATA", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "conference_id", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "user_password", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "admin_password", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "conference_language", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "NODATA", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "route_id", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "client_timezone", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "NODATA", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "all_extensions", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "limited_extensions", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "password", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "account_spy_language", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "1", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "SUCCESS", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "interfaces", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "interfaces", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "Local/ID710150@osvpi_route_phoneaccount", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;1", "content": "", "Exten": "ID710150", "ChannelState": "0", "AccountCode": "", "CallerIDNum": "", "CallerIDName": "", "Privilege": "call,all", "ChannelStateDesc": "Down", "Uniqueid": "63f2f9ce924a-1501243782.26", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Exten": "ID710150", "ChannelState": "4", "AccountCode": "", "CallerIDNum": "", "CallerIDName": "", "Privilege": "call,all", "ChannelStateDesc": "Ring", "Uniqueid": "63f2f9ce924a-1501243782.27", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;1", "content": "", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.26", "Value": "ID710150@osvpi_route_phoneaccount", "Event": "VarSet"}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;1", "content": "", "CallerIDName": "", "CallerIDNum": "201", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1501243782.26", "Event": "NewCallerid"}, - {"Channel2": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "Channel1": "Local/ID710150@osvpi_route_phoneaccount-00000006;1", "content": "", "Exten": "ID710150", "Uniqueid1": "63f2f9ce924a-1501243782.26", "Privilege": "call,all", "Uniqueid2": "63f2f9ce924a-1501243782.27", "LocalOptimization": "Yes", "Context": "osvpi_route_phoneaccount", "Event": "LocalBridge"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "UniqueID": "63f2f9ce924a-1501243782.25", "CallerIDNum": "202", "Destination": "Local/ID710150@osvpi_route_phoneaccount-00000006;1", "DestUniqueID": "63f2f9ce924a-1501243782.26", "ConnectedLineNum": "", "CallerIDName": "Robert Murray", "Privilege": "call,all", "Dialstring": "ID710150@osvpi_route_phoneaccount", "ConnectedLineName": "", "SubEvent": "Begin", "Event": "Dial"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "1", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "SUCCESS", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "__dst_account_id", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "150010001", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "l_mangle_did", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "accountid", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "l_mangle_cli", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "dutch", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "l_cli_header", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "from", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "l_primary_pickupgroup", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "app_account", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "0", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "_PICKUPMARK", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "l_trunk", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "0", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "1", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "SUCCESS", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "proxy", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "l_proxy", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "172.20.0.13", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "150010001", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "201", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "2", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "MANGLED_EXTEN", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "150010001", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "l_did", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "150010001", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "150010001", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "202", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "2", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "MANGLED_EXTEN", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "202", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "l_mangle_cli_hdr", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "from-dutch", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "l_fromuser", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "l_fromuser", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "202", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "1", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "SUCCESS", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "IF((SELECT 1 FROM baseaccount_account ba INNER JOIN userdestination_selecteduserdestination udsud ON udsud.phoneaccount_id = ba.id INNER JOIN userdestination_userdestination udud ON udud.id = udsud.userdestination_id INNER JOIN crm_cloudctiuser cccu O", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "cloudcti", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "1", "Event": "VarSet"}, - {"content": "", "AccountCode": "150010001", "Privilege": "user,all", "UserEvent": "NotifyCallstate", "Provider": "cloudcti", "Uniqueid": "63f2f9ce924a-1501243782.27", "Event": "UserEvent"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "__SIPADDHEADER01", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "X-Accountcode: 150010001", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "__SIPADDHEADER02", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "X-Insecure-Protection: geheim", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "__SIPADDHEADER03", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "X-Mangle-Cli: from-dutch", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "_dial_options_callaccept", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "_dial_options_callnotify", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "l_extra_options", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010001-0000000e", "content": "", "Exten": "", "ChannelState": "0", "AccountCode": "150010001", "CallerIDNum": "", "CallerIDName": "", "Privilege": "call,all", "ChannelStateDesc": "Down", "Uniqueid": "63f2f9ce924a-1501243782.28", "Context": "osvpi_account", "Event": "Newchannel"}, - {"Channel": "SIP/150010001-0000000e", "content": "", "Variable": "SIPCALLID", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.28", "Value": "412af3ae4e8e05797d8dde8f1e69b568@test.voipgrid.nl", "Event": "VarSet"}, - {"Channel": "SIP/150010001-0000000e", "content": "", "Variable": "__client_id", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.28", "Value": "15001", "Event": "VarSet"}, - {"Channel": "SIP/150010001-0000000e", "content": "", "Variable": "__account_id", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.28", "Value": "150010001", "Event": "VarSet"}, - {"Channel": "SIP/150010001-0000000e", "content": "", "Variable": "__record_call", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.28", "Value": "no", "Event": "VarSet"}, - {"Channel": "SIP/150010001-0000000e", "content": "", "Variable": "__intprefix", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.28", "Value": "31", "Event": "VarSet"}, - {"Channel": "SIP/150010001-0000000e", "content": "", "Variable": "__limit_account", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.28", "Value": "4", "Event": "VarSet"}, - {"Channel": "SIP/150010001-0000000e", "content": "", "Variable": "__limit_client", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.28", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010001-0000000e", "content": "", "Variable": "__hide_ext_cliname", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.28", "Value": "1", "Event": "VarSet"}, - {"Channel": "SIP/150010001-0000000e", "content": "", "Variable": "__TRANSFER_CONTEXT", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.28", "Value": "osvpi_account_transfer", "Event": "VarSet"}, - {"Channel": "SIP/150010001-0000000e", "content": "", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.28", "Value": "150010001/150010001/172.20.0.13!!202", "Event": "VarSet"}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Channel": "SIP/150010001-0000000e", "content": "", "CallerIDName": "", "CallerIDNum": "201", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1501243782.28", "Event": "NewCallerid"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "UniqueID": "63f2f9ce924a-1501243782.27", "CallerIDNum": "202", "Destination": "SIP/150010001-0000000e", "DestUniqueID": "63f2f9ce924a-1501243782.28", "ConnectedLineNum": "201", "CallerIDName": "Robert Murray", "Privilege": "call,all", "Dialstring": "150010001/150010001/172.20.0.13!!202", "ConnectedLineName": "", "SubEvent": "Begin", "Event": "Dial"}, - {"Channel": "SIP/150010001-0000000e", "CallerIDName": "", "content": "", "ConnectedLineNum": "202", "ConnectedLineName": "Robert Murray", "CallerIDNum": "201", "Privilege": "call,all", "ChannelStateDesc": "Ringing", "ChannelState": "5", "Uniqueid": "63f2f9ce924a-1501243782.28", "Event": "Newstate"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;1", "CallerIDName": "", "content": "", "ConnectedLineNum": "202", "ConnectedLineName": "Robert Murray", "CallerIDNum": "201", "Privilege": "call,all", "ChannelStateDesc": "Ringing", "ChannelState": "5", "Uniqueid": "63f2f9ce924a-1501243782.26", "Event": "Newstate"}, - {"Channel": "SIP/150010001-0000000e", "CallerIDName": "", "content": "", "ConnectedLineNum": "202", "ConnectedLineName": "Robert Murray", "CallerIDNum": "201", "Privilege": "call,all", "ChannelStateDesc": "Up", "ChannelState": "6", "Uniqueid": "63f2f9ce924a-1501243782.28", "Event": "Newstate"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "ANSWER", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "SIP/150010001-0000000e", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "150010001/150010001/172.20.0.13!!202", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "SIP/150010001-0000000e", "Event": "VarSet"}, - {"Channel": "SIP/150010001-0000000e", "content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.28", "Value": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "CallerIDName": "Robert Murray", "content": "", "ConnectedLineNum": "201", "ConnectedLineName": "", "CallerIDNum": "202", "Privilege": "call,all", "ChannelStateDesc": "Up", "ChannelState": "6", "Uniqueid": "63f2f9ce924a-1501243782.27", "Event": "Newstate"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;1", "CallerIDName": "", "content": "", "ConnectedLineNum": "202", "ConnectedLineName": "Robert Murray", "CallerIDNum": "201", "Privilege": "call,all", "ChannelStateDesc": "Up", "ChannelState": "6", "Uniqueid": "63f2f9ce924a-1501243782.26", "Event": "Newstate"}, - {"Channel": "SIP/150010001-0000000e", "content": "", "AccountCode": "150010002", "Privilege": "call,all", "Event": "NewAccountCode", "Uniqueid": "63f2f9ce924a-1501243782.28", "OldAccountCode": "150010002"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "ANSWER", "Event": "VarSet"}, - {"Channel2": "SIP/150010001-0000000e", "Uniqueid1": "63f2f9ce924a-1501243782.27", "Channel1": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "CallerID2": "201", "Bridgestate": "Link", "Bridgetype": "core", "Privilege": "call,all", "CallerID1": "202", "Uniqueid2": "63f2f9ce924a-1501243782.28", "Event": "Bridge"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "Local/ID710150@osvpi_route_phoneaccount-00000006;1", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "ID710150@osvpi_route_phoneaccount", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "SIP/150010001-0000000e", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "412af3ae4e8e05797d8dde8f1e69b568@test.voipgrid.nl", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "Local/ID710150@osvpi_route_phoneaccount-00000006;1", "Event": "VarSet"}, - {"Channel": "SIP/150010001-0000000e", "content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.28", "Value": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;1", "content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.26", "Value": "SIP/150010002-0000000d", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "CallerIDName": "Robert Murray", "content": "", "ConnectedLineNum": "", "ConnectedLineName": "", "CallerIDNum": "202", "Privilege": "call,all", "ChannelStateDesc": "Up", "ChannelState": "6", "Uniqueid": "63f2f9ce924a-1501243782.25", "Event": "Newstate"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "SIP/150010001-0000000e", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "412af3ae4e8e05797d8dde8f1e69b568@test.voipgrid.nl", "Event": "VarSet"}, - {"Channel": "SIP/150010001-0000000e", "content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.28", "Value": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;1", "content": "", "AccountCode": "150010002", "Privilege": "call,all", "Event": "NewAccountCode", "Uniqueid": "63f2f9ce924a-1501243782.26", "OldAccountCode": "150010002"}, - {"Channel2": "Local/ID710150@osvpi_route_phoneaccount-00000006;1", "Uniqueid1": "63f2f9ce924a-1501243782.25", "Channel1": "SIP/150010002-0000000d", "content": "", "CallerID2": "201", "Bridgestate": "Link", "Bridgetype": "core", "Privilege": "call,all", "CallerID1": "202", "Uniqueid2": "63f2f9ce924a-1501243782.26", "Event": "Bridge"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "Local/ID710150@osvpi_route_phoneaccount-00000006;1", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;1", "content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.26", "Value": "SIP/150010002-0000000d", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;1", "content": "", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.26", "Value": "bc9f035d-c54b686e@10.13.36.116", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "Local/ID710150@osvpi_route_phoneaccount-00000006;1", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;1", "content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.26", "Value": "SIP/150010002-0000000d", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;1", "content": "", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.26", "Value": "bc9f035d-c54b686e@10.13.36.116", "Event": "VarSet"}, - {"Clone": "SIP/150010001-0000000e", "content": "", "CloneState": "Up", "Original": "Local/ID710150@osvpi_route_phoneaccount-00000006;1", "Privilege": "call,all", "OriginalState": "Up", "Event": "Masquerade"}, - {"Channel": "SIP/150010001-0000000e", "content": "", "Newname": "SIP/150010001-0000000e", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1501243782.28", "Event": "Rename"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;1", "content": "", "Newname": "SIP/150010001-0000000e", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1501243782.26", "Event": "Rename"}, - {"Channel": "SIP/150010001-0000000e", "content": "", "Newname": "Local/ID710150@osvpi_route_phoneaccount-00000006;1", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1501243782.28", "Event": "Rename"}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Channel": "SIP/150010001-0000000e", "content": "", "CallerIDName": "", "CallerIDNum": "201", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1501243782.26", "Event": "NewCallerid"}, - {"Channel2": "Local/ID710150@osvpi_route_phoneaccount-00000006;1", "Uniqueid1": "63f2f9ce924a-1501243782.27", "Channel1": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "CallerID2": "201", "Bridgestate": "Unlink", "Bridgetype": "core", "Privilege": "call,all", "CallerID1": "202", "Uniqueid2": "63f2f9ce924a-1501243782.28", "Event": "Bridge"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "SIP/150010001-0000000e", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "412af3ae4e8e05797d8dde8f1e69b568@test.voipgrid.nl", "Event": "VarSet"}, - {"Channel": "SIP/150010001-0000000e", "content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.26", "Value": "SIP/150010002-0000000d", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010001-0000000e", "content": "", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.26", "Value": "bc9f035d-c54b686e@10.13.36.116", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "5", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;1", "content": "", "ConnectedLineNum": "202", "AccountCode": "150010002", "CallerIDNum": "201", "Cause": "16", "CallerIDName": "", "Privilege": "call,all", "ConnectedLineName": "Robert Murray", "Cause-txt": "Normal Clearing", "Uniqueid": "63f2f9ce924a-1501243782.28", "Event": "Hangup"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.27", "Value": "ANSWER", "Event": "VarSet"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "UniqueID": "63f2f9ce924a-1501243782.27", "DialStatus": "ANSWER", "Privilege": "call,all", "SubEvent": "End", "Event": "Dial"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000006;2", "content": "", "ConnectedLineNum": "201", "AccountCode": "150010002", "CallerIDNum": "202", "Cause": "16", "CallerIDName": "Robert Murray", "Privilege": "call,all", "ConnectedLineName": "", "Cause-txt": "Normal Clearing", "Uniqueid": "63f2f9ce924a-1501243782.27", "Event": "Hangup"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "Variable": "SIPREFERRINGCONTEXT", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.22", "Value": "osvpi_account", "Event": "VarSet"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "Variable": "SIPREFERREDBYHDR", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.22", "Value": "\"Docker\" ", "Event": "VarSet"}, - {"TargetUniqueid": "63f2f9ce924a-1501243782.25", "Channel": "SIP/150010002-0000000b", "content": "", "TransferType": "Attended", "Privilege": "call,all", "TargetChannel": "SIP/150010002-0000000d", "Event": "Transfer", "Uniqueid": "63f2f9ce924a-1501243765.21", "TransferMethod": "SIP", "SIP-Callid": "ceaa8201-3173536f@10.13.36.116"}, - {"Clone": "SIP/150010003-0000000c", "content": "", "CloneState": "Up", "Original": "SIP/150010002-0000000d", "Privilege": "call,all", "OriginalState": "Up", "Event": "Masquerade"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "Newname": "SIP/150010003-0000000c", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1501243765.22", "Event": "Rename"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Newname": "SIP/150010003-0000000c", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Event": "Rename"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "Newname": "SIP/150010002-0000000d", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1501243765.22", "Event": "Rename"}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Channel": "SIP/150010003-0000000c", "content": "", "CallerIDName": "", "CallerIDNum": "203", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Event": "NewCallerid"}, - {"Channel2": "SIP/150010002-0000000d", "Uniqueid1": "63f2f9ce924a-1501243765.21", "Channel1": "SIP/150010002-0000000b", "content": "", "CallerID2": "202", "Bridgestate": "Unlink", "Bridgetype": "core", "Privilege": "call,all", "CallerID1": "202", "Uniqueid2": "63f2f9ce924a-1501243765.22", "Event": "Bridge"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "SIP/150010001-0000000e", "Event": "VarSet"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "412af3ae4e8e05797d8dde8f1e69b568@test.voipgrid.nl", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "25", "Event": "VarSet"}, - {"Channel": "SIP/150010001-0000000e", "content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.26", "Value": "SIP/150010003-0000000c", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "29", "Event": "VarSet"}, - {"Channel": "SIP/150010001-0000000e", "content": "", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.26", "Value": "6d43213e29d8a7fc72a57f4e7582d82a@test.voipgrid.nl", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "RTPAUDIOQOS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.22", "Value": "ssrc=294883552;themssrc=0;lp=0;rxjitter=0.000000;rxcount=0;txjitter=0.000000;txcount=0;rlp=0;rtt=0.000000", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "RTPAUDIOQOSJITTER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.22", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "RTPAUDIOQOSLOSS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.22", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "RTPAUDIOQOSRTT", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.22", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "Variable": "RTPAUDIOQOS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.22", "Value": "ssrc=294883552;themssrc=0;lp=0;rxjitter=0.000000;rxcount=0;txjitter=0.000000;txcount=0;rlp=0;rtt=0.000000", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000d", "content": "", "ConnectedLineNum": "", "AccountCode": "150010002", "CallerIDNum": "202", "Cause": "16", "CallerIDName": "Robert Murray", "Privilege": "call,all", "ConnectedLineName": "", "Cause-txt": "Normal Clearing", "Uniqueid": "63f2f9ce924a-1501243765.22", "Event": "Hangup"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243765.21", "Value": "ANSWER", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "UniqueID": "63f2f9ce924a-1501243765.21", "DialStatus": "ANSWER", "Privilege": "call,all", "SubEvent": "End", "Event": "Dial"}, - {"Channel": "SIP/150010002-0000000b", "content": "", "ConnectedLineNum": "", "AccountCode": "150010002", "CallerIDNum": "202", "Cause": "16", "CallerIDName": "Robert Murray", "Privilege": "call,all", "ConnectedLineName": "", "Cause-txt": "Normal Clearing", "Uniqueid": "63f2f9ce924a-1501243765.21", "Event": "Hangup"}, - {"Channel": "SIP/150010001-0000000e", "content": "", "Variable": "RTPAUDIOQOS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.26", "Value": "ssrc=832837501;themssrc=81305620;lp=0;rxjitter=0.000000;rxcount=1;txjitter=0.000000;txcount=0;rlp=0;rtt=0.000000", "Event": "VarSet"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "Variable": "RTPAUDIOQOSBRIDGED", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "ssrc=832837501;themssrc=81305620;lp=0;rxjitter=0.000000;rxcount=1;txjitter=0.000000;txcount=0;rlp=0;rtt=0.000000", "Event": "VarSet"}, - {"Channel": "SIP/150010001-0000000e", "content": "", "Variable": "RTPAUDIOQOSJITTER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.26", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Event": "VarSet"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "Variable": "RTPAUDIOQOSJITTERBRIDGED", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Event": "VarSet"}, - {"Channel": "SIP/150010001-0000000e", "content": "", "Variable": "RTPAUDIOQOSLOSS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.26", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Event": "VarSet"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "Variable": "RTPAUDIOQOSLOSSBRIDGED", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Event": "VarSet"}, - {"Channel": "SIP/150010001-0000000e", "content": "", "Variable": "RTPAUDIOQOSRTT", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.26", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Event": "VarSet"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "Variable": "RTPAUDIOQOSRTTBRIDGED", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Event": "VarSet"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "Variable": "RTPAUDIOQOS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "ssrc=343515899;themssrc=1239010528;lp=332;rxjitter=0.000000;rxcount=541;txjitter=0.001424;txcount=909;rlp=46180;rtt=0.011000", "Event": "VarSet"}, - {"Channel": "SIP/150010001-0000000e", "content": "", "Variable": "RTPAUDIOQOSBRIDGED", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.26", "Value": "ssrc=343515899;themssrc=1239010528;lp=332;rxjitter=0.000000;rxcount=541;txjitter=0.001424;txcount=909;rlp=46180;rtt=0.011000", "Event": "VarSet"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "Variable": "RTPAUDIOQOSJITTER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Event": "VarSet"}, - {"Channel": "SIP/150010001-0000000e", "content": "", "Variable": "RTPAUDIOQOSJITTERBRIDGED", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.26", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Event": "VarSet"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "Variable": "RTPAUDIOQOSLOSS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Event": "VarSet"}, - {"Channel": "SIP/150010001-0000000e", "content": "", "Variable": "RTPAUDIOQOSLOSSBRIDGED", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.26", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Event": "VarSet"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "Variable": "RTPAUDIOQOSRTT", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Event": "VarSet"}, - {"Channel": "SIP/150010001-0000000e", "content": "", "Variable": "RTPAUDIOQOSRTTBRIDGED", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.26", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Event": "VarSet"}, - {"Channel2": "SIP/150010001-0000000e", "Uniqueid1": "63f2f9ce924a-1501243782.25", "Channel1": "SIP/150010003-0000000c", "content": "", "CallerID2": "201", "Bridgestate": "Unlink", "Bridgetype": "core", "Privilege": "call,all", "CallerID1": "203", "Uniqueid2": "63f2f9ce924a-1501243782.26", "Event": "Bridge"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "30", "Event": "VarSet"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "34", "Event": "VarSet"}, - {"Channel": "SIP/150010001-0000000e", "content": "", "ConnectedLineNum": "", "AccountCode": "150010002", "CallerIDNum": "201", "Cause": "16", "CallerIDName": "", "Privilege": "call,all", "ConnectedLineName": "", "Cause-txt": "Normal Clearing", "Uniqueid": "63f2f9ce924a-1501243782.26", "Event": "Hangup"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "ANSWER", "Event": "VarSet"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "UniqueID": "63f2f9ce924a-1501243782.25", "DialStatus": "ANSWER", "Privilege": "call,all", "SubEvent": "End", "Event": "Dial"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "Variable": "RTPAUDIOQOS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "ssrc=343515899;themssrc=1239010528;lp=332;rxjitter=0.000000;rxcount=541;txjitter=0.001424;txcount=909;rlp=46180;rtt=0.011000", "Event": "VarSet"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "Variable": "RTPAUDIOQOSJITTER", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Event": "VarSet"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "Variable": "RTPAUDIOQOSLOSS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Event": "VarSet"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "Variable": "RTPAUDIOQOSRTT", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Event": "VarSet"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "Variable": "RTPAUDIOQOS", "Privilege": "dialplan,all", "Uniqueid": "63f2f9ce924a-1501243782.25", "Value": "ssrc=343515899;themssrc=1239010528;lp=332;rxjitter=0.000000;rxcount=541;txjitter=0.001424;txcount=909;rlp=46180;rtt=0.011000", "Event": "VarSet"}, - {"Channel": "SIP/150010003-0000000c", "content": "", "ConnectedLineNum": "", "AccountCode": "150010002", "CallerIDNum": "203", "Cause": "16", "CallerIDName": "", "Privilege": "call,all", "ConnectedLineName": "", "Cause-txt": "Normal Clearing", "Uniqueid": "63f2f9ce924a-1501243782.25", "Event": "Hangup"} + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "Docker Erin", "CallerIDNum": "260010001", "Channel": "SIP/260010001-00000026", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "0150010001", "Language": "en", "Linkedid": "b6093874285e-1530278036.1196", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1196", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "Docker Erin", "CallerIDNum": "260010001", "Channel": "SIP/260010001-00000026", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newstate", "Exten": "0150010001", "Language": "nl", "Linkedid": "b6093874285e-1530278036.1196", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1196", "content": ""}, + {"AccountCode": "260010001", "AccountInternalNumber": "201", "CallerIDName": "Docker Erin", "CallerIDNum": "260010001", "Channel": "SIP/260010001-00000026", "ChannelState": "4", "ChannelStateDesc": "Ring", "ClientId": "26001", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Direction": "outbound", "Event": "UserEvent", "Exten": "0150010001", "Language": "nl", "Linkedid": "b6093874285e-1530278036.1196", "Priority": "24", "Privilege": "user,all", "Provider": "webhook", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1196", "UserEvent": "NotifyCallstate", "WebhookUrls": "", "content": ""}, + {"AccountCode": "260010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Amanda Haynes", "CallerIDNum": "260010001", "Channel": "SIP/260010001-00000026", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530278036.1196", "Priority": "5", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1196", "content": ""}, + {"AccountCode": "260010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Amanda Haynes", "CallerIDNum": "+31260010001", "Channel": "SIP/260010001-00000026", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530278036.1196", "Priority": "6", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1196", "content": ""}, + {"AccountCode": "260010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/260010001-00000026", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world_call", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530278036.1196", "Priority": "7", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1196", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31150010001@world_out-00000034;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "world_out", "Event": "Newchannel", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530278036.1196", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1199", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31150010001@world_out-00000034;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "world_out", "Event": "Newchannel", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530278036.1196", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1201", "content": ""}, + {"AccountCode": "260010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-00000034;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530278036.1196", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1199", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-00000034;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530278036.1196", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1199", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-00000034;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530278036.1196", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1199", "content": ""}, + {"AccountCode": "260010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31150010001@world_out-00000034;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530278036.1196", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1201", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31150010001@world_out-00000034;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530278036.1196", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1201", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31150010001@world_out-00000034;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530278036.1196", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1201", "content": ""}, + {"Context": "world_out", "Event": "LocalBridge", "Exten": "+31150010001", "LocalOneAccountCode": "260010001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31150010001", "LocalOneChannel": "Local/+31150010001@world_out-00000034;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31260010001", "LocalOneContext": "world_out", "LocalOneExten": "+31150010001", "LocalOneLanguage": "en", "LocalOneLinkedid": "b6093874285e-1530278036.1196", "LocalOnePriority": "1", "LocalOneUniqueid": "b6093874285e-1530278036.1199", "LocalOptimization": "Yes", "LocalTwoAccountCode": "260010001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31260010001", "LocalTwoChannel": "Local/+31150010001@world_out-00000034;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31150010001", "LocalTwoContext": "world_out", "LocalTwoExten": "+31150010001", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "b6093874285e-1530278036.1196", "LocalTwoPriority": "1", "LocalTwoUniqueid": "b6093874285e-1530278036.1201", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/260010001-00000026", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world_call", "DestAccountCode": "260010001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/+31150010001@world_out-00000034;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "world_out", "DestExten": "+31150010001", "DestLanguage": "en", "DestLinkedid": "b6093874285e-1530278036.1196", "DestPriority": "1", "DestUniqueid": "b6093874285e-1530278036.1199", "DialString": "+31150010001@world_out", "Event": "DialBegin", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530278036.1196", "Priority": "15", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1196", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/voipgrid-siproute-docker-00000027", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "b6093874285e-1530278036.1196", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1204", "content": ""}, + {"AccountCode": "260010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000027", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_in", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530278036.1196", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1204", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000027", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_in", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530278036.1196", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1204", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000027", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_in", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530278036.1196", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1204", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31150010001@world_out-00000034;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_out", "DestAccountCode": "260010001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "SIP/voipgrid-siproute-docker-00000027", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "voipgrid_in", "DestExten": "+31150010001", "DestLanguage": "nl", "DestLinkedid": "b6093874285e-1530278036.1196", "DestPriority": "1", "DestUniqueid": "b6093874285e-1530278036.1204", "DialString": "+31150010001@voipgrid-siproute-docker", "Event": "DialBegin", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530278036.1196", "Priority": "4", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1201", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000028", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newchannel", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530278036.1206", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1206", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000028", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530278036.1206", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1206", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000028", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530278036.1206", "Priority": "10", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1206", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000027", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530278036.1196", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1204", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-00000034;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530278036.1196", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1199", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000028", "ChannelState": "4", "ChannelStateDesc": "Ring", "ClientId": "15001", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world", "Direction": "inbound", "Event": "UserEvent", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530278036.1206", "Priority": "15", "Privilege": "user,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1206", "UserEvent": "NotifyCallstate", "WebhookUrls": "http://example.com/foo/bar", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000035;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730150", "Language": "en", "Linkedid": "b6093874285e-1530278036.1206", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278037.1209", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000035;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730150", "Language": "en", "Linkedid": "b6093874285e-1530278036.1206", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278037.1211", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000035;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530278036.1206", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278037.1209", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000035;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530278036.1206", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278037.1209", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000035;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530278036.1206", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278037.1209", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000035;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730150", "Language": "en", "Linkedid": "b6093874285e-1530278036.1206", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278037.1211", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000035;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730150", "Language": "en", "Linkedid": "b6093874285e-1530278036.1206", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278037.1211", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000035;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730150", "Language": "en", "Linkedid": "b6093874285e-1530278036.1206", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278037.1211", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730150", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31150010001", "LocalOneChannel": "Local/ID730150@osvpi_route_phoneaccount-00000035;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31260010001", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "+31150010001", "LocalOneLanguage": "en", "LocalOneLinkedid": "b6093874285e-1530278036.1206", "LocalOnePriority": "1", "LocalOneUniqueid": "b6093874285e-1530278037.1209", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31260010001", "LocalTwoChannel": "Local/ID730150@osvpi_route_phoneaccount-00000035;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31150010001", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730150", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "b6093874285e-1530278036.1206", "LocalTwoPriority": "1", "LocalTwoUniqueid": "b6093874285e-1530278037.1211", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000028", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/ID730150@osvpi_route_phoneaccount-00000035;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "+31150010001", "DestLanguage": "en", "DestLinkedid": "b6093874285e-1530278036.1206", "DestPriority": "1", "DestUniqueid": "b6093874285e-1530278037.1209", "DialString": "ID730150@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530278036.1206", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1206", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000035;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_account", "Event": "UserEvent", "Exten": "ID730150", "Language": "en", "Linkedid": "b6093874285e-1530278036.1206", "Priority": "9", "Privilege": "user,all", "Provider": "cloudcti", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278037.1211", "UserEvent": "NotifyCallstate", "content": ""}, + {"AccountCode": "150010001", "AccountInternalNumber": "201", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000035;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_account", "Event": "UserEvent", "Exten": "ID730150", "Language": "en", "Linkedid": "b6093874285e-1530278036.1206", "Priority": "11", "Privilege": "user,all", "Provider": "webhook", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278037.1211", "UserEvent": "NotifyCallstate", "UserInternalNumbers": "601", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010001-00000029", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "b6093874285e-1530278036.1206", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278037.1214", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000029", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530278036.1206", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278037.1214", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000029", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530278036.1206", "OldAccountCode": "150010001", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278037.1214", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000029", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530278036.1206", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278037.1214", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000035;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "SIP/150010001-00000029", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "+31150010001", "DestLanguage": "nl", "DestLinkedid": "b6093874285e-1530278036.1206", "DestPriority": "1", "DestUniqueid": "b6093874285e-1530278037.1214", "DialString": "150010001/150010001/172.20.0.13!!0260010001", "Event": "DialBegin", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530278036.1206", "Priority": "8", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278037.1211", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000029", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530278036.1206", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278037.1214", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000035;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530278036.1206", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278037.1209", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000029", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530278036.1206", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278037.1214", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000035;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "SIP/150010001-00000029", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "b6093874285e-1530278036.1206", "DestPriority": "1", "DestUniqueid": "b6093874285e-1530278037.1214", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530278036.1206", "Priority": "8", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278037.1211", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000035;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530278036.1206", "Priority": "8", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278037.1211", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000035;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530278036.1206", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278037.1209", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "5ef73be7-ac23-4500-a0fe-01d44c5a82a2", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000028", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/ID730150@osvpi_route_phoneaccount-00000035;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "b6093874285e-1530278036.1206", "DestPriority": "1", "DestUniqueid": "b6093874285e-1530278037.1209", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530278036.1206", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1206", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000028", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530278036.1206", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1206", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "5ef73be7-ac23-4500-a0fe-01d44c5a82a2", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000029", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "b6093874285e-1530278036.1206", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278037.1214", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "70d86241-4c8f-40cf-9a94-36c6b8b91821", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "5ef73be7-ac23-4500-a0fe-01d44c5a82a2", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000035;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530278036.1206", "Priority": "8", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278037.1211", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "70d86241-4c8f-40cf-9a94-36c6b8b91821", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000035;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "b6093874285e-1530278036.1206", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278037.1209", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000027", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530278036.1196", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1204", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "70d86241-4c8f-40cf-9a94-36c6b8b91821", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000028", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530278036.1206", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1206", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31150010001@world_out-00000034;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_out", "DestAccountCode": "260010001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "SIP/voipgrid-siproute-docker-00000027", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "voipgrid_in", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "b6093874285e-1530278036.1196", "DestPriority": "1", "DestUniqueid": "b6093874285e-1530278036.1204", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530278036.1196", "Priority": "4", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1201", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31150010001@world_out-00000034;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_out", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530278036.1196", "Priority": "4", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1201", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-00000034;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530278036.1196", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1199", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1fae0066-9967-4b4a-ab35-c6f67fc6eb37", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/260010001-00000026", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world_call", "DestAccountCode": "260010001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/+31150010001@world_out-00000034;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "world_out", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "b6093874285e-1530278036.1196", "DestPriority": "1", "DestUniqueid": "b6093874285e-1530278036.1199", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530278036.1196", "Priority": "15", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1196", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/260010001-00000026", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world_call", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530278036.1196", "Priority": "15", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1196", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4d96181a-5673-4c46-9666-2c738c1d8ae1", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"AccountCode": "260010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1fae0066-9967-4b4a-ab35-c6f67fc6eb37", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000027", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_in", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "b6093874285e-1530278036.1196", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1204", "content": ""}, + {"AccountCode": "260010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4d96181a-5673-4c46-9666-2c738c1d8ae1", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-00000034;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "b6093874285e-1530278036.1196", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1199", "content": ""}, + {"AccountCode": "260010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1fae0066-9967-4b4a-ab35-c6f67fc6eb37", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31150010001@world_out-00000034;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_out", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530278036.1196", "Priority": "4", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1201", "content": ""}, + {"AccountCode": "260010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4d96181a-5673-4c46-9666-2c738c1d8ae1", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/260010001-00000026", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world_call", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530278036.1196", "Priority": "15", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1196", "content": ""}, + {"AccountCode": "260010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4d96181a-5673-4c46-9666-2c738c1d8ae1", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/260010001-00000026", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world_call", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530278036.1196", "Priority": "15", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1196", "content": ""}, + {"AccountCode": "260010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1fae0066-9967-4b4a-ab35-c6f67fc6eb37", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31150010001@world_out-00000034;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_out", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530278036.1196", "Priority": "4", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1201", "content": ""}, + {"AccountCode": "260010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1fae0066-9967-4b4a-ab35-c6f67fc6eb37", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/260010001-00000026", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world_call", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530278036.1196", "Priority": "15", "Privilege": "call,all", "SwapUniqueid": "b6093874285e-1530278036.1201", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1196", "content": ""}, + {"AccountCode": "260010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4d96181a-5673-4c46-9666-2c738c1d8ae1", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31150010001@world_out-00000034;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "b6093874285e-1530278036.1196", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1199", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4d96181a-5673-4c46-9666-2c738c1d8ae1", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/+31150010001@world_out-00000034;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "b6093874285e-1530278036.1196", "Priority": "4", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1201", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/+31150010001@world_out-00000034;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "b6093874285e-1530278036.1196", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1199", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "70d86241-4c8f-40cf-9a94-36c6b8b91821", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000028", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530278036.1206", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1206", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "5ef73be7-ac23-4500-a0fe-01d44c5a82a2", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000035;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530278036.1206", "Priority": "8", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278037.1211", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "5ef73be7-ac23-4500-a0fe-01d44c5a82a2", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000028", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530278036.1206", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "b6093874285e-1530278037.1211", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1206", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "70d86241-4c8f-40cf-9a94-36c6b8b91821", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000035;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "b6093874285e-1530278036.1206", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278037.1209", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "70d86241-4c8f-40cf-9a94-36c6b8b91821", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000035;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "b6093874285e-1530278036.1206", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278037.1209", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000035;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "b6093874285e-1530278036.1206", "Priority": "4", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278037.1211", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "5ef73be7-ac23-4500-a0fe-01d44c5a82a2", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000029", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "b6093874285e-1530278036.1206", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278037.1214", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010001-00000029", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "b6093874285e-1530278036.1206", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278037.1214", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "5ef73be7-ac23-4500-a0fe-01d44c5a82a2", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000028", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530278036.1206", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1206", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "5ef73be7-ac23-4500-a0fe-01d44c5a82a2", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/voipgrid-siproute-docker-00000028", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "b6093874285e-1530278036.1206", "Priority": "4", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1206", "content": ""}, + {"AccountCode": "260010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1fae0066-9967-4b4a-ab35-c6f67fc6eb37", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/voipgrid-siproute-docker-00000027", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_in", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "b6093874285e-1530278036.1196", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1204", "content": ""}, + {"AccountCode": "260010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1fae0066-9967-4b4a-ab35-c6f67fc6eb37", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/260010001-00000026", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world_call", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530278036.1196", "Priority": "15", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1196", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/voipgrid-siproute-docker-00000027", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_in", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "b6093874285e-1530278036.1196", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1204", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1fae0066-9967-4b4a-ab35-c6f67fc6eb37", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"AccountCode": "260010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/260010001-00000026", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "b6093874285e-1530278036.1196", "Priority": "4", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530278036.1196", "content": ""} ] diff --git a/tests/fixtures/xfer_attended/xfer_abacbc.json b/tests/fixtures/xfer_attended/xfer_abacbc.json index df4d05b..4e890ac 100644 --- a/tests/fixtures/xfer_attended/xfer_abacbc.json +++ b/tests/fixtures/xfer_attended/xfer_abacbc.json @@ -1,674 +1,2189 @@ [ -{"Event": "FullyBooted", "content": "", "Privilege": "system,all", "Status": "Fully Booted"}, -{"content": "", "Exten": "202", "Context": "osvpi_account", "Uniqueid": "vgua0-dev-1442387090.552", "ChannelStateDesc": "Down", "Channel": "SIP/126680001-00000114", "Event": "Newchannel", "Privilege": "call,all", "CallerIDNum": "126680001", "CallerIDName": "", "AccountCode": "126680001", "ChannelState": "0"}, -{"content": "", "Variable": "SIPURI", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "sip:126680001@6.6.6.6:5074", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "SIPDOMAIN", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "1.2.3.4", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "SIPCALLID", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "1-17342@6.6.6.6", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "__client_id", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "12668", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "__account_id", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "126680001", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "__record_call", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "no", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "__intprefix", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "31", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "__limit_account", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "4", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "__limit_client", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "0", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "__hide_ext_cliname", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "1", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "__TRANSFER_CONTEXT", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "osvpi_account_transfer", "Channel": "SIP/126680001-00000114"}, -{"Uniqueid": "vgua0-dev-1442387090.552", "content": "", "Privilege": "call,all", "CallerIDNum": "126680001", "ConnectedLineName": "", "ConnectedLineNum": "", "CallerIDName": "", "ChannelStateDesc": "Ring", "Channel": "SIP/126680001-00000114", "ChannelState": "4", "Event": "Newstate"}, -{"content": "", "AppData": "0?GotoIf(1?osvpi_proc_hangup_insecure,202,1)", "Privilege": "dialplan,all", "Context": "osvpi_account", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "1", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "ExecIf"}, -{"content": "", "AppData": "osvpi_proc_check_forwards,s,1", "Privilege": "dialplan,all", "Context": "osvpi_account", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "2", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "Gosub"}, -{"content": "", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "0", "Channel": "SIP/126680001-00000114"}, -{"content": "", "AppData": "0?check,1", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "1", "Extension": "s", "Channel": "SIP/126680001-00000114", "Application": "GotoIf"}, -{"content": "", "AppData": "LOCAL(tmp)=", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "2", "Extension": "s", "Channel": "SIP/126680001-00000114", "Application": "Set"}, -{"content": "", "Variable": "LOCAL(tmp)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000114"}, -{"content": "", "AppData": "1?Goto(init,1)", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "3", "Extension": "s", "Channel": "SIP/126680001-00000114", "Application": "ExecIf"}, -{"content": "", "AppData": "MASTER_CHANNEL(SIP_MAX_FORWARDS)=16", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "1", "Extension": "init", "Channel": "SIP/126680001-00000114", "Application": "Set"}, -{"content": "", "Variable": "SIP_MAX_FORWARDS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "16", "Channel": "SIP/126680001-00000114"}, -{"content": "", "AppData": "DEBUG: MaxForwards: initialized to: 16", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "2", "Extension": "init", "Channel": "SIP/126680001-00000114", "Application": "NoOp"}, -{"content": "", "AppData": "", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "3", "Extension": "init", "Channel": "SIP/126680001-00000114", "Application": "Return"}, -{"content": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000114"}, -{"content": "", "AppData": "0?osvpi_account_transfer,202,1", "Privilege": "dialplan,all", "Context": "osvpi_account", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "3", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "GotoIf"}, -{"content": "", "AppData": "ENTRY POINT username=126680001,ip=1.2.3.4/1.2.3.4,from=sip:126680001@6.6.6.6:5074;tag=17342SIPpTag001,contact=sip:126680001@6.6.6.6:5074,ua=,name=,num=126680001,pres=allowed_not_screened", "Privilege": "dialplan,all", "Context": "osvpi_account", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "4", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "NoOp"}, -{"content": "", "AppData": "is_transfer=0", "Privilege": "dialplan,all", "Context": "osvpi_account", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "5", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "Set"}, -{"content": "", "Variable": "is_transfer", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "0", "Channel": "SIP/126680001-00000114"}, -{"content": "", "AppData": "CDR(amaflags)=BILLING", "Privilege": "dialplan,all", "Context": "osvpi_account", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "6", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "Set"}, -{"content": "", "AppData": "user_privacy=0", "Privilege": "dialplan,all", "Context": "osvpi_account", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "7", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "Set"}, -{"content": "", "Variable": "user_privacy", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "0", "Channel": "SIP/126680001-00000114"}, -{"content": "", "AppData": "1?Set(__supports_progress=1)", "Privilege": "dialplan,all", "Context": "osvpi_account", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "8", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "ExecIf"}, -{"content": "", "Variable": "__supports_progress", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "1", "Channel": "SIP/126680001-00000114"}, -{"content": "", "AppData": "osvpi_proc_record_call,s-no,1(out,12668,126680001)", "Privilege": "dialplan,all", "Context": "osvpi_account", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "9", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "Gosub"}, -{"content": "", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "out", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "12668", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "LOCAL(ARG3)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "126680001", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "3", "Channel": "SIP/126680001-00000114"}, -{"content": "", "AppData": "", "Privilege": "dialplan,all", "Context": "osvpi_proc_record_call", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "1", "Extension": "s-no", "Channel": "SIP/126680001-00000114", "Application": "Return"}, -{"content": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000114"}, -{"content": "", "AppData": "l_tmp=", "Privilege": "dialplan,all", "Context": "osvpi_account", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "10", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "Set"}, -{"content": "", "Variable": "l_tmp", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000114"}, -{"content": "", "AppData": "1?Set(l_tmp=)", "Privilege": "dialplan,all", "Context": "osvpi_account", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "11", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "ExecIf"}, -{"content": "", "Variable": "l_tmp", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000114"}, -{"content": "", "AppData": "1?checkprivacy", "Privilege": "dialplan,all", "Context": "osvpi_account", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "12", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "GotoIf"}, -{"content": "", "AppData": "0?Set(CALLERPRES()=allowed_passed_screen)", "Privilege": "dialplan,all", "Context": "osvpi_account", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "16", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "ExecIf"}, -{"content": "", "AppData": "0?Set(CALLERPRES()=prohib_passed_screen)", "Privilege": "dialplan,all", "Context": "osvpi_account", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "17", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "ExecIf"}, -{"content": "", "AppData": "0?Set(CHANNEL(musicclass)=)", "Privilege": "dialplan,all", "Context": "osvpi_account", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "18", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "ExecIf"}, -{"content": "", "AppData": "1?continue", "Privilege": "dialplan,all", "Context": "osvpi_account", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "19", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "GotoIf"}, -{"content": "", "AppData": "osvpi_proc_set_i18n_region,31,1", "Privilege": "dialplan,all", "Context": "osvpi_account", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "22", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "Gosub"}, -{"content": "", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "0", "Channel": "SIP/126680001-00000114"}, -{"content": "", "AppData": "i18n_region=NL", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_i18n_region", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "1", "Extension": "31", "Channel": "SIP/126680001-00000114", "Application": "Set"}, -{"content": "", "Variable": "i18n_region", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "NL", "Channel": "SIP/126680001-00000114"}, -{"content": "", "AppData": "", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_i18n_region", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "2", "Extension": "31", "Channel": "SIP/126680001-00000114", "Application": "Return"}, -{"content": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000114"}, -{"content": "", "AppData": "osvpi_account_emergency_NL,202,1", "Privilege": "dialplan,all", "Context": "osvpi_account", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "23", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "Goto"}, -{"content": "", "AppData": "osvpi_account_no_emergency,202,1", "Privilege": "dialplan,all", "Context": "osvpi_account_emergency_NL", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "1", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "Goto"}, -{"content": "", "AppData": "osvpi_account,202,no-emergency", "Privilege": "dialplan,all", "Context": "osvpi_account_no_emergency", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "1", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "Goto"}, -{"content": "", "AppData": "osvpi_account_clean,202,1", "Privilege": "dialplan,all", "Context": "osvpi_account", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "24", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "Goto"}, -{"content": "", "AppData": "return=osvpi_account_clean", "Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "1", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "Set"}, -{"content": "", "Variable": "return", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "osvpi_account_clean", "Channel": "SIP/126680001-00000114"}, -{"content": "", "AppData": "osvpi_return_to_canonical,31i202,1", "Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "2", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "Goto"}, -{"content": "", "Variable": "INVALID_EXTEN", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "31i202", "Channel": "SIP/126680001-00000114"}, -{"content": "", "AppData": "osvpi_account_clean,202,local", "Privilege": "dialplan,all", "Context": "osvpi_return_to_canonical", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "1", "Extension": "i", "Channel": "SIP/126680001-00000114", "Application": "Goto"}, -{"content": "", "AppData": "0?extern", "Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "3", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "GotoIf"}, -{"content": "", "AppData": "osvpi_proc_set_callerid,202,1(126680001,0,0)", "Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "4", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "Gosub"}, -{"content": "", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "126680001", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "0", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "LOCAL(ARG3)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "0", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "3", "Channel": "SIP/126680001-00000114"}, -{"content": "", "AppData": "0?done", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "1", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "GotoIf"}, -{"content": "", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "1", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "SUCCESS", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "set,privacy,name,number_int,number_ext", "Channel": "SIP/126680001-00000114"}, -{"content": "", "AppData": "ARRAY(LOCAL(set),LOCAL(privacy),LOCAL(name),LOCAL(number_int),LOCAL(number_ext))=1,0,,201,+31508009000", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "2", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "Set"}, -{"content": "", "Variable": "LOCAL(set)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "1", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "LOCAL(privacy)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "0", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "LOCAL(name)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "LOCAL(number_int)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "201", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "LOCAL(number_ext)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "+31508009000", "Channel": "SIP/126680001-00000114"}, -{"content": "", "AppData": "0?presentation", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "3", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "GotoIf"}, -{"content": "", "AppData": "CALLERPRES()=allowed_passed_screen", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "4", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "Set"}, -{"content": "", "AppData": "CALLERID(name)=", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "5", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "Set"}, -{"content": "", "AppData": "CALLERID(num)=201", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "6", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "Set"}, -{"CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "content": "", "Privilege": "call,all", "CallerIDNum": "201", "Uniqueid": "vgua0-dev-1442387090.552", "CallerIDName": "", "Channel": "SIP/126680001-00000114", "Event": "NewCallerid"}, -{"content": "", "AppData": "0?Set(CALLERPRES()=prohib_passed_screen)", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "7", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "ExecIf"}, -{"content": "", "AppData": "CALLERID(ANI)=201", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "8", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "Set"}, -{"content": "", "AppData": "osvpi_proc_set_callerid_internal,202,1", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "9", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "Gosub"}, -{"content": "", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "LOCAL(ARG3)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "0", "Channel": "SIP/126680001-00000114"}, -{"content": "", "AppData": "1?nop", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid_internal", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "1", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "GotoIf"}, -{"content": "", "AppData": "0?Set(CALLERID(ANI)=20)", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid_internal", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "5", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "ExecIf"}, -{"content": "", "AppData": "", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid_internal", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "6", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "Return"}, -{"content": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000114"}, -{"content": "", "AppData": "", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "10", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "Return"}, -{"content": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000114"}, -{"content": "", "AppData": "3?osvpi_account_call_int,202,1:i,1", "Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "5", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "GotoIf"}, -{"content": "", "AppData": "osvpi_proc_check_limits,202,1", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "1", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "Gosub"}, -{"content": "", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "0", "Channel": "SIP/126680001-00000114"}, -{"content": "", "AppData": "DEBUG: call_limit: client 0/0 and account 0/4", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "1", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "NoOp"}, -{"content": "", "AppData": "0?osvpi_handle_limit,202,client", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "2", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "GotoIf"}, -{"content": "", "AppData": "0?osvpi_handle_limit,202,account", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "3", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "GotoIf"}, -{"content": "", "AppData": "GROUP(account_lim)=126680001", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "4", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "Set"}, -{"content": "", "AppData": "GROUP(client_lim)=12668", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "5", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "Set"}, -{"content": "", "AppData": "", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "6", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "Return"}, -{"content": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000114"}, -{"content": "", "AppData": "osvpi_proc_check_recurse,202,1(12668)", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "2", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "Gosub"}, -{"content": "", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "12668", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "1", "Channel": "SIP/126680001-00000114"}, -{"content": "", "AppData": "LOCAL(exten)=12668:202", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "1", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "Set"}, -{"content": "", "Variable": "LOCAL(exten)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "12668:202", "Channel": "SIP/126680001-00000114"}, -{"content": "", "AppData": "Recursion checking 12668:202 against ", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "2", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "NoOp"}, -{"content": "", "AppData": "LOCAL(n)=0", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "3", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "Set"}, -{"content": "", "Variable": "LOCAL(n)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "0", "Channel": "SIP/126680001-00000114"}, -{"content": "", "AppData": "LOCAL(i)=1", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "4", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "Set"}, -{"content": "", "Variable": "LOCAL(i)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "1", "Channel": "SIP/126680001-00000114"}, -{"content": "", "AppData": "1?add", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "5", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "GotoIf"}, -{"content": "", "AppData": "__EXTEN_LIST=12668:202 ", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "9", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "Set"}, -{"content": "", "Variable": "__EXTEN_LIST", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "12668:202 ", "Channel": "SIP/126680001-00000114"}, -{"content": "", "AppData": "", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "10", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "Return"}, -{"content": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000114"}, -{"content": "", "AppData": "__ORIG_EXTEN=202", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "3", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "Set"}, -{"content": "", "Variable": "__ORIG_EXTEN", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "202", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "0", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "NODATA", "Channel": "SIP/126680001-00000114"}, -{"content": "", "AppData": "ARRAY(conference_id,user_password,admin_password,conference_language)=", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "4", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "Set"}, -{"content": "", "Variable": "conference_id", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "user_password", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "admin_password", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "conference_language", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000114"}, -{"content": "", "AppData": "0?osvpi_route_conference,ID,1", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "5", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "GotoIf"}, -{"content": "", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "0", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "NODATA", "Channel": "SIP/126680001-00000114"}, -{"content": "", "AppData": "ARRAY(route_id,client_timezone)=", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "6", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "Set"}, -{"content": "", "Variable": "route_id", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "client_timezone", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000114"}, -{"content": "", "AppData": "0?route,1", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "7", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "GotoIf"}, -{"content": "", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "0", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "NODATA", "Channel": "SIP/126680001-00000114"}, -{"content": "", "AppData": "ARRAY(all_extensions,limited_extensions,password)=", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "8", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "Set"}, -{"content": "", "Variable": "all_extensions", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "limited_extensions", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "password", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000114"}, -{"content": "", "AppData": "0?osvpi_account_spy,202,1", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "9", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "GotoIf"}, -{"content": "", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "1", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "SUCCESS", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "interfaces", "Channel": "SIP/126680001-00000114"}, -{"content": "", "AppData": "ARRAY(interfaces)=Local/ID12@osvpi_route_phoneaccount", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "10", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "Set"}, -{"content": "", "Variable": "interfaces", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "Local/ID12@osvpi_route_phoneaccount", "Channel": "SIP/126680001-00000114"}, -{"content": "", "AppData": "0?osvpi_handle_unallocated,202,1", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "11", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "GotoIf"}, -{"content": "", "AppData": "Local/ID12@osvpi_route_phoneaccount", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "12", "Extension": "202", "Channel": "SIP/126680001-00000114", "Application": "Dial"}, -{"content": "", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Exten": "ID12", "Context": "osvpi_route_phoneaccount", "Uniqueid": "vgua0-dev-1442387090.553", "ChannelStateDesc": "Down", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;1", "Event": "Newchannel", "Privilege": "call,all", "CallerIDNum": "", "CallerIDName": "", "AccountCode": "", "ChannelState": "0"}, -{"content": "", "Exten": "ID12", "Context": "osvpi_route_phoneaccount", "Uniqueid": "vgua0-dev-1442387090.554", "ChannelStateDesc": "Ring", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "Event": "Newchannel", "Privilege": "call,all", "CallerIDNum": "", "CallerIDName": "", "AccountCode": "", "ChannelState": "4"}, -{"content": "", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.553", "Event": "VarSet", "Value": "ID12@osvpi_route_phoneaccount", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;1"}, -{"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": "", "Privilege": "call,all", "CallerIDNum": "202", "Uniqueid": "vgua0-dev-1442387090.553", "CallerIDName": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;1", "Event": "NewCallerid"}, -{"Channel1": "Local/ID12@osvpi_route_phoneaccount-0000008a;1", "content": "", "Channel2": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "Privilege": "call,all", "Exten": "ID12", "Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Uniqueid2": "vgua0-dev-1442387090.554", "Uniqueid1": "vgua0-dev-1442387090.553", "LocalOptimization": "Yes"}, -{"content": "", "Destination": "Local/ID12@osvpi_route_phoneaccount-0000008a;1", "SubEvent": "Begin", "ConnectedLineName": "", "Channel": "SIP/126680001-00000114", "Dialstring": "ID12@osvpi_route_phoneaccount", "UniqueID": "vgua0-dev-1442387090.552", "Event": "Dial", "DestUniqueID": "vgua0-dev-1442387090.553", "Privilege": "call,all", "CallerIDNum": "201", "ConnectedLineNum": "", "CallerIDName": ""}, -{"content": "", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "1", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "SUCCESS", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=126680002,accountid,fullplus,rpid,,0", "Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "Newexten", "Priority": "1", "Extension": "ID12", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "Application": "Set"}, -{"content": "", "Variable": "__dst_account_id", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "126680002", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "Variable": "l_mangle_did", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "accountid", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "Variable": "l_mangle_cli", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "fullplus", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "Variable": "l_cli_header", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "rpid", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "Variable": "l_primary_pickupgroup", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "Variable": "app_account", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "0", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "AppData": "0?vialer", "Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "Newexten", "Priority": "2", "Extension": "ID12", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "Application": "GotoIf"}, -{"content": "", "AppData": "_PICKUPMARK=", "Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "Newexten", "Priority": "3", "Extension": "ID12", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "Application": "Set"}, -{"content": "", "Variable": "_PICKUPMARK", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "AppData": "l_trunk=0", "Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "Newexten", "Priority": "4", "Extension": "ID12", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "Application": "Set"}, -{"content": "", "Variable": "l_trunk", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "0", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "AppData": "osvpi_route_account,ID12,1", "Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "Newexten", "Priority": "5", "Extension": "ID12", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "Application": "Goto"}, -{"content": "", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "1", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "SUCCESS", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "proxy,secret", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "AppData": "ARRAY(l_proxy,l_secret)=1.2.3.4,XXX", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "Newexten", "Priority": "1", "Extension": "ID12", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "Application": "Set"}, -{"content": "", "Variable": "l_proxy", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "1.2.3.4", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "Variable": "l_secret", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "XXX", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "AppData": "osvpi_proc_mangle_number,accountid,1(126680002,202)", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "Newexten", "Priority": "2", "Extension": "ID12", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "Application": "Gosub"}, -{"content": "", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "126680002", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "202", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "2", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "AppData": "MANGLED_EXTEN=126680002", "Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "Newexten", "Priority": "1", "Extension": "accountid", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "Application": "Set"}, -{"content": "", "Variable": "MANGLED_EXTEN", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "126680002", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "AppData": "", "Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "Newexten", "Priority": "2", "Extension": "accountid", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "Application": "Return"}, -{"content": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "AppData": "l_did=126680002", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "Newexten", "Priority": "3", "Extension": "ID12", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "Application": "Set"}, -{"content": "", "Variable": "l_did", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "126680002", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "AppData": "osvpi_proc_mangle_number,fullplus,1(126680002,201)", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "Newexten", "Priority": "4", "Extension": "ID12", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "Application": "Gosub"}, -{"content": "", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "126680002", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "201", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "2", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "AppData": "MANGLED_EXTEN=201", "Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "Newexten", "Priority": "1", "Extension": "fullplus", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "Application": "Set"}, -{"content": "", "Variable": "MANGLED_EXTEN", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "201", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "AppData": "", "Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "Newexten", "Priority": "2", "Extension": "fullplus", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "Application": "Return"}, -{"content": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "AppData": "l_cli=201", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "Newexten", "Priority": "5", "Extension": "ID12", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "Application": "Set"}, -{"content": "", "Variable": "l_cli", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "201", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "AppData": "l_privacy=0", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "Newexten", "Priority": "6", "Extension": "ID12", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "Application": "Set"}, -{"content": "", "Variable": "l_privacy", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "0", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "AppData": "0?clifrom", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "Newexten", "Priority": "7", "Extension": "ID12", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "Application": "GotoIf"}, -{"content": "", "AppData": "1?clirpid", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "Newexten", "Priority": "8", "Extension": "ID12", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "Application": "GotoIf"}, -{"content": "", "AppData": "CALLERID(num)=126680002", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "Newexten", "Priority": "11", "Extension": "ID12", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "Application": "Set"}, -{"CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "content": "", "Privilege": "call,all", "CallerIDNum": "126680002", "Uniqueid": "vgua0-dev-1442387090.554", "CallerIDName": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "Event": "NewCallerid"}, -{"content": "", "AppData": "0?SIPAddHeader(Remote-Party-ID: \\\"\\\" \\;privacy=off\\;screen=yes)", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "Newexten", "Priority": "12", "Extension": "ID12", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "Application": "ExecIf"}, -{"content": "", "AppData": "1?SIPAddHeader(Remote-Party-ID: \\;privacy=off\\;screen=yes)", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "Newexten", "Priority": "13", "Extension": "ID12", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "Application": "ExecIf"}, -{"content": "", "Variable": "__SIPADDHEADER01", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "Remote-Party-ID: ;privacy=off;screen=yes", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "AppData": "0?SIPAddHeader(Remote-Party-ID: \\\"Anonymous\\\" \\;privacy=full\\;screen=yes)", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "Newexten", "Priority": "14", "Extension": "ID12", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "Application": "ExecIf"}, -{"content": "", "AppData": "CALLERID(name)=", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "Newexten", "Priority": "15", "Extension": "ID12", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "Application": "Set"}, -{"content": "", "AppData": "CALLERPRES()=allowed_passed_screen", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "Newexten", "Priority": "16", "Extension": "ID12", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "Application": "Set"}, -{"content": "", "AppData": "osvpi_proc_proxy_out,202,1", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "Newexten", "Priority": "17", "Extension": "ID12", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "Application": "Goto"}, -{"content": "", "AppData": "X-Accountcode: 126680002", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "Newexten", "Priority": "1", "Extension": "202", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "Application": "SIPAddHeader"}, -{"content": "", "Variable": "__SIPADDHEADER02", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "X-Accountcode: 126680002", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "AppData": "X-Custom-Header: customflag", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "Newexten", "Priority": "2", "Extension": "202", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "Application": "SIPAddHeader"}, -{"content": "", "Variable": "__SIPADDHEADER03", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "X-Custom-Header: customflag", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "AppData": "0?Set(l_proxy=1.2.3.4)", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "Newexten", "Priority": "3", "Extension": "202", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "Application": "ExecIf"}, -{"content": "", "AppData": "SIP/126680002/126680002/1.2.3.4,,", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "Newexten", "Priority": "4", "Extension": "202", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "Application": "Dial"}, -{"content": "", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "Exten": "", "Context": "osvpi_account", "Uniqueid": "vgua0-dev-1442387090.555", "ChannelStateDesc": "Down", "Channel": "SIP/126680002-00000115", "Event": "Newchannel", "Privilege": "call,all", "CallerIDNum": "", "CallerIDName": "", "AccountCode": "126680002", "ChannelState": "0"}, -{"content": "", "Variable": "SIPCALLID", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.555", "Event": "VarSet", "Value": "7e26a79d6b194b0d4161a27f28cb71ca@5.5.5.5:5060", "Channel": "SIP/126680002-00000115"}, -{"content": "", "Variable": "__client_id", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.555", "Event": "VarSet", "Value": "12668", "Channel": "SIP/126680002-00000115"}, -{"content": "", "Variable": "__account_id", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.555", "Event": "VarSet", "Value": "126680002", "Channel": "SIP/126680002-00000115"}, -{"content": "", "Variable": "__record_call", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.555", "Event": "VarSet", "Value": "no", "Channel": "SIP/126680002-00000115"}, -{"content": "", "Variable": "__intprefix", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.555", "Event": "VarSet", "Value": "31", "Channel": "SIP/126680002-00000115"}, -{"content": "", "Variable": "__limit_account", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.555", "Event": "VarSet", "Value": "4", "Channel": "SIP/126680002-00000115"}, -{"content": "", "Variable": "__limit_client", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.555", "Event": "VarSet", "Value": "0", "Channel": "SIP/126680002-00000115"}, -{"content": "", "Variable": "__hide_ext_cliname", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.555", "Event": "VarSet", "Value": "1", "Channel": "SIP/126680002-00000115"}, -{"content": "", "Variable": "__TRANSFER_CONTEXT", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.555", "Event": "VarSet", "Value": "osvpi_account_transfer", "Channel": "SIP/126680002-00000115"}, -{"content": "", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.555", "Event": "VarSet", "Value": "126680002/126680002/1.2.3.4", "Channel": "SIP/126680002-00000115"}, -{"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": "", "Privilege": "call,all", "CallerIDNum": "202", "Uniqueid": "vgua0-dev-1442387090.555", "CallerIDName": "", "Channel": "SIP/126680002-00000115", "Event": "NewCallerid"}, -{"content": "", "Destination": "SIP/126680002-00000115", "SubEvent": "Begin", "ConnectedLineName": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "Dialstring": "126680002/126680002/1.2.3.4", "UniqueID": "vgua0-dev-1442387090.554", "Event": "Dial", "DestUniqueID": "vgua0-dev-1442387090.555", "Privilege": "call,all", "CallerIDNum": "126680002", "ConnectedLineNum": "202", "CallerIDName": ""}, -{"Uniqueid": "vgua0-dev-1442387090.555", "content": "", "Privilege": "call,all", "CallerIDNum": "202", "ConnectedLineName": "", "ConnectedLineNum": "126680002", "CallerIDName": "", "ChannelStateDesc": "Ringing", "Channel": "SIP/126680002-00000115", "ChannelState": "5", "Event": "Newstate"}, -{"Uniqueid": "vgua0-dev-1442387090.553", "content": "", "Privilege": "call,all", "CallerIDNum": "202", "ConnectedLineName": "", "ConnectedLineNum": "201", "CallerIDName": "", "ChannelStateDesc": "Ringing", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;1", "ChannelState": "5", "Event": "Newstate"}, -{"Uniqueid": "vgua0-dev-1442387090.555", "content": "", "Privilege": "call,all", "CallerIDNum": "202", "ConnectedLineName": "", "ConnectedLineNum": "126680002", "CallerIDName": "", "ChannelStateDesc": "Up", "Channel": "SIP/126680002-00000115", "ChannelState": "6", "Event": "Newstate"}, -{"content": "", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "ANSWER", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "SIP/126680002-00000115", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "126680002/126680002/1.2.3.4", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "SIP/126680002-00000115", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.555", "Event": "VarSet", "Value": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "Channel": "SIP/126680002-00000115"}, -{"Uniqueid": "vgua0-dev-1442387090.554", "content": "", "Privilege": "call,all", "CallerIDNum": "126680002", "ConnectedLineName": "", "ConnectedLineNum": "202", "CallerIDName": "", "ChannelStateDesc": "Up", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "ChannelState": "6", "Event": "Newstate"}, -{"content": "", "Privilege": "call,all", "OldAccountCode": "126680001", "Uniqueid": "vgua0-dev-1442387090.555", "Event": "NewAccountCode", "AccountCode": "126680001", "Channel": "SIP/126680002-00000115"}, -{"Channel1": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "content": "", "Bridgetype": "core", "Privilege": "call,all", "CallerID1": "126680002", "Event": "Bridge", "Bridgestate": "Link", "Uniqueid2": "vgua0-dev-1442387090.555", "Uniqueid1": "vgua0-dev-1442387090.554", "Channel2": "SIP/126680002-00000115", "CallerID2": "202"}, -{"Uniqueid": "vgua0-dev-1442387090.553", "content": "", "Privilege": "call,all", "CallerIDNum": "202", "ConnectedLineName": "", "ConnectedLineNum": "201", "CallerIDName": "", "ChannelStateDesc": "Up", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;1", "ChannelState": "6", "Event": "Newstate"}, -{"content": "", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "ANSWER", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "SIP/126680002-00000115", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "7e26a79d6b194b0d4161a27f28cb71ca@5.5.5.5:5060", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.555", "Event": "VarSet", "Value": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "Channel": "SIP/126680002-00000115"}, -{"content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "SIP/126680002-00000115", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "Local/ID12@osvpi_route_phoneaccount-0000008a;1", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "7e26a79d6b194b0d4161a27f28cb71ca@5.5.5.5:5060", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "ID12@osvpi_route_phoneaccount", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.555", "Event": "VarSet", "Value": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "Channel": "SIP/126680002-00000115"}, -{"content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "Local/ID12@osvpi_route_phoneaccount-0000008a;1", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.553", "Event": "VarSet", "Value": "SIP/126680001-00000114", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;1"}, -{"Uniqueid": "vgua0-dev-1442387090.552", "content": "", "Privilege": "call,all", "CallerIDNum": "201", "ConnectedLineName": "", "ConnectedLineNum": "", "CallerIDName": "", "ChannelStateDesc": "Up", "Channel": "SIP/126680001-00000114", "ChannelState": "6", "Event": "Newstate"}, -{"content": "", "Privilege": "call,all", "OldAccountCode": "126680001", "Uniqueid": "vgua0-dev-1442387090.553", "Event": "NewAccountCode", "AccountCode": "126680001", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;1"}, -{"Channel1": "SIP/126680001-00000114", "content": "", "Bridgetype": "core", "Privilege": "call,all", "CallerID1": "201", "Event": "Bridge", "Bridgestate": "Link", "Uniqueid2": "vgua0-dev-1442387090.553", "Uniqueid1": "vgua0-dev-1442387090.552", "Channel2": "Local/ID12@osvpi_route_phoneaccount-0000008a;1", "CallerID2": "202"}, -{"content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "Local/ID12@osvpi_route_phoneaccount-0000008a;1", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.553", "Event": "VarSet", "Value": "SIP/126680001-00000114", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;1"}, -{"content": "", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.553", "Event": "VarSet", "Value": "1-17342@6.6.6.6", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;1"}, -{"content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "Local/ID12@osvpi_route_phoneaccount-0000008a;1", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.553", "Event": "VarSet", "Value": "SIP/126680001-00000114", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;1"}, -{"content": "", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.553", "Event": "VarSet", "Value": "1-17342@6.6.6.6", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;1"}, -{"content": "", "Privilege": "call,all", "Event": "MusicOnHold", "Class": "default", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;1", "State": "Start", "UniqueID": "vgua0-dev-1442387090.553"}, -{"Channel1": "SIP/126680001-00000114", "content": "", "Bridgetype": "core", "Privilege": "call,all", "CallerID1": "201", "Event": "Bridge", "Bridgestate": "Unlink", "Uniqueid2": "vgua0-dev-1442387090.553", "Uniqueid1": "vgua0-dev-1442387090.552", "Channel2": "Local/ID12@osvpi_route_phoneaccount-0000008a;1", "CallerID2": "202"}, -{"Channel1": "SIP/126680001-00000114", "content": "", "Bridgetype": "core", "Privilege": "call,all", "CallerID1": "201", "Event": "Bridge", "Bridgestate": "Link", "Uniqueid2": "vgua0-dev-1442387090.553", "Uniqueid1": "vgua0-dev-1442387090.552", "Channel2": "Local/ID12@osvpi_route_phoneaccount-0000008a;1", "CallerID2": "202"}, -{"content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "Local/ID12@osvpi_route_phoneaccount-0000008a;1", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.553", "Event": "VarSet", "Value": "SIP/126680001-00000114", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;1"}, -{"content": "", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.553", "Event": "VarSet", "Value": "1-17342@6.6.6.6", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;1"}, -{"content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "Local/ID12@osvpi_route_phoneaccount-0000008a;1", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.553", "Event": "VarSet", "Value": "SIP/126680001-00000114", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;1"}, -{"content": "", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.553", "Event": "VarSet", "Value": "1-17342@6.6.6.6", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;1"}, -{"content": "", "Privilege": "call,all", "Original": "Local/ID12@osvpi_route_phoneaccount-0000008a;1", "Clone": "SIP/126680002-00000115", "CloneState": "Up", "Event": "Masquerade", "OriginalState": "Up"}, -{"content": "", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1442387090.555", "Newname": "SIP/126680002-00000115", "Channel": "SIP/126680002-00000115", "Event": "Rename"}, -{"content": "", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1442387090.553", "Newname": "SIP/126680002-00000115", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;1", "Event": "Rename"}, -{"content": "", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1442387090.555", "Newname": "Local/ID12@osvpi_route_phoneaccount-0000008a;1", "Channel": "SIP/126680002-00000115", "Event": "Rename"}, -{"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": "", "Privilege": "call,all", "CallerIDNum": "202", "Uniqueid": "vgua0-dev-1442387090.553", "CallerIDName": "", "Channel": "SIP/126680002-00000115", "Event": "NewCallerid"}, -{"content": "", "Privilege": "call,all", "Event": "MusicOnHold", "Class": "default", "Channel": "SIP/126680002-00000115", "State": "Start", "UniqueID": "vgua0-dev-1442387090.553"}, -{"content": "", "Privilege": "call,all", "Event": "MusicOnHold", "Class": "default", "Channel": "SIP/126680002-00000115", "State": "Start", "UniqueID": "vgua0-dev-1442387090.553"}, -{"Channel1": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "content": "", "Bridgetype": "core", "Privilege": "call,all", "CallerID1": "126680002", "Event": "Bridge", "Bridgestate": "Unlink", "Uniqueid2": "vgua0-dev-1442387090.555", "Uniqueid1": "vgua0-dev-1442387090.554", "Channel2": "Local/ID12@osvpi_route_phoneaccount-0000008a;1", "CallerID2": "202"}, -{"content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "SIP/126680002-00000115", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "7e26a79d6b194b0d4161a27f28cb71ca@5.5.5.5:5060", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.553", "Event": "VarSet", "Value": "SIP/126680001-00000114", "Channel": "SIP/126680002-00000115"}, -{"content": "", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.553", "Event": "VarSet", "Value": "1-17342@6.6.6.6", "Channel": "SIP/126680002-00000115"}, -{"content": "", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "0", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "0", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"Event": "HangupRequest", "content": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1442387090.554"}, -{"Uniqueid": "vgua0-dev-1442387090.555", "ConnectedLineName": "", "content": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;1", "CallerIDName": "", "Privilege": "call,all", "CallerIDNum": "202", "ConnectedLineNum": "201", "Event": "Hangup", "AccountCode": "126680001", "Cause": "16", "Cause-txt": "Normal Clearing"}, -{"content": "", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "VarSet", "Value": "ANSWER", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "Privilege": "call,all", "SubEvent": "End", "Event": "Dial", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "DialStatus": "ANSWER", "UniqueID": "vgua0-dev-1442387090.554"}, -{"content": "", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "SoftHangupRequest", "Cause": "16", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2"}, -{"content": "", "AppData": "1?nosip", "Privilege": "dialplan,all", "Context": "handlers", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "Newexten", "Priority": "1", "Extension": "onhangup", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "Application": "GotoIf"}, -{"content": "", "AppData": "0?osvpi_proc_httptouch,s,1()", "Privilege": "dialplan,all", "Context": "handlers", "Uniqueid": "vgua0-dev-1442387090.554", "Event": "Newexten", "Priority": "3", "Extension": "onhangup", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "Application": "GosubIf"}, -{"Uniqueid": "vgua0-dev-1442387090.554", "ConnectedLineName": "", "content": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-0000008a;2", "CallerIDName": "", "Privilege": "call,all", "CallerIDNum": "126680002", "ConnectedLineNum": "202", "Event": "Hangup", "AccountCode": "126680001", "Cause": "16", "Cause-txt": "Normal Clearing"}, -{"content": "", "Exten": "203", "Context": "osvpi_account", "Uniqueid": "vgua0-dev-1442387091.556", "ChannelStateDesc": "Down", "Channel": "SIP/126680001-00000116", "Event": "Newchannel", "Privilege": "call,all", "CallerIDNum": "126680001", "CallerIDName": "", "AccountCode": "126680001", "ChannelState": "0"}, -{"content": "", "Variable": "SIPURI", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "sip:126680001@6.6.6.6:5071", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "SIPDOMAIN", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "1.2.3.4", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "SIPCALLID", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "dedup///1-17342@6.6.6.6", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "__client_id", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "12668", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "__account_id", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "126680001", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "__record_call", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "no", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "__intprefix", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "31", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "__limit_account", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "4", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "__limit_client", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "0", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "__hide_ext_cliname", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "1", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "__TRANSFER_CONTEXT", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "osvpi_account_transfer", "Channel": "SIP/126680001-00000116"}, -{"Uniqueid": "vgua0-dev-1442387091.556", "content": "", "Privilege": "call,all", "CallerIDNum": "126680001", "ConnectedLineName": "", "ConnectedLineNum": "", "CallerIDName": "", "ChannelStateDesc": "Ring", "Channel": "SIP/126680001-00000116", "ChannelState": "4", "Event": "Newstate"}, -{"content": "", "AppData": "0?GotoIf(1?osvpi_proc_hangup_insecure,203,1)", "Privilege": "dialplan,all", "Context": "osvpi_account", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "1", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "ExecIf"}, -{"content": "", "AppData": "osvpi_proc_check_forwards,s,1", "Privilege": "dialplan,all", "Context": "osvpi_account", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "2", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "Gosub"}, -{"content": "", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "0", "Channel": "SIP/126680001-00000116"}, -{"content": "", "AppData": "0?check,1", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "1", "Extension": "s", "Channel": "SIP/126680001-00000116", "Application": "GotoIf"}, -{"content": "", "AppData": "LOCAL(tmp)=", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "2", "Extension": "s", "Channel": "SIP/126680001-00000116", "Application": "Set"}, -{"content": "", "Variable": "LOCAL(tmp)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000116"}, -{"content": "", "AppData": "1?Goto(init,1)", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "3", "Extension": "s", "Channel": "SIP/126680001-00000116", "Application": "ExecIf"}, -{"content": "", "AppData": "MASTER_CHANNEL(SIP_MAX_FORWARDS)=16", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "1", "Extension": "init", "Channel": "SIP/126680001-00000116", "Application": "Set"}, -{"content": "", "Variable": "SIP_MAX_FORWARDS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "16", "Channel": "SIP/126680001-00000116"}, -{"content": "", "AppData": "DEBUG: MaxForwards: initialized to: 16", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "2", "Extension": "init", "Channel": "SIP/126680001-00000116", "Application": "NoOp"}, -{"content": "", "AppData": "", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "3", "Extension": "init", "Channel": "SIP/126680001-00000116", "Application": "Return"}, -{"content": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000116"}, -{"content": "", "AppData": "0?osvpi_account_transfer,203,1", "Privilege": "dialplan,all", "Context": "osvpi_account", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "3", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "GotoIf"}, -{"content": "", "AppData": "ENTRY POINT username=126680001,ip=1.2.3.4/1.2.3.4,from=sip:126680001@6.6.6.6:5071;tag=17327SIPpTag001,contact=sip:126680001@6.6.6.6:5071,ua=,name=,num=126680001,pres=allowed_not_screened", "Privilege": "dialplan,all", "Context": "osvpi_account", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "4", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "NoOp"}, -{"content": "", "AppData": "is_transfer=0", "Privilege": "dialplan,all", "Context": "osvpi_account", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "5", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "Set"}, -{"content": "", "Variable": "is_transfer", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "0", "Channel": "SIP/126680001-00000116"}, -{"content": "", "AppData": "CDR(amaflags)=BILLING", "Privilege": "dialplan,all", "Context": "osvpi_account", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "6", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "Set"}, -{"content": "", "AppData": "user_privacy=0", "Privilege": "dialplan,all", "Context": "osvpi_account", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "7", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "Set"}, -{"content": "", "Variable": "user_privacy", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "0", "Channel": "SIP/126680001-00000116"}, -{"content": "", "AppData": "1?Set(__supports_progress=1)", "Privilege": "dialplan,all", "Context": "osvpi_account", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "8", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "ExecIf"}, -{"content": "", "Variable": "__supports_progress", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "1", "Channel": "SIP/126680001-00000116"}, -{"content": "", "AppData": "osvpi_proc_record_call,s-no,1(out,12668,126680001)", "Privilege": "dialplan,all", "Context": "osvpi_account", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "9", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "Gosub"}, -{"content": "", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "out", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "12668", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "LOCAL(ARG3)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "126680001", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "3", "Channel": "SIP/126680001-00000116"}, -{"content": "", "AppData": "", "Privilege": "dialplan,all", "Context": "osvpi_proc_record_call", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "1", "Extension": "s-no", "Channel": "SIP/126680001-00000116", "Application": "Return"}, -{"content": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000116"}, -{"content": "", "AppData": "l_tmp=", "Privilege": "dialplan,all", "Context": "osvpi_account", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "10", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "Set"}, -{"content": "", "Variable": "l_tmp", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000116"}, -{"content": "", "AppData": "1?Set(l_tmp=)", "Privilege": "dialplan,all", "Context": "osvpi_account", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "11", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "ExecIf"}, -{"content": "", "Variable": "l_tmp", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000116"}, -{"content": "", "AppData": "1?checkprivacy", "Privilege": "dialplan,all", "Context": "osvpi_account", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "12", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "GotoIf"}, -{"content": "", "AppData": "0?Set(CALLERPRES()=allowed_passed_screen)", "Privilege": "dialplan,all", "Context": "osvpi_account", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "16", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "ExecIf"}, -{"content": "", "AppData": "0?Set(CALLERPRES()=prohib_passed_screen)", "Privilege": "dialplan,all", "Context": "osvpi_account", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "17", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "ExecIf"}, -{"content": "", "AppData": "0?Set(CHANNEL(musicclass)=)", "Privilege": "dialplan,all", "Context": "osvpi_account", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "18", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "ExecIf"}, -{"content": "", "AppData": "1?continue", "Privilege": "dialplan,all", "Context": "osvpi_account", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "19", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "GotoIf"}, -{"content": "", "AppData": "osvpi_proc_set_i18n_region,31,1", "Privilege": "dialplan,all", "Context": "osvpi_account", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "22", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "Gosub"}, -{"content": "", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "0", "Channel": "SIP/126680001-00000116"}, -{"content": "", "AppData": "i18n_region=NL", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_i18n_region", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "1", "Extension": "31", "Channel": "SIP/126680001-00000116", "Application": "Set"}, -{"content": "", "Variable": "i18n_region", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "NL", "Channel": "SIP/126680001-00000116"}, -{"content": "", "AppData": "", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_i18n_region", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "2", "Extension": "31", "Channel": "SIP/126680001-00000116", "Application": "Return"}, -{"content": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000116"}, -{"content": "", "AppData": "osvpi_account_emergency_NL,203,1", "Privilege": "dialplan,all", "Context": "osvpi_account", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "23", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "Goto"}, -{"content": "", "AppData": "osvpi_account_no_emergency,203,1", "Privilege": "dialplan,all", "Context": "osvpi_account_emergency_NL", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "1", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "Goto"}, -{"content": "", "AppData": "osvpi_account,203,no-emergency", "Privilege": "dialplan,all", "Context": "osvpi_account_no_emergency", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "1", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "Goto"}, -{"content": "", "AppData": "osvpi_account_clean,203,1", "Privilege": "dialplan,all", "Context": "osvpi_account", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "24", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "Goto"}, -{"content": "", "AppData": "return=osvpi_account_clean", "Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "1", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "Set"}, -{"content": "", "Variable": "return", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "osvpi_account_clean", "Channel": "SIP/126680001-00000116"}, -{"content": "", "AppData": "osvpi_return_to_canonical,31i203,1", "Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "2", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "Goto"}, -{"content": "", "Variable": "INVALID_EXTEN", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "31i203", "Channel": "SIP/126680001-00000116"}, -{"content": "", "AppData": "osvpi_account_clean,203,local", "Privilege": "dialplan,all", "Context": "osvpi_return_to_canonical", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "1", "Extension": "i", "Channel": "SIP/126680001-00000116", "Application": "Goto"}, -{"content": "", "AppData": "0?extern", "Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "3", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "GotoIf"}, -{"content": "", "AppData": "osvpi_proc_set_callerid,203,1(126680001,0,0)", "Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "4", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "Gosub"}, -{"content": "", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "126680001", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "0", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "LOCAL(ARG3)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "0", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "3", "Channel": "SIP/126680001-00000116"}, -{"content": "", "AppData": "0?done", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "1", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "GotoIf"}, -{"content": "", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "1", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "SUCCESS", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "set,privacy,name,number_int,number_ext", "Channel": "SIP/126680001-00000116"}, -{"content": "", "AppData": "ARRAY(LOCAL(set),LOCAL(privacy),LOCAL(name),LOCAL(number_int),LOCAL(number_ext))=1,0,,201,+31508009000", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "2", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "Set"}, -{"content": "", "Variable": "LOCAL(set)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "1", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "LOCAL(privacy)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "0", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "LOCAL(name)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "LOCAL(number_int)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "201", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "LOCAL(number_ext)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "+31508009000", "Channel": "SIP/126680001-00000116"}, -{"content": "", "AppData": "0?presentation", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "3", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "GotoIf"}, -{"content": "", "AppData": "CALLERPRES()=allowed_passed_screen", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "4", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "Set"}, -{"content": "", "AppData": "CALLERID(name)=", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "5", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "Set"}, -{"content": "", "AppData": "CALLERID(num)=201", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "6", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "Set"}, -{"CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "content": "", "Privilege": "call,all", "CallerIDNum": "201", "Uniqueid": "vgua0-dev-1442387091.556", "CallerIDName": "", "Channel": "SIP/126680001-00000116", "Event": "NewCallerid"}, -{"content": "", "AppData": "0?Set(CALLERPRES()=prohib_passed_screen)", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "7", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "ExecIf"}, -{"content": "", "AppData": "CALLERID(ANI)=201", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "8", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "Set"}, -{"content": "", "AppData": "osvpi_proc_set_callerid_internal,203,1", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "9", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "Gosub"}, -{"content": "", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "LOCAL(ARG3)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "0", "Channel": "SIP/126680001-00000116"}, -{"content": "", "AppData": "1?nop", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid_internal", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "1", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "GotoIf"}, -{"content": "", "AppData": "0?Set(CALLERID(ANI)=20)", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid_internal", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "5", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "ExecIf"}, -{"content": "", "AppData": "", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid_internal", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "6", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "Return"}, -{"content": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000116"}, -{"content": "", "AppData": "", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "10", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "Return"}, -{"content": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000116"}, -{"content": "", "AppData": "3?osvpi_account_call_int,203,1:i,1", "Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "5", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "GotoIf"}, -{"content": "", "AppData": "osvpi_proc_check_limits,203,1", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "1", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "Gosub"}, -{"content": "", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "0", "Channel": "SIP/126680001-00000116"}, -{"content": "", "AppData": "DEBUG: call_limit: client 1/0 and account 1/4", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "1", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "NoOp"}, -{"content": "", "AppData": "0?osvpi_handle_limit,203,client", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "2", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "GotoIf"}, -{"content": "", "AppData": "0?osvpi_handle_limit,203,account", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "3", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "GotoIf"}, -{"content": "", "AppData": "GROUP(account_lim)=126680001", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "4", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "Set"}, -{"content": "", "AppData": "GROUP(client_lim)=12668", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "5", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "Set"}, -{"content": "", "AppData": "", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "6", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "Return"}, -{"content": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000116"}, -{"content": "", "AppData": "osvpi_proc_check_recurse,203,1(12668)", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "2", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "Gosub"}, -{"content": "", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "12668", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "1", "Channel": "SIP/126680001-00000116"}, -{"content": "", "AppData": "LOCAL(exten)=12668:203", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "1", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "Set"}, -{"content": "", "Variable": "LOCAL(exten)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "12668:203", "Channel": "SIP/126680001-00000116"}, -{"content": "", "AppData": "Recursion checking 12668:203 against ", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "2", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "NoOp"}, -{"content": "", "AppData": "LOCAL(n)=0", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "3", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "Set"}, -{"content": "", "Variable": "LOCAL(n)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "0", "Channel": "SIP/126680001-00000116"}, -{"content": "", "AppData": "LOCAL(i)=1", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "4", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "Set"}, -{"content": "", "Variable": "LOCAL(i)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "1", "Channel": "SIP/126680001-00000116"}, -{"content": "", "AppData": "1?add", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "5", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "GotoIf"}, -{"content": "", "AppData": "__EXTEN_LIST=12668:203 ", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "9", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "Set"}, -{"content": "", "Variable": "__EXTEN_LIST", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "12668:203 ", "Channel": "SIP/126680001-00000116"}, -{"content": "", "AppData": "", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "10", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "Return"}, -{"content": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000116"}, -{"content": "", "AppData": "__ORIG_EXTEN=203", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "3", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "Set"}, -{"content": "", "Variable": "__ORIG_EXTEN", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "203", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "0", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "NODATA", "Channel": "SIP/126680001-00000116"}, -{"content": "", "AppData": "ARRAY(conference_id,user_password,admin_password,conference_language)=", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "4", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "Set"}, -{"content": "", "Variable": "conference_id", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "user_password", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "admin_password", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "conference_language", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000116"}, -{"content": "", "AppData": "0?osvpi_route_conference,ID,1", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "5", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "GotoIf"}, -{"content": "", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "0", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "NODATA", "Channel": "SIP/126680001-00000116"}, -{"content": "", "AppData": "ARRAY(route_id,client_timezone)=", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "6", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "Set"}, -{"content": "", "Variable": "route_id", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "client_timezone", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000116"}, -{"content": "", "AppData": "0?route,1", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "7", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "GotoIf"}, -{"content": "", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "0", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "NODATA", "Channel": "SIP/126680001-00000116"}, -{"content": "", "AppData": "ARRAY(all_extensions,limited_extensions,password)=", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "8", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "Set"}, -{"content": "", "Variable": "all_extensions", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "limited_extensions", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "password", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000116"}, -{"content": "", "AppData": "0?osvpi_account_spy,203,1", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "9", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "GotoIf"}, -{"content": "", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "1", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "SUCCESS", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "interfaces", "Channel": "SIP/126680001-00000116"}, -{"content": "", "AppData": "ARRAY(interfaces)=Local/ID22@osvpi_route_phoneaccount", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "10", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "Set"}, -{"content": "", "Variable": "interfaces", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "Local/ID22@osvpi_route_phoneaccount", "Channel": "SIP/126680001-00000116"}, -{"content": "", "AppData": "0?osvpi_handle_unallocated,203,1", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "11", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "GotoIf"}, -{"content": "", "AppData": "Local/ID22@osvpi_route_phoneaccount", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "12", "Extension": "203", "Channel": "SIP/126680001-00000116", "Application": "Dial"}, -{"content": "", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Exten": "ID22", "Context": "osvpi_route_phoneaccount", "Uniqueid": "vgua0-dev-1442387091.557", "ChannelStateDesc": "Down", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;1", "Event": "Newchannel", "Privilege": "call,all", "CallerIDNum": "", "CallerIDName": "", "AccountCode": "", "ChannelState": "0"}, -{"content": "", "Exten": "ID22", "Context": "osvpi_route_phoneaccount", "Uniqueid": "vgua0-dev-1442387091.558", "ChannelStateDesc": "Ring", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "Event": "Newchannel", "Privilege": "call,all", "CallerIDNum": "", "CallerIDName": "", "AccountCode": "", "ChannelState": "4"}, -{"content": "", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.557", "Event": "VarSet", "Value": "ID22@osvpi_route_phoneaccount", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;1"}, -{"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": "", "Privilege": "call,all", "CallerIDNum": "203", "Uniqueid": "vgua0-dev-1442387091.557", "CallerIDName": "", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;1", "Event": "NewCallerid"}, -{"Channel1": "Local/ID22@osvpi_route_phoneaccount-0000008b;1", "content": "", "Channel2": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "Privilege": "call,all", "Exten": "ID22", "Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Uniqueid2": "vgua0-dev-1442387091.558", "Uniqueid1": "vgua0-dev-1442387091.557", "LocalOptimization": "Yes"}, -{"content": "", "Destination": "Local/ID22@osvpi_route_phoneaccount-0000008b;1", "SubEvent": "Begin", "ConnectedLineName": "", "Channel": "SIP/126680001-00000116", "Dialstring": "ID22@osvpi_route_phoneaccount", "UniqueID": "vgua0-dev-1442387091.556", "Event": "Dial", "DestUniqueID": "vgua0-dev-1442387091.557", "Privilege": "call,all", "CallerIDNum": "201", "ConnectedLineNum": "", "CallerIDName": ""}, -{"content": "", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "1", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "SUCCESS", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=126680003,accountid,fullplus,rpid,,0", "Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "Newexten", "Priority": "1", "Extension": "ID22", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "Application": "Set"}, -{"content": "", "Variable": "__dst_account_id", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "126680003", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "Variable": "l_mangle_did", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "accountid", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "Variable": "l_mangle_cli", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "fullplus", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "Variable": "l_cli_header", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "rpid", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "Variable": "l_primary_pickupgroup", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "Variable": "app_account", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "0", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "AppData": "0?vialer", "Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "Newexten", "Priority": "2", "Extension": "ID22", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "Application": "GotoIf"}, -{"content": "", "AppData": "_PICKUPMARK=", "Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "Newexten", "Priority": "3", "Extension": "ID22", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "Application": "Set"}, -{"content": "", "Variable": "_PICKUPMARK", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "AppData": "l_trunk=0", "Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "Newexten", "Priority": "4", "Extension": "ID22", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "Application": "Set"}, -{"content": "", "Variable": "l_trunk", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "0", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "AppData": "osvpi_route_account,ID22,1", "Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "Newexten", "Priority": "5", "Extension": "ID22", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "Application": "Goto"}, -{"content": "", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "1", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "SUCCESS", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "proxy,secret", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "AppData": "ARRAY(l_proxy,l_secret)=1.2.3.4,XXX", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "Newexten", "Priority": "1", "Extension": "ID22", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "Application": "Set"}, -{"content": "", "Variable": "l_proxy", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "1.2.3.4", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "Variable": "l_secret", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "XXX", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "AppData": "osvpi_proc_mangle_number,accountid,1(126680003,203)", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "Newexten", "Priority": "2", "Extension": "ID22", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "Application": "Gosub"}, -{"content": "", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "126680003", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "203", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "2", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "AppData": "MANGLED_EXTEN=126680003", "Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "Newexten", "Priority": "1", "Extension": "accountid", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "Application": "Set"}, -{"content": "", "Variable": "MANGLED_EXTEN", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "126680003", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "AppData": "", "Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "Newexten", "Priority": "2", "Extension": "accountid", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "Application": "Return"}, -{"content": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "AppData": "l_did=126680003", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "Newexten", "Priority": "3", "Extension": "ID22", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "Application": "Set"}, -{"content": "", "Variable": "l_did", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "126680003", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "AppData": "osvpi_proc_mangle_number,fullplus,1(126680003,201)", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "Newexten", "Priority": "4", "Extension": "ID22", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "Application": "Gosub"}, -{"content": "", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "126680003", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "201", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "2", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "AppData": "MANGLED_EXTEN=201", "Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "Newexten", "Priority": "1", "Extension": "fullplus", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "Application": "Set"}, -{"content": "", "Variable": "MANGLED_EXTEN", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "201", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "AppData": "", "Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "Newexten", "Priority": "2", "Extension": "fullplus", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "Application": "Return"}, -{"content": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "AppData": "l_cli=201", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "Newexten", "Priority": "5", "Extension": "ID22", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "Application": "Set"}, -{"content": "", "Variable": "l_cli", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "201", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "AppData": "l_privacy=0", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "Newexten", "Priority": "6", "Extension": "ID22", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "Application": "Set"}, -{"content": "", "Variable": "l_privacy", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "0", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "AppData": "0?clifrom", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "Newexten", "Priority": "7", "Extension": "ID22", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "Application": "GotoIf"}, -{"content": "", "AppData": "1?clirpid", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "Newexten", "Priority": "8", "Extension": "ID22", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "Application": "GotoIf"}, -{"content": "", "AppData": "CALLERID(num)=126680003", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "Newexten", "Priority": "11", "Extension": "ID22", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "Application": "Set"}, -{"CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "content": "", "Privilege": "call,all", "CallerIDNum": "126680003", "Uniqueid": "vgua0-dev-1442387091.558", "CallerIDName": "", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "Event": "NewCallerid"}, -{"content": "", "AppData": "0?SIPAddHeader(Remote-Party-ID: \\\"\\\" \\;privacy=off\\;screen=yes)", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "Newexten", "Priority": "12", "Extension": "ID22", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "Application": "ExecIf"}, -{"content": "", "AppData": "1?SIPAddHeader(Remote-Party-ID: \\;privacy=off\\;screen=yes)", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "Newexten", "Priority": "13", "Extension": "ID22", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "Application": "ExecIf"}, -{"content": "", "Variable": "__SIPADDHEADER01", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "Remote-Party-ID: ;privacy=off;screen=yes", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "AppData": "0?SIPAddHeader(Remote-Party-ID: \\\"Anonymous\\\" \\;privacy=full\\;screen=yes)", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "Newexten", "Priority": "14", "Extension": "ID22", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "Application": "ExecIf"}, -{"content": "", "AppData": "CALLERID(name)=", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "Newexten", "Priority": "15", "Extension": "ID22", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "Application": "Set"}, -{"content": "", "AppData": "CALLERPRES()=allowed_passed_screen", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "Newexten", "Priority": "16", "Extension": "ID22", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "Application": "Set"}, -{"content": "", "AppData": "osvpi_proc_proxy_out,203,1", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "Newexten", "Priority": "17", "Extension": "ID22", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "Application": "Goto"}, -{"content": "", "AppData": "X-Accountcode: 126680003", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "Newexten", "Priority": "1", "Extension": "203", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "Application": "SIPAddHeader"}, -{"content": "", "Variable": "__SIPADDHEADER02", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "X-Accountcode: 126680003", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "AppData": "X-Custom-Header: customflag", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "Newexten", "Priority": "2", "Extension": "203", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "Application": "SIPAddHeader"}, -{"content": "", "Variable": "__SIPADDHEADER03", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "X-Custom-Header: customflag", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "AppData": "0?Set(l_proxy=1.2.3.4)", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "Newexten", "Priority": "3", "Extension": "203", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "Application": "ExecIf"}, -{"content": "", "AppData": "SIP/126680003/126680003/1.2.3.4,,", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "Newexten", "Priority": "4", "Extension": "203", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "Application": "Dial"}, -{"content": "", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "Exten": "", "Context": "osvpi_account", "Uniqueid": "vgua0-dev-1442387091.559", "ChannelStateDesc": "Down", "Channel": "SIP/126680003-00000117", "Event": "Newchannel", "Privilege": "call,all", "CallerIDNum": "", "CallerIDName": "", "AccountCode": "126680003", "ChannelState": "0"}, -{"content": "", "Variable": "SIPCALLID", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.559", "Event": "VarSet", "Value": "45ad7c4c26819c7e78e37a2a2d08c1fe@5.5.5.5:5060", "Channel": "SIP/126680003-00000117"}, -{"content": "", "Variable": "__client_id", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.559", "Event": "VarSet", "Value": "12668", "Channel": "SIP/126680003-00000117"}, -{"content": "", "Variable": "__account_id", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.559", "Event": "VarSet", "Value": "126680003", "Channel": "SIP/126680003-00000117"}, -{"content": "", "Variable": "__record_call", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.559", "Event": "VarSet", "Value": "no", "Channel": "SIP/126680003-00000117"}, -{"content": "", "Variable": "__intprefix", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.559", "Event": "VarSet", "Value": "31", "Channel": "SIP/126680003-00000117"}, -{"content": "", "Variable": "__limit_account", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.559", "Event": "VarSet", "Value": "4", "Channel": "SIP/126680003-00000117"}, -{"content": "", "Variable": "__limit_client", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.559", "Event": "VarSet", "Value": "0", "Channel": "SIP/126680003-00000117"}, -{"content": "", "Variable": "__hide_ext_cliname", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.559", "Event": "VarSet", "Value": "1", "Channel": "SIP/126680003-00000117"}, -{"content": "", "Variable": "__TRANSFER_CONTEXT", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.559", "Event": "VarSet", "Value": "osvpi_account_transfer", "Channel": "SIP/126680003-00000117"}, -{"content": "", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.559", "Event": "VarSet", "Value": "126680003/126680003/1.2.3.4", "Channel": "SIP/126680003-00000117"}, -{"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": "", "Privilege": "call,all", "CallerIDNum": "203", "Uniqueid": "vgua0-dev-1442387091.559", "CallerIDName": "", "Channel": "SIP/126680003-00000117", "Event": "NewCallerid"}, -{"content": "", "Destination": "SIP/126680003-00000117", "SubEvent": "Begin", "ConnectedLineName": "", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "Dialstring": "126680003/126680003/1.2.3.4", "UniqueID": "vgua0-dev-1442387091.558", "Event": "Dial", "DestUniqueID": "vgua0-dev-1442387091.559", "Privilege": "call,all", "CallerIDNum": "126680003", "ConnectedLineNum": "203", "CallerIDName": ""}, -{"Uniqueid": "vgua0-dev-1442387091.559", "content": "", "Privilege": "call,all", "CallerIDNum": "203", "ConnectedLineName": "", "ConnectedLineNum": "126680003", "CallerIDName": "", "ChannelStateDesc": "Ringing", "Channel": "SIP/126680003-00000117", "ChannelState": "5", "Event": "Newstate"}, -{"Uniqueid": "vgua0-dev-1442387091.557", "content": "", "Privilege": "call,all", "CallerIDNum": "203", "ConnectedLineName": "", "ConnectedLineNum": "201", "CallerIDName": "", "ChannelStateDesc": "Ringing", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;1", "ChannelState": "5", "Event": "Newstate"}, -{"Uniqueid": "vgua0-dev-1442387091.559", "content": "", "Privilege": "call,all", "CallerIDNum": "203", "ConnectedLineName": "", "ConnectedLineNum": "126680003", "CallerIDName": "", "ChannelStateDesc": "Up", "Channel": "SIP/126680003-00000117", "ChannelState": "6", "Event": "Newstate"}, -{"content": "", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "ANSWER", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "SIP/126680003-00000117", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "126680003/126680003/1.2.3.4", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "SIP/126680003-00000117", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.559", "Event": "VarSet", "Value": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "Channel": "SIP/126680003-00000117"}, -{"Uniqueid": "vgua0-dev-1442387091.557", "content": "", "Privilege": "call,all", "CallerIDNum": "203", "ConnectedLineName": "", "ConnectedLineNum": "201", "CallerIDName": "", "ChannelStateDesc": "Up", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;1", "ChannelState": "6", "Event": "Newstate"}, -{"Uniqueid": "vgua0-dev-1442387091.558", "content": "", "Privilege": "call,all", "CallerIDNum": "126680003", "ConnectedLineName": "", "ConnectedLineNum": "203", "CallerIDName": "", "ChannelStateDesc": "Up", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "ChannelState": "6", "Event": "Newstate"}, -{"content": "", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "ANSWER", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "Local/ID22@osvpi_route_phoneaccount-0000008b;1", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "ID22@osvpi_route_phoneaccount", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "Local/ID22@osvpi_route_phoneaccount-0000008b;1", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.557", "Event": "VarSet", "Value": "SIP/126680001-00000116", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;1"}, -{"Uniqueid": "vgua0-dev-1442387091.556", "content": "", "Privilege": "call,all", "CallerIDNum": "201", "ConnectedLineName": "", "ConnectedLineNum": "", "CallerIDName": "", "ChannelStateDesc": "Up", "Channel": "SIP/126680001-00000116", "ChannelState": "6", "Event": "Newstate"}, -{"content": "", "Privilege": "call,all", "OldAccountCode": "126680001", "Uniqueid": "vgua0-dev-1442387091.559", "Event": "NewAccountCode", "AccountCode": "126680001", "Channel": "SIP/126680003-00000117"}, -{"Channel1": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "content": "", "Bridgetype": "core", "Privilege": "call,all", "CallerID1": "126680003", "Event": "Bridge", "Bridgestate": "Link", "Uniqueid2": "vgua0-dev-1442387091.559", "Uniqueid1": "vgua0-dev-1442387091.558", "Channel2": "SIP/126680003-00000117", "CallerID2": "203"}, -{"content": "", "Privilege": "call,all", "OldAccountCode": "126680001", "Uniqueid": "vgua0-dev-1442387091.557", "Event": "NewAccountCode", "AccountCode": "126680001", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;1"}, -{"Channel1": "SIP/126680001-00000116", "content": "", "Bridgetype": "core", "Privilege": "call,all", "CallerID1": "201", "Event": "Bridge", "Bridgestate": "Link", "Uniqueid2": "vgua0-dev-1442387091.557", "Uniqueid1": "vgua0-dev-1442387091.556", "Channel2": "Local/ID22@osvpi_route_phoneaccount-0000008b;1", "CallerID2": "203"}, -{"content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "Local/ID22@osvpi_route_phoneaccount-0000008b;1", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "SIP/126680003-00000117", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.557", "Event": "VarSet", "Value": "SIP/126680001-00000116", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;1"}, -{"content": "", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.557", "Event": "VarSet", "Value": "dedup///1-17342@6.6.6.6", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;1"}, -{"content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "Local/ID22@osvpi_route_phoneaccount-0000008b;1", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "45ad7c4c26819c7e78e37a2a2d08c1fe@5.5.5.5:5060", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.557", "Event": "VarSet", "Value": "SIP/126680001-00000116", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;1"}, -{"content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.559", "Event": "VarSet", "Value": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "Channel": "SIP/126680003-00000117"}, -{"content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "SIP/126680003-00000117", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "45ad7c4c26819c7e78e37a2a2d08c1fe@5.5.5.5:5060", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.559", "Event": "VarSet", "Value": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "Channel": "SIP/126680003-00000117"}, -{"content": "", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.557", "Event": "VarSet", "Value": "dedup///1-17342@6.6.6.6", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;1"}, -{"content": "", "Privilege": "call,all", "Original": "Local/ID22@osvpi_route_phoneaccount-0000008b;1", "Clone": "SIP/126680003-00000117", "CloneState": "Up", "Event": "Masquerade", "OriginalState": "Up"}, -{"content": "", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1442387091.559", "Newname": "SIP/126680003-00000117", "Channel": "SIP/126680003-00000117", "Event": "Rename"}, -{"content": "", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1442387091.557", "Newname": "SIP/126680003-00000117", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;1", "Event": "Rename"}, -{"content": "", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1442387091.559", "Newname": "Local/ID22@osvpi_route_phoneaccount-0000008b;1", "Channel": "SIP/126680003-00000117", "Event": "Rename"}, -{"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": "", "Privilege": "call,all", "CallerIDNum": "203", "Uniqueid": "vgua0-dev-1442387091.557", "CallerIDName": "", "Channel": "SIP/126680003-00000117", "Event": "NewCallerid"}, -{"content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "SIP/126680003-00000117", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "45ad7c4c26819c7e78e37a2a2d08c1fe@5.5.5.5:5060", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.557", "Event": "VarSet", "Value": "SIP/126680001-00000116", "Channel": "SIP/126680003-00000117"}, -{"content": "", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.557", "Event": "VarSet", "Value": "dedup///1-17342@6.6.6.6", "Channel": "SIP/126680003-00000117"}, -{"Channel1": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "content": "", "Bridgetype": "core", "Privilege": "call,all", "CallerID1": "126680003", "Event": "Bridge", "Bridgestate": "Unlink", "Uniqueid2": "vgua0-dev-1442387091.559", "Uniqueid1": "vgua0-dev-1442387091.558", "Channel2": "Local/ID22@osvpi_route_phoneaccount-0000008b;1", "CallerID2": "203"}, -{"content": "", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "0", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "0", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"Event": "HangupRequest", "content": "", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1442387091.558"}, -{"Uniqueid": "vgua0-dev-1442387091.559", "ConnectedLineName": "", "content": "", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;1", "CallerIDName": "", "Privilege": "call,all", "CallerIDNum": "203", "ConnectedLineNum": "201", "Event": "Hangup", "AccountCode": "126680001", "Cause": "16", "Cause-txt": "Normal Clearing"}, -{"content": "", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "VarSet", "Value": "ANSWER", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "Privilege": "call,all", "SubEvent": "End", "Event": "Dial", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "DialStatus": "ANSWER", "UniqueID": "vgua0-dev-1442387091.558"}, -{"content": "", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "SoftHangupRequest", "Cause": "16", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2"}, -{"content": "", "AppData": "1?nosip", "Privilege": "dialplan,all", "Context": "handlers", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "Newexten", "Priority": "1", "Extension": "onhangup", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "Application": "GotoIf"}, -{"content": "", "AppData": "0?osvpi_proc_httptouch,s,1()", "Privilege": "dialplan,all", "Context": "handlers", "Uniqueid": "vgua0-dev-1442387091.558", "Event": "Newexten", "Priority": "3", "Extension": "onhangup", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "Application": "GosubIf"}, -{"Uniqueid": "vgua0-dev-1442387091.558", "ConnectedLineName": "", "content": "", "Channel": "Local/ID22@osvpi_route_phoneaccount-0000008b;2", "CallerIDName": "", "Privilege": "call,all", "CallerIDNum": "126680003", "ConnectedLineNum": "203", "Event": "Hangup", "AccountCode": "126680001", "Cause": "16", "Cause-txt": "Normal Clearing"}, -{"content": "", "Variable": "SIPREFERRINGCONTEXT", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.553", "Event": "VarSet", "Value": "osvpi_account", "Channel": "SIP/126680002-00000115"}, -{"content": "", "Variable": "SIPREFERREDBYHDR", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.553", "Event": "VarSet", "Value": "sip:126680001@6.6.6.6:5074", "Channel": "SIP/126680002-00000115"}, -{"TransferType": "Attended", "content": "", "TargetUniqueid": "vgua0-dev-1442387091.556", "Privilege": "call,all", "TargetChannel": "SIP/126680001-00000116", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Transfer", "Channel": "SIP/126680001-00000114", "TransferMethod": "SIP", "SIP-Callid": "1-17342@6.6.6.6"}, -{"content": "", "Privilege": "call,all", "Event": "MusicOnHold", "Channel": "SIP/126680002-00000115", "State": "Stop", "UniqueID": "vgua0-dev-1442387090.553"}, -{"content": "", "Privilege": "call,all", "Original": "SIP/126680001-00000116", "Clone": "SIP/126680002-00000115", "CloneState": "Up", "Event": "Masquerade", "OriginalState": "Up"}, -{"content": "", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1442387090.553", "Newname": "SIP/126680002-00000115", "Channel": "SIP/126680002-00000115", "Event": "Rename"}, -{"content": "", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1442387091.556", "Newname": "SIP/126680002-00000115", "Channel": "SIP/126680001-00000116", "Event": "Rename"}, -{"content": "", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1442387090.553", "Newname": "SIP/126680001-00000116", "Channel": "SIP/126680002-00000115", "Event": "Rename"}, -{"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": "", "Privilege": "call,all", "CallerIDNum": "202", "Uniqueid": "vgua0-dev-1442387091.556", "CallerIDName": "", "Channel": "SIP/126680002-00000115", "Event": "NewCallerid"}, -{"content": "", "Privilege": "call,all", "Event": "MusicOnHold", "Channel": "SIP/126680003-00000117", "State": "Stop", "UniqueID": "vgua0-dev-1442387091.557"}, -{"Channel1": "SIP/126680001-00000114", "content": "", "Bridgetype": "core", "Privilege": "call,all", "CallerID1": "201", "Event": "Bridge", "Bridgestate": "Unlink", "Uniqueid2": "vgua0-dev-1442387090.553", "Uniqueid1": "vgua0-dev-1442387090.552", "Channel2": "SIP/126680001-00000116", "CallerID2": "201"}, -{"content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "SIP/126680003-00000117", "Channel": "SIP/126680002-00000115"}, -{"content": "", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "2", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "2", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "45ad7c4c26819c7e78e37a2a2d08c1fe@5.5.5.5:5060", "Channel": "SIP/126680002-00000115"}, -{"content": "", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.557", "Event": "VarSet", "Value": "SIP/126680002-00000115", "Channel": "SIP/126680003-00000117"}, -{"content": "", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.557", "Event": "VarSet", "Value": "7e26a79d6b194b0d4161a27f28cb71ca@5.5.5.5:5060", "Channel": "SIP/126680003-00000117"}, -{"content": "", "Variable": "RTPAUDIOQOS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.553", "Event": "VarSet", "Value": "ssrc=462789673;themssrc=0;lp=0;rxjitter=0.000000;rxcount=0;txjitter=0.000000;txcount=0;rlp=0;rtt=0.000000", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "RTPAUDIOQOSJITTER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.553", "Event": "VarSet", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "RTPAUDIOQOSLOSS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.553", "Event": "VarSet", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "RTPAUDIOQOSRTT", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.553", "Event": "VarSet", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Channel": "SIP/126680001-00000116"}, -{"content": "", "Variable": "RTPAUDIOQOS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.553", "Event": "VarSet", "Value": "ssrc=462789673;themssrc=0;lp=0;rxjitter=0.000000;rxcount=0;txjitter=0.000000;txcount=0;rlp=0;rtt=0.000000", "Channel": "SIP/126680001-00000116"}, -{"Uniqueid": "vgua0-dev-1442387090.553", "ConnectedLineName": "", "content": "", "Channel": "SIP/126680001-00000116", "CallerIDName": "", "Privilege": "call,all", "CallerIDNum": "201", "ConnectedLineNum": "", "Event": "Hangup", "AccountCode": "126680001", "Cause": "16", "Cause-txt": "Normal Clearing"}, -{"content": "", "Variable": "RTPAUDIOQOS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "ssrc=924614867;themssrc=0;lp=0;rxjitter=0.000000;rxcount=0;txjitter=0.000000;txcount=0;rlp=0;rtt=0.000000", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "RTPAUDIOQOSJITTER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "RTPAUDIOQOSLOSS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Variable": "RTPAUDIOQOSRTT", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Channel": "SIP/126680001-00000114"}, -{"Event": "HangupRequest", "content": "", "Channel": "SIP/126680001-00000114", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1442387090.552"}, -{"content": "", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "VarSet", "Value": "ANSWER", "Channel": "SIP/126680001-00000114"}, -{"content": "", "Privilege": "call,all", "SubEvent": "End", "Event": "Dial", "Channel": "SIP/126680001-00000114", "DialStatus": "ANSWER", "UniqueID": "vgua0-dev-1442387090.552"}, -{"content": "", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "SoftHangupRequest", "Cause": "16", "Channel": "SIP/126680001-00000114"}, -{"content": "", "AppData": "0?nosip", "Privilege": "dialplan,all", "Context": "handlers", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "1", "Extension": "onhangup", "Channel": "SIP/126680001-00000114", "Application": "GotoIf"}, -{"content": "", "AppData": "LOG: rtpqos: caller=(null);asterisk=5.5.5.5:15728;ssrc=924614867;themssrc=0;lp=0;rxjitter=0.000000;rxcount=0;txjitter=0.000000;txcount=0;rlp=0;rtt=0.000000;billsec=0", "Privilege": "dialplan,all", "Context": "handlers", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "2", "Extension": "onhangup", "Channel": "SIP/126680001-00000114", "Application": "NoOp"}, -{"content": "", "AppData": "0?osvpi_proc_httptouch,s,1()", "Privilege": "dialplan,all", "Context": "handlers", "Uniqueid": "vgua0-dev-1442387090.552", "Event": "Newexten", "Priority": "3", "Extension": "onhangup", "Channel": "SIP/126680001-00000114", "Application": "GosubIf"}, -{"Uniqueid": "vgua0-dev-1442387090.552", "ConnectedLineName": "", "content": "", "Channel": "SIP/126680001-00000114", "CallerIDName": "", "Privilege": "call,all", "CallerIDNum": "201", "ConnectedLineNum": "", "Event": "Hangup", "AccountCode": "126680001", "Cause": "16", "Cause-txt": "Normal Clearing"}, -{"content": "", "Variable": "RTPAUDIOQOS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "ssrc=1968486643;themssrc=3390111744;lp=0;rxjitter=0.000000;rxcount=1;txjitter=0.000000;txcount=107;rlp=0;rtt=0.000000", "Channel": "SIP/126680002-00000115"}, -{"content": "", "Variable": "RTPAUDIOQOSBRIDGED", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.557", "Event": "VarSet", "Value": "ssrc=1968486643;themssrc=3390111744;lp=0;rxjitter=0.000000;rxcount=1;txjitter=0.000000;txcount=107;rlp=0;rtt=0.000000", "Channel": "SIP/126680003-00000117"}, -{"content": "", "Variable": "RTPAUDIOQOSJITTER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Channel": "SIP/126680002-00000115"}, -{"content": "", "Variable": "RTPAUDIOQOSJITTERBRIDGED", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.557", "Event": "VarSet", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Channel": "SIP/126680003-00000117"}, -{"content": "", "Variable": "RTPAUDIOQOSLOSS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Channel": "SIP/126680002-00000115"}, -{"content": "", "Variable": "RTPAUDIOQOSLOSSBRIDGED", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.557", "Event": "VarSet", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Channel": "SIP/126680003-00000117"}, -{"content": "", "Variable": "RTPAUDIOQOSRTT", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Channel": "SIP/126680002-00000115"}, -{"content": "", "Variable": "RTPAUDIOQOSRTTBRIDGED", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.557", "Event": "VarSet", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Channel": "SIP/126680003-00000117"}, -{"content": "", "Variable": "RTPAUDIOQOS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.557", "Event": "VarSet", "Value": "ssrc=480391288;themssrc=3390111744;lp=0;rxjitter=0.000000;rxcount=1;txjitter=0.000000;txcount=0;rlp=0;rtt=0.000000", "Channel": "SIP/126680003-00000117"}, -{"content": "", "Variable": "RTPAUDIOQOSBRIDGED", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "ssrc=480391288;themssrc=3390111744;lp=0;rxjitter=0.000000;rxcount=1;txjitter=0.000000;txcount=0;rlp=0;rtt=0.000000", "Channel": "SIP/126680002-00000115"}, -{"content": "", "Variable": "RTPAUDIOQOSJITTER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.557", "Event": "VarSet", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Channel": "SIP/126680003-00000117"}, -{"content": "", "Variable": "RTPAUDIOQOSJITTERBRIDGED", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Channel": "SIP/126680002-00000115"}, -{"content": "", "Variable": "RTPAUDIOQOSLOSS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.557", "Event": "VarSet", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Channel": "SIP/126680003-00000117"}, -{"content": "", "Variable": "RTPAUDIOQOSLOSSBRIDGED", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Channel": "SIP/126680002-00000115"}, -{"content": "", "Variable": "RTPAUDIOQOSRTT", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.557", "Event": "VarSet", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Channel": "SIP/126680003-00000117"}, -{"content": "", "Variable": "RTPAUDIOQOSRTTBRIDGED", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Channel": "SIP/126680002-00000115"}, -{"Event": "HangupRequest", "content": "", "Channel": "SIP/126680002-00000115", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1442387091.556"}, -{"Channel1": "SIP/126680002-00000115", "content": "", "Bridgetype": "core", "Privilege": "call,all", "CallerID1": "202", "Event": "Bridge", "Bridgestate": "Unlink", "Uniqueid2": "vgua0-dev-1442387091.557", "Uniqueid1": "vgua0-dev-1442387091.556", "Channel2": "SIP/126680003-00000117", "CallerID2": "203"}, -{"content": "", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "4", "Channel": "SIP/126680002-00000115"}, -{"content": "", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "4", "Channel": "SIP/126680002-00000115"}, -{"content": "", "Variable": "RTPAUDIOQOS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.557", "Event": "VarSet", "Value": "ssrc=480391288;themssrc=3390111744;lp=0;rxjitter=0.000000;rxcount=1;txjitter=0.000000;txcount=0;rlp=0;rtt=0.000000", "Channel": "SIP/126680003-00000117"}, -{"content": "", "Variable": "RTPAUDIOQOSJITTER", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.557", "Event": "VarSet", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Channel": "SIP/126680003-00000117"}, -{"content": "", "Variable": "RTPAUDIOQOSLOSS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.557", "Event": "VarSet", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Channel": "SIP/126680003-00000117"}, -{"content": "", "Variable": "RTPAUDIOQOSRTT", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.557", "Event": "VarSet", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Channel": "SIP/126680003-00000117"}, -{"content": "", "Variable": "RTPAUDIOQOS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.557", "Event": "VarSet", "Value": "ssrc=480391288;themssrc=3390111744;lp=0;rxjitter=0.000000;rxcount=1;txjitter=0.000000;txcount=0;rlp=0;rtt=0.000000", "Channel": "SIP/126680003-00000117"}, -{"Uniqueid": "vgua0-dev-1442387091.557", "ConnectedLineName": "", "content": "", "Channel": "SIP/126680003-00000117", "CallerIDName": "", "Privilege": "call,all", "CallerIDNum": "203", "ConnectedLineNum": "", "Event": "Hangup", "AccountCode": "126680001", "Cause": "16", "Cause-txt": "Normal Clearing"}, -{"content": "", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "VarSet", "Value": "ANSWER", "Channel": "SIP/126680002-00000115"}, -{"content": "", "Privilege": "call,all", "SubEvent": "End", "Event": "Dial", "Channel": "SIP/126680002-00000115", "DialStatus": "ANSWER", "UniqueID": "vgua0-dev-1442387091.556"}, -{"content": "", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "SoftHangupRequest", "Cause": "16", "Channel": "SIP/126680002-00000115"}, -{"content": "", "AppData": "0?nosip", "Privilege": "dialplan,all", "Context": "handlers", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "1", "Extension": "onhangup", "Channel": "SIP/126680002-00000115", "Application": "GotoIf"}, -{"content": "", "AppData": "LOG: rtpqos: caller=(null);asterisk=5.5.5.5:14558;ssrc=1968486643;themssrc=3390111744;lp=0;rxjitter=0.000000;rxcount=1;txjitter=0.000000;txcount=107;rlp=0;rtt=0.000000;billsec=0", "Privilege": "dialplan,all", "Context": "handlers", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "2", "Extension": "onhangup", "Channel": "SIP/126680002-00000115", "Application": "NoOp"}, -{"content": "", "AppData": "0?osvpi_proc_httptouch,s,1()", "Privilege": "dialplan,all", "Context": "handlers", "Uniqueid": "vgua0-dev-1442387091.556", "Event": "Newexten", "Priority": "3", "Extension": "onhangup", "Channel": "SIP/126680002-00000115", "Application": "GosubIf"}, -{"Uniqueid": "vgua0-dev-1442387091.556", "ConnectedLineName": "", "content": "", "Channel": "SIP/126680002-00000115", "CallerIDName": "", "Privilege": "call,all", "CallerIDNum": "202", "ConnectedLineNum": "", "Event": "Hangup", "AccountCode": "126680001", "Cause": "16", "Cause-txt": "Normal Clearing"} + { + "Event": "FullyBooted", + "Privilege": "system,all", + "Status": "Fully Booted", + "content": "" + }, + { + "Event": "FullyBooted", + "Privilege": "system,all", + "Status": "Fully Booted", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "Local Alice", + "CallerIDNum": "150010001", + "Channel": "SIP/150010001-00000028", + "ChannelState": "0", + "ChannelStateDesc": "Down", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "osvpi_account", + "Event": "Newchannel", + "Exten": "202", + "Language": "en", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941216.590", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "Local Alice", + "CallerIDNum": "150010001", + "Channel": "SIP/150010001-00000028", + "ChannelState": "4", + "ChannelStateDesc": "Ring", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "osvpi_account", + "Event": "Newstate", + "Exten": "202", + "Language": "nl", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941216.590", + "content": "" + }, + { + "AccountCode": "150010001", + "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "150010001", + "Channel": "SIP/150010001-00000028", + "ChannelState": "4", + "ChannelStateDesc": "Ring", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "osvpi_proc_set_callerid", + "Event": "NewCallerid", + "Exten": "202", + "Language": "nl", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "5", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941216.590", + "content": "" + }, + { + "AccountCode": "150010001", + "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "SIP/150010001-00000028", + "ChannelState": "4", + "ChannelStateDesc": "Ring", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "osvpi_proc_set_callerid", + "Event": "NewCallerid", + "Exten": "202", + "Language": "nl", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "6", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941216.590", + "content": "" + }, + { + "AccountCode": "", + "CallerIDName": "", + "CallerIDNum": "", + "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000017;1", + "ChannelState": "0", + "ChannelStateDesc": "Down", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "osvpi_route_phoneaccount", + "Event": "Newchannel", + "Exten": "ID730151", + "Language": "en", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941216.593", + "content": "" + }, + { + "AccountCode": "", + "CallerIDName": "", + "CallerIDNum": "", + "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000017;2", + "ChannelState": "4", + "ChannelStateDesc": "Ring", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "osvpi_route_phoneaccount", + "Event": "Newchannel", + "Exten": "ID730151", + "Language": "en", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941216.595", + "content": "" + }, + { + "AccountCode": "150010001", + "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", + "CallerIDName": "", + "CallerIDNum": "202", + "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000017;1", + "ChannelState": "0", + "ChannelStateDesc": "Down", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_route_phoneaccount", + "Event": "NewCallerid", + "Exten": "202", + "Language": "en", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941216.593", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "", + "CallerIDNum": "202", + "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000017;1", + "ChannelState": "0", + "ChannelStateDesc": "Down", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_route_phoneaccount", + "Event": "NewAccountCode", + "Exten": "202", + "Language": "en", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941216.593", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "", + "CallerIDNum": "202", + "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000017;1", + "ChannelState": "0", + "ChannelStateDesc": "Down", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_route_phoneaccount", + "Event": "NewConnectedLine", + "Exten": "202", + "Language": "en", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941216.593", + "content": "" + }, + { + "AccountCode": "150010001", + "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000017;2", + "ChannelState": "4", + "ChannelStateDesc": "Ring", + "ConnectedLineName": "", + "ConnectedLineNum": "202", + "Context": "osvpi_route_phoneaccount", + "Event": "NewCallerid", + "Exten": "ID730151", + "Language": "en", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941216.595", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000017;2", + "ChannelState": "4", + "ChannelStateDesc": "Ring", + "ConnectedLineName": "", + "ConnectedLineNum": "202", + "Context": "osvpi_route_phoneaccount", + "Event": "NewAccountCode", + "Exten": "ID730151", + "Language": "en", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941216.595", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000017;2", + "ChannelState": "4", + "ChannelStateDesc": "Ring", + "ConnectedLineName": "", + "ConnectedLineNum": "202", + "Context": "osvpi_route_phoneaccount", + "Event": "NewConnectedLine", + "Exten": "ID730151", + "Language": "en", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941216.595", + "content": "" + }, + { + "Context": "osvpi_route_phoneaccount", + "Event": "LocalBridge", + "Exten": "ID730151", + "LocalOneAccountCode": "150010001", + "LocalOneCallerIDName": "", + "LocalOneCallerIDNum": "202", + "LocalOneChannel": "Local/ID730151@osvpi_route_phoneaccount-00000017;1", + "LocalOneChannelState": "0", + "LocalOneChannelStateDesc": "Down", + "LocalOneConnectedLineName": "Andrew Garza", + "LocalOneConnectedLineNum": "201", + "LocalOneContext": "osvpi_route_phoneaccount", + "LocalOneExten": "202", + "LocalOneLanguage": "en", + "LocalOneLinkedid": "195176c06ab8-1529941216.590", + "LocalOnePriority": "1", + "LocalOneUniqueid": "195176c06ab8-1529941216.593", + "LocalOptimization": "Yes", + "LocalTwoAccountCode": "150010001", + "LocalTwoCallerIDName": "Andrew Garza", + "LocalTwoCallerIDNum": "201", + "LocalTwoChannel": "Local/ID730151@osvpi_route_phoneaccount-00000017;2", + "LocalTwoChannelState": "4", + "LocalTwoChannelStateDesc": "Ring", + "LocalTwoConnectedLineName": "", + "LocalTwoConnectedLineNum": "202", + "LocalTwoContext": "osvpi_route_phoneaccount", + "LocalTwoExten": "ID730151", + "LocalTwoLanguage": "en", + "LocalTwoLinkedid": "195176c06ab8-1529941216.590", + "LocalTwoPriority": "1", + "LocalTwoUniqueid": "195176c06ab8-1529941216.595", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "SIP/150010001-00000028", + "ChannelState": "4", + "ChannelStateDesc": "Ring", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "osvpi_account_call_int", + "DestAccountCode": "150010001", + "DestCallerIDName": "", + "DestCallerIDNum": "202", + "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-00000017;1", + "DestChannelState": "0", + "DestChannelStateDesc": "Down", + "DestConnectedLineName": "Andrew Garza", + "DestConnectedLineNum": "201", + "DestContext": "osvpi_route_phoneaccount", + "DestExten": "202", + "DestLanguage": "en", + "DestLinkedid": "195176c06ab8-1529941216.590", + "DestPriority": "1", + "DestUniqueid": "195176c06ab8-1529941216.593", + "DialString": "ID730151@osvpi_route_phoneaccount", + "Event": "DialBegin", + "Exten": "202", + "Language": "nl", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "12", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941216.590", + "content": "" + }, + { + "AccountCode": "150010002", + "CallerIDName": "", + "CallerIDNum": "", + "Channel": "SIP/150010002-00000029", + "ChannelState": "0", + "ChannelStateDesc": "Down", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "osvpi_account", + "Event": "Newchannel", + "Exten": "s", + "Language": "en", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941216.598", + "content": "" + }, + { + "AccountCode": "150010001", + "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", + "CallerIDName": "", + "CallerIDNum": "202", + "Channel": "SIP/150010002-00000029", + "ChannelState": "0", + "ChannelStateDesc": "Down", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_account", + "Event": "NewCallerid", + "Exten": "202", + "Language": "nl", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941216.598", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "", + "CallerIDNum": "202", + "Channel": "SIP/150010002-00000029", + "ChannelState": "0", + "ChannelStateDesc": "Down", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_account", + "Event": "NewAccountCode", + "Exten": "202", + "Language": "nl", + "Linkedid": "195176c06ab8-1529941216.590", + "OldAccountCode": "150010002", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941216.598", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "", + "CallerIDNum": "202", + "Channel": "SIP/150010002-00000029", + "ChannelState": "0", + "ChannelStateDesc": "Down", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_account", + "Event": "NewConnectedLine", + "Exten": "202", + "Language": "nl", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941216.598", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000017;2", + "ChannelState": "4", + "ChannelStateDesc": "Ring", + "ConnectedLineName": "", + "ConnectedLineNum": "202", + "Context": "osvpi_proc_proxy_out", + "DestAccountCode": "150010001", + "DestCallerIDName": "", + "DestCallerIDNum": "202", + "DestChannel": "SIP/150010002-00000029", + "DestChannelState": "0", + "DestChannelStateDesc": "Down", + "DestConnectedLineName": "Andrew Garza", + "DestConnectedLineNum": "201", + "DestContext": "osvpi_account", + "DestExten": "202", + "DestLanguage": "nl", + "DestLinkedid": "195176c06ab8-1529941216.590", + "DestPriority": "1", + "DestUniqueid": "195176c06ab8-1529941216.598", + "DialString": "150010002/150010002/172.20.0.13!!201", + "Event": "DialBegin", + "Exten": "202", + "Language": "en", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "8", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941216.595", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "", + "CallerIDNum": "202", + "Channel": "SIP/150010002-00000029", + "ChannelState": "5", + "ChannelStateDesc": "Ringing", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_account", + "Event": "Newstate", + "Exten": "202", + "Language": "nl", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941216.598", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "", + "CallerIDNum": "202", + "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000017;1", + "ChannelState": "5", + "ChannelStateDesc": "Ringing", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_route_phoneaccount", + "Event": "Newstate", + "Exten": "202", + "Language": "en", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941216.593", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "", + "CallerIDNum": "202", + "Channel": "SIP/150010002-00000029", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_account", + "Event": "Newstate", + "Exten": "202", + "Language": "nl", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941216.598", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000017;2", + "ChannelState": "4", + "ChannelStateDesc": "Ring", + "ConnectedLineName": "", + "ConnectedLineNum": "202", + "Context": "osvpi_proc_proxy_out", + "DestAccountCode": "150010001", + "DestCallerIDName": "", + "DestCallerIDNum": "202", + "DestChannel": "SIP/150010002-00000029", + "DestChannelState": "6", + "DestChannelStateDesc": "Up", + "DestConnectedLineName": "Andrew Garza", + "DestConnectedLineNum": "201", + "DestContext": "osvpi_account", + "DestExten": "", + "DestLanguage": "nl", + "DestLinkedid": "195176c06ab8-1529941216.590", + "DestPriority": "1", + "DestUniqueid": "195176c06ab8-1529941216.598", + "DialStatus": "ANSWER", + "Event": "DialEnd", + "Exten": "202", + "Language": "en", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "8", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941216.595", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000017;2", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "", + "ConnectedLineNum": "202", + "Context": "osvpi_proc_proxy_out", + "Event": "Newstate", + "Exten": "202", + "Language": "en", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "8", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941216.595", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "", + "CallerIDNum": "202", + "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000017;1", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_route_phoneaccount", + "Event": "Newstate", + "Exten": "202", + "Language": "en", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941216.593", + "content": "" + }, + { + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "0", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "04f60dd3-e9d4-41e4-98fe-4ab47aa300d8", + "BridgeVideoSourceMode": "none", + "Event": "BridgeCreate", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "SIP/150010001-00000028", + "ChannelState": "4", + "ChannelStateDesc": "Ring", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "osvpi_account_call_int", + "DestAccountCode": "150010001", + "DestCallerIDName": "", + "DestCallerIDNum": "202", + "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-00000017;1", + "DestChannelState": "6", + "DestChannelStateDesc": "Up", + "DestConnectedLineName": "Andrew Garza", + "DestConnectedLineNum": "201", + "DestContext": "osvpi_route_phoneaccount", + "DestExten": "", + "DestLanguage": "en", + "DestLinkedid": "195176c06ab8-1529941216.590", + "DestPriority": "1", + "DestUniqueid": "195176c06ab8-1529941216.593", + "DialStatus": "ANSWER", + "Event": "DialEnd", + "Exten": "202", + "Language": "nl", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "12", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941216.590", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "SIP/150010001-00000028", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "osvpi_account_call_int", + "Event": "Newstate", + "Exten": "202", + "Language": "nl", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "12", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941216.590", + "content": "" + }, + { + "AccountCode": "150010001", + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "1", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "04f60dd3-e9d4-41e4-98fe-4ab47aa300d8", + "BridgeVideoSourceMode": "none", + "CallerIDName": "", + "CallerIDNum": "202", + "Channel": "SIP/150010002-00000029", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_account", + "Event": "BridgeEnter", + "Exten": "", + "Language": "nl", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941216.598", + "content": "" + }, + { + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "0", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "39554770-e22e-49a7-856e-0617f900be3f", + "BridgeVideoSourceMode": "none", + "Event": "BridgeCreate", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "content": "" + }, + { + "AccountCode": "150010001", + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "2", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "04f60dd3-e9d4-41e4-98fe-4ab47aa300d8", + "BridgeVideoSourceMode": "none", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000017;2", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "", + "ConnectedLineNum": "202", + "Context": "osvpi_proc_proxy_out", + "Event": "BridgeEnter", + "Exten": "202", + "Language": "en", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "8", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941216.595", + "content": "" + }, + { + "AccountCode": "150010001", + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "1", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "39554770-e22e-49a7-856e-0617f900be3f", + "BridgeVideoSourceMode": "none", + "CallerIDName": "", + "CallerIDNum": "202", + "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000017;1", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_route_phoneaccount", + "Event": "BridgeEnter", + "Exten": "", + "Language": "en", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941216.593", + "content": "" + }, + { + "AccountCode": "150010001", + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "2", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "39554770-e22e-49a7-856e-0617f900be3f", + "BridgeVideoSourceMode": "none", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "SIP/150010001-00000028", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "osvpi_account_call_int", + "Event": "BridgeEnter", + "Exten": "202", + "Language": "nl", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "12", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941216.590", + "content": "" + }, + { + "AccountCode": "150010001", + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "1", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "39554770-e22e-49a7-856e-0617f900be3f", + "BridgeVideoSourceMode": "none", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "SIP/150010001-00000028", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "osvpi_account_call_int", + "Event": "BridgeLeave", + "Exten": "202", + "Language": "nl", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "12", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941216.590", + "content": "" + }, + { + "AccountCode": "150010001", + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "1", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "04f60dd3-e9d4-41e4-98fe-4ab47aa300d8", + "BridgeVideoSourceMode": "none", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000017;2", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "", + "ConnectedLineNum": "202", + "Context": "osvpi_proc_proxy_out", + "Event": "BridgeLeave", + "Exten": "202", + "Language": "en", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "8", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941216.595", + "content": "" + }, + { + "AccountCode": "150010001", + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "2", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "04f60dd3-e9d4-41e4-98fe-4ab47aa300d8", + "BridgeVideoSourceMode": "none", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "SIP/150010001-00000028", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "osvpi_account_call_int", + "Event": "BridgeEnter", + "Exten": "202", + "Language": "nl", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "12", + "Privilege": "call,all", + "SwapUniqueid": "195176c06ab8-1529941216.595", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941216.590", + "content": "" + }, + { + "AccountCode": "150010001", + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "0", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "39554770-e22e-49a7-856e-0617f900be3f", + "BridgeVideoSourceMode": "none", + "CallerIDName": "", + "CallerIDNum": "202", + "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000017;1", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_route_phoneaccount", + "Event": "BridgeLeave", + "Exten": "", + "Language": "en", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941216.593", + "content": "" + }, + { + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "0", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "39554770-e22e-49a7-856e-0617f900be3f", + "BridgeVideoSourceMode": "none", + "Event": "BridgeDestroy", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Cause": "16", + "Cause-txt": "Normal Clearing", + "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000017;2", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "", + "ConnectedLineNum": "202", + "Context": "handlers", + "Event": "Hangup", + "Exten": "onhangup", + "Language": "en", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "4", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941216.595", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "", + "CallerIDNum": "202", + "Cause": "16", + "Cause-txt": "Normal Clearing", + "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000017;1", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_route_phoneaccount", + "Event": "Hangup", + "Exten": "", + "Language": "en", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941216.593", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "Local Alice", + "CallerIDNum": "150010001", + "Channel": "SIP/150010001-0000002a", + "ChannelState": "0", + "ChannelStateDesc": "Down", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "osvpi_account", + "Event": "Newchannel", + "Exten": "203", + "Language": "en", + "Linkedid": "195176c06ab8-1529941225.617", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941225.617", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "Local Alice", + "CallerIDNum": "150010001", + "Channel": "SIP/150010001-0000002a", + "ChannelState": "4", + "ChannelStateDesc": "Ring", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "osvpi_account", + "Event": "Newstate", + "Exten": "203", + "Language": "nl", + "Linkedid": "195176c06ab8-1529941225.617", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941225.617", + "content": "" + }, + { + "AccountCode": "150010001", + "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "150010001", + "Channel": "SIP/150010001-0000002a", + "ChannelState": "4", + "ChannelStateDesc": "Ring", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "osvpi_proc_set_callerid", + "Event": "NewCallerid", + "Exten": "203", + "Language": "nl", + "Linkedid": "195176c06ab8-1529941225.617", + "Priority": "5", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941225.617", + "content": "" + }, + { + "AccountCode": "150010001", + "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "SIP/150010001-0000002a", + "ChannelState": "4", + "ChannelStateDesc": "Ring", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "osvpi_proc_set_callerid", + "Event": "NewCallerid", + "Exten": "203", + "Language": "nl", + "Linkedid": "195176c06ab8-1529941225.617", + "Priority": "6", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941225.617", + "content": "" + }, + { + "AccountCode": "", + "CallerIDName": "", + "CallerIDNum": "", + "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000018;1", + "ChannelState": "0", + "ChannelStateDesc": "Down", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "osvpi_route_phoneaccount", + "Event": "Newchannel", + "Exten": "ID730152", + "Language": "en", + "Linkedid": "195176c06ab8-1529941225.617", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941225.620", + "content": "" + }, + { + "AccountCode": "", + "CallerIDName": "", + "CallerIDNum": "", + "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000018;2", + "ChannelState": "4", + "ChannelStateDesc": "Ring", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "osvpi_route_phoneaccount", + "Event": "Newchannel", + "Exten": "ID730152", + "Language": "en", + "Linkedid": "195176c06ab8-1529941225.617", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941225.622", + "content": "" + }, + { + "AccountCode": "150010001", + "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", + "CallerIDName": "", + "CallerIDNum": "203", + "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000018;1", + "ChannelState": "0", + "ChannelStateDesc": "Down", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_route_phoneaccount", + "Event": "NewCallerid", + "Exten": "203", + "Language": "en", + "Linkedid": "195176c06ab8-1529941225.617", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941225.620", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "", + "CallerIDNum": "203", + "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000018;1", + "ChannelState": "0", + "ChannelStateDesc": "Down", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_route_phoneaccount", + "Event": "NewAccountCode", + "Exten": "203", + "Language": "en", + "Linkedid": "195176c06ab8-1529941225.617", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941225.620", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "", + "CallerIDNum": "203", + "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000018;1", + "ChannelState": "0", + "ChannelStateDesc": "Down", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_route_phoneaccount", + "Event": "NewConnectedLine", + "Exten": "203", + "Language": "en", + "Linkedid": "195176c06ab8-1529941225.617", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941225.620", + "content": "" + }, + { + "AccountCode": "150010001", + "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000018;2", + "ChannelState": "4", + "ChannelStateDesc": "Ring", + "ConnectedLineName": "", + "ConnectedLineNum": "203", + "Context": "osvpi_route_phoneaccount", + "Event": "NewCallerid", + "Exten": "ID730152", + "Language": "en", + "Linkedid": "195176c06ab8-1529941225.617", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941225.622", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000018;2", + "ChannelState": "4", + "ChannelStateDesc": "Ring", + "ConnectedLineName": "", + "ConnectedLineNum": "203", + "Context": "osvpi_route_phoneaccount", + "Event": "NewAccountCode", + "Exten": "ID730152", + "Language": "en", + "Linkedid": "195176c06ab8-1529941225.617", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941225.622", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000018;2", + "ChannelState": "4", + "ChannelStateDesc": "Ring", + "ConnectedLineName": "", + "ConnectedLineNum": "203", + "Context": "osvpi_route_phoneaccount", + "Event": "NewConnectedLine", + "Exten": "ID730152", + "Language": "en", + "Linkedid": "195176c06ab8-1529941225.617", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941225.622", + "content": "" + }, + { + "Context": "osvpi_route_phoneaccount", + "Event": "LocalBridge", + "Exten": "ID730152", + "LocalOneAccountCode": "150010001", + "LocalOneCallerIDName": "", + "LocalOneCallerIDNum": "203", + "LocalOneChannel": "Local/ID730152@osvpi_route_phoneaccount-00000018;1", + "LocalOneChannelState": "0", + "LocalOneChannelStateDesc": "Down", + "LocalOneConnectedLineName": "Andrew Garza", + "LocalOneConnectedLineNum": "201", + "LocalOneContext": "osvpi_route_phoneaccount", + "LocalOneExten": "203", + "LocalOneLanguage": "en", + "LocalOneLinkedid": "195176c06ab8-1529941225.617", + "LocalOnePriority": "1", + "LocalOneUniqueid": "195176c06ab8-1529941225.620", + "LocalOptimization": "Yes", + "LocalTwoAccountCode": "150010001", + "LocalTwoCallerIDName": "Andrew Garza", + "LocalTwoCallerIDNum": "201", + "LocalTwoChannel": "Local/ID730152@osvpi_route_phoneaccount-00000018;2", + "LocalTwoChannelState": "4", + "LocalTwoChannelStateDesc": "Ring", + "LocalTwoConnectedLineName": "", + "LocalTwoConnectedLineNum": "203", + "LocalTwoContext": "osvpi_route_phoneaccount", + "LocalTwoExten": "ID730152", + "LocalTwoLanguage": "en", + "LocalTwoLinkedid": "195176c06ab8-1529941225.617", + "LocalTwoPriority": "1", + "LocalTwoUniqueid": "195176c06ab8-1529941225.622", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "SIP/150010001-0000002a", + "ChannelState": "4", + "ChannelStateDesc": "Ring", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "osvpi_account_call_int", + "DestAccountCode": "150010001", + "DestCallerIDName": "", + "DestCallerIDNum": "203", + "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-00000018;1", + "DestChannelState": "0", + "DestChannelStateDesc": "Down", + "DestConnectedLineName": "Andrew Garza", + "DestConnectedLineNum": "201", + "DestContext": "osvpi_route_phoneaccount", + "DestExten": "203", + "DestLanguage": "en", + "DestLinkedid": "195176c06ab8-1529941225.617", + "DestPriority": "1", + "DestUniqueid": "195176c06ab8-1529941225.620", + "DialString": "ID730152@osvpi_route_phoneaccount", + "Event": "DialBegin", + "Exten": "203", + "Language": "nl", + "Linkedid": "195176c06ab8-1529941225.617", + "Priority": "12", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941225.617", + "content": "" + }, + { + "AccountCode": "150010003", + "CallerIDName": "", + "CallerIDNum": "", + "Channel": "SIP/150010003-0000002b", + "ChannelState": "0", + "ChannelStateDesc": "Down", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "osvpi_account", + "Event": "Newchannel", + "Exten": "s", + "Language": "en", + "Linkedid": "195176c06ab8-1529941225.617", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941225.625", + "content": "" + }, + { + "AccountCode": "150010001", + "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", + "CallerIDName": "", + "CallerIDNum": "203", + "Channel": "SIP/150010003-0000002b", + "ChannelState": "0", + "ChannelStateDesc": "Down", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_account", + "Event": "NewCallerid", + "Exten": "203", + "Language": "nl", + "Linkedid": "195176c06ab8-1529941225.617", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941225.625", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "", + "CallerIDNum": "203", + "Channel": "SIP/150010003-0000002b", + "ChannelState": "0", + "ChannelStateDesc": "Down", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_account", + "Event": "NewAccountCode", + "Exten": "203", + "Language": "nl", + "Linkedid": "195176c06ab8-1529941225.617", + "OldAccountCode": "150010003", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941225.625", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "", + "CallerIDNum": "203", + "Channel": "SIP/150010003-0000002b", + "ChannelState": "0", + "ChannelStateDesc": "Down", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_account", + "Event": "NewConnectedLine", + "Exten": "203", + "Language": "nl", + "Linkedid": "195176c06ab8-1529941225.617", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941225.625", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000018;2", + "ChannelState": "4", + "ChannelStateDesc": "Ring", + "ConnectedLineName": "", + "ConnectedLineNum": "203", + "Context": "osvpi_proc_proxy_out", + "DestAccountCode": "150010001", + "DestCallerIDName": "", + "DestCallerIDNum": "203", + "DestChannel": "SIP/150010003-0000002b", + "DestChannelState": "0", + "DestChannelStateDesc": "Down", + "DestConnectedLineName": "Andrew Garza", + "DestConnectedLineNum": "201", + "DestContext": "osvpi_account", + "DestExten": "203", + "DestLanguage": "nl", + "DestLinkedid": "195176c06ab8-1529941225.617", + "DestPriority": "1", + "DestUniqueid": "195176c06ab8-1529941225.625", + "DialString": "150010003/150010003/172.20.0.13!!201", + "Event": "DialBegin", + "Exten": "203", + "Language": "en", + "Linkedid": "195176c06ab8-1529941225.617", + "Priority": "8", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941225.622", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "", + "CallerIDNum": "203", + "Channel": "SIP/150010003-0000002b", + "ChannelState": "5", + "ChannelStateDesc": "Ringing", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_account", + "Event": "Newstate", + "Exten": "203", + "Language": "nl", + "Linkedid": "195176c06ab8-1529941225.617", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941225.625", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "", + "CallerIDNum": "203", + "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000018;1", + "ChannelState": "5", + "ChannelStateDesc": "Ringing", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_route_phoneaccount", + "Event": "Newstate", + "Exten": "203", + "Language": "en", + "Linkedid": "195176c06ab8-1529941225.617", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941225.620", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "", + "CallerIDNum": "203", + "Channel": "SIP/150010003-0000002b", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_account", + "Event": "Newstate", + "Exten": "203", + "Language": "nl", + "Linkedid": "195176c06ab8-1529941225.617", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941225.625", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000018;2", + "ChannelState": "4", + "ChannelStateDesc": "Ring", + "ConnectedLineName": "", + "ConnectedLineNum": "203", + "Context": "osvpi_proc_proxy_out", + "DestAccountCode": "150010001", + "DestCallerIDName": "", + "DestCallerIDNum": "203", + "DestChannel": "SIP/150010003-0000002b", + "DestChannelState": "6", + "DestChannelStateDesc": "Up", + "DestConnectedLineName": "Andrew Garza", + "DestConnectedLineNum": "201", + "DestContext": "osvpi_account", + "DestExten": "", + "DestLanguage": "nl", + "DestLinkedid": "195176c06ab8-1529941225.617", + "DestPriority": "1", + "DestUniqueid": "195176c06ab8-1529941225.625", + "DialStatus": "ANSWER", + "Event": "DialEnd", + "Exten": "203", + "Language": "en", + "Linkedid": "195176c06ab8-1529941225.617", + "Priority": "8", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941225.622", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000018;2", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "", + "ConnectedLineNum": "203", + "Context": "osvpi_proc_proxy_out", + "Event": "Newstate", + "Exten": "203", + "Language": "en", + "Linkedid": "195176c06ab8-1529941225.617", + "Priority": "8", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941225.622", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "", + "CallerIDNum": "203", + "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000018;1", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_route_phoneaccount", + "Event": "Newstate", + "Exten": "203", + "Language": "en", + "Linkedid": "195176c06ab8-1529941225.617", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941225.620", + "content": "" + }, + { + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "0", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "712d2860-799a-4762-9ff2-814e68fc4529", + "BridgeVideoSourceMode": "none", + "Event": "BridgeCreate", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "SIP/150010001-0000002a", + "ChannelState": "4", + "ChannelStateDesc": "Ring", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "osvpi_account_call_int", + "DestAccountCode": "150010001", + "DestCallerIDName": "", + "DestCallerIDNum": "203", + "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-00000018;1", + "DestChannelState": "6", + "DestChannelStateDesc": "Up", + "DestConnectedLineName": "Andrew Garza", + "DestConnectedLineNum": "201", + "DestContext": "osvpi_route_phoneaccount", + "DestExten": "", + "DestLanguage": "en", + "DestLinkedid": "195176c06ab8-1529941225.617", + "DestPriority": "1", + "DestUniqueid": "195176c06ab8-1529941225.620", + "DialStatus": "ANSWER", + "Event": "DialEnd", + "Exten": "203", + "Language": "nl", + "Linkedid": "195176c06ab8-1529941225.617", + "Priority": "12", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941225.617", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "SIP/150010001-0000002a", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "osvpi_account_call_int", + "Event": "Newstate", + "Exten": "203", + "Language": "nl", + "Linkedid": "195176c06ab8-1529941225.617", + "Priority": "12", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941225.617", + "content": "" + }, + { + "AccountCode": "150010001", + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "1", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "712d2860-799a-4762-9ff2-814e68fc4529", + "BridgeVideoSourceMode": "none", + "CallerIDName": "", + "CallerIDNum": "203", + "Channel": "SIP/150010003-0000002b", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_account", + "Event": "BridgeEnter", + "Exten": "", + "Language": "nl", + "Linkedid": "195176c06ab8-1529941225.617", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941225.625", + "content": "" + }, + { + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "0", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "33b7e38c-c7b8-418e-a730-7064c8d34f46", + "BridgeVideoSourceMode": "none", + "Event": "BridgeCreate", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "content": "" + }, + { + "AccountCode": "150010001", + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "2", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "712d2860-799a-4762-9ff2-814e68fc4529", + "BridgeVideoSourceMode": "none", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000018;2", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "", + "ConnectedLineNum": "203", + "Context": "osvpi_proc_proxy_out", + "Event": "BridgeEnter", + "Exten": "203", + "Language": "en", + "Linkedid": "195176c06ab8-1529941225.617", + "Priority": "8", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941225.622", + "content": "" + }, + { + "AccountCode": "150010001", + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "1", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "33b7e38c-c7b8-418e-a730-7064c8d34f46", + "BridgeVideoSourceMode": "none", + "CallerIDName": "", + "CallerIDNum": "203", + "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000018;1", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_route_phoneaccount", + "Event": "BridgeEnter", + "Exten": "", + "Language": "en", + "Linkedid": "195176c06ab8-1529941225.617", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941225.620", + "content": "" + }, + { + "AccountCode": "150010001", + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "2", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "33b7e38c-c7b8-418e-a730-7064c8d34f46", + "BridgeVideoSourceMode": "none", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "SIP/150010001-0000002a", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "osvpi_account_call_int", + "Event": "BridgeEnter", + "Exten": "203", + "Language": "nl", + "Linkedid": "195176c06ab8-1529941225.617", + "Priority": "12", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941225.617", + "content": "" + }, + { + "AccountCode": "150010001", + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "1", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "33b7e38c-c7b8-418e-a730-7064c8d34f46", + "BridgeVideoSourceMode": "none", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "SIP/150010001-0000002a", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "osvpi_account_call_int", + "Event": "BridgeLeave", + "Exten": "203", + "Language": "nl", + "Linkedid": "195176c06ab8-1529941225.617", + "Priority": "12", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941225.617", + "content": "" + }, + { + "AccountCode": "150010001", + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "1", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "712d2860-799a-4762-9ff2-814e68fc4529", + "BridgeVideoSourceMode": "none", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000018;2", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "", + "ConnectedLineNum": "203", + "Context": "osvpi_proc_proxy_out", + "Event": "BridgeLeave", + "Exten": "203", + "Language": "en", + "Linkedid": "195176c06ab8-1529941225.617", + "Priority": "8", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941225.622", + "content": "" + }, + { + "AccountCode": "150010001", + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "2", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "712d2860-799a-4762-9ff2-814e68fc4529", + "BridgeVideoSourceMode": "none", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "SIP/150010001-0000002a", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "osvpi_account_call_int", + "Event": "BridgeEnter", + "Exten": "203", + "Language": "nl", + "Linkedid": "195176c06ab8-1529941225.617", + "Priority": "12", + "Privilege": "call,all", + "SwapUniqueid": "195176c06ab8-1529941225.622", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941225.617", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Cause": "16", + "Cause-txt": "Normal Clearing", + "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000018;2", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "", + "ConnectedLineNum": "203", + "Context": "handlers", + "Event": "Hangup", + "Exten": "onhangup", + "Language": "en", + "Linkedid": "195176c06ab8-1529941225.617", + "Priority": "4", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941225.622", + "content": "" + }, + { + "AccountCode": "150010001", + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "0", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "33b7e38c-c7b8-418e-a730-7064c8d34f46", + "BridgeVideoSourceMode": "none", + "CallerIDName": "", + "CallerIDNum": "203", + "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000018;1", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_route_phoneaccount", + "Event": "BridgeLeave", + "Exten": "", + "Language": "en", + "Linkedid": "195176c06ab8-1529941225.617", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941225.620", + "content": "" + }, + { + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "0", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "33b7e38c-c7b8-418e-a730-7064c8d34f46", + "BridgeVideoSourceMode": "none", + "Event": "BridgeDestroy", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "", + "CallerIDNum": "203", + "Cause": "16", + "Cause-txt": "Normal Clearing", + "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000018;1", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_route_phoneaccount", + "Event": "Hangup", + "Exten": "", + "Language": "en", + "Linkedid": "195176c06ab8-1529941225.617", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941225.620", + "content": "" + }, + { + "AccountCode": "150010001", + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "1", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "04f60dd3-e9d4-41e4-98fe-4ab47aa300d8", + "BridgeVideoSourceMode": "none", + "CallerIDName": "", + "CallerIDNum": "202", + "Channel": "SIP/150010002-00000029", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_account", + "Event": "BridgeLeave", + "Exten": "", + "Language": "nl", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941216.598", + "content": "" + }, + { + "AccountCode": "150010001", + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "1", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "712d2860-799a-4762-9ff2-814e68fc4529", + "BridgeVideoSourceMode": "none", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "SIP/150010001-0000002a", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "osvpi_account_call_int", + "Event": "BridgeLeave", + "Exten": "203", + "Language": "nl", + "Linkedid": "195176c06ab8-1529941225.617", + "Priority": "12", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941225.617", + "content": "" + }, + { + "AccountCode": "150010001", + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "2", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "712d2860-799a-4762-9ff2-814e68fc4529", + "BridgeVideoSourceMode": "none", + "CallerIDName": "", + "CallerIDNum": "202", + "Channel": "SIP/150010002-00000029", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_account", + "Event": "BridgeEnter", + "Exten": "", + "Language": "nl", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "1", + "Privilege": "call,all", + "SwapUniqueid": "195176c06ab8-1529941225.617", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941216.598", + "content": "" + }, + { + "DestBridgeUniqueid": "712d2860-799a-4762-9ff2-814e68fc4529", + "DestType": "Bridge", + "Event": "AttendedTransfer", + "IsExternal": "No", + "OrigBridgeCreator": "", + "OrigBridgeName": "", + "OrigBridgeNumChannels": "2", + "OrigBridgeTechnology": "softmix", + "OrigBridgeType": "basic", + "OrigBridgeUniqueid": "04f60dd3-e9d4-41e4-98fe-4ab47aa300d8", + "OrigBridgeVideoSourceMode": "none", + "OrigTransfererAccountCode": "150010001", + "OrigTransfererCallerIDName": "Andrew Garza", + "OrigTransfererCallerIDNum": "201", + "OrigTransfererChannel": "SIP/150010001-00000028", + "OrigTransfererChannelState": "6", + "OrigTransfererChannelStateDesc": "Up", + "OrigTransfererConnectedLineName": "", + "OrigTransfererConnectedLineNum": "", + "OrigTransfererContext": "osvpi_account_call_int", + "OrigTransfererExten": "202", + "OrigTransfererLanguage": "nl", + "OrigTransfererLinkedid": "195176c06ab8-1529941216.590", + "OrigTransfererPriority": "12", + "OrigTransfererUniqueid": "195176c06ab8-1529941216.590", + "Privilege": "call,all", + "Result": "Success", + "SecondBridgeCreator": "", + "SecondBridgeName": "", + "SecondBridgeNumChannels": "2", + "SecondBridgeTechnology": "softmix", + "SecondBridgeType": "basic", + "SecondBridgeUniqueid": "712d2860-799a-4762-9ff2-814e68fc4529", + "SecondBridgeVideoSourceMode": "none", + "SecondTransfererAccountCode": "150010001", + "SecondTransfererCallerIDName": "Andrew Garza", + "SecondTransfererCallerIDNum": "201", + "SecondTransfererChannel": "SIP/150010001-0000002a", + "SecondTransfererChannelState": "6", + "SecondTransfererChannelStateDesc": "Up", + "SecondTransfererConnectedLineName": "", + "SecondTransfererConnectedLineNum": "", + "SecondTransfererContext": "osvpi_account_call_int", + "SecondTransfererExten": "203", + "SecondTransfererLanguage": "nl", + "SecondTransfererLinkedid": "195176c06ab8-1529941225.617", + "SecondTransfererPriority": "12", + "SecondTransfererUniqueid": "195176c06ab8-1529941225.617", + "SystemName": "195176c06ab8", + "content": "" + }, + { + "AccountCode": "150010001", + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "0", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "04f60dd3-e9d4-41e4-98fe-4ab47aa300d8", + "BridgeVideoSourceMode": "none", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Channel": "SIP/150010001-00000028", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "osvpi_account_call_int", + "Event": "BridgeLeave", + "Exten": "202", + "Language": "nl", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "12", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941216.590", + "content": "" + }, + { + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "0", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "04f60dd3-e9d4-41e4-98fe-4ab47aa300d8", + "BridgeVideoSourceMode": "none", + "Event": "BridgeDestroy", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Cause": "16", + "Cause-txt": "Normal Clearing", + "Channel": "SIP/150010001-0000002a", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "handlers", + "Event": "Hangup", + "Exten": "onhangup", + "Language": "nl", + "Linkedid": "195176c06ab8-1529941225.617", + "Priority": "4", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941225.617", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "Andrew Garza", + "CallerIDNum": "201", + "Cause": "16", + "Cause-txt": "Normal Clearing", + "Channel": "SIP/150010001-00000028", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "", + "ConnectedLineNum": "", + "Context": "handlers", + "Event": "Hangup", + "Exten": "onhangup", + "Language": "nl", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "4", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941216.590", + "content": "" + }, + { + "AccountCode": "150010001", + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "1", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "712d2860-799a-4762-9ff2-814e68fc4529", + "BridgeVideoSourceMode": "none", + "CallerIDName": "", + "CallerIDNum": "202", + "Channel": "SIP/150010002-00000029", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_account", + "Event": "BridgeLeave", + "Exten": "", + "Language": "nl", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941216.598", + "content": "" + }, + { + "AccountCode": "150010001", + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "0", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "712d2860-799a-4762-9ff2-814e68fc4529", + "BridgeVideoSourceMode": "none", + "CallerIDName": "", + "CallerIDNum": "203", + "Channel": "SIP/150010003-0000002b", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_account", + "Event": "BridgeLeave", + "Exten": "", + "Language": "nl", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941225.625", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "", + "CallerIDNum": "202", + "Cause": "16", + "Cause-txt": "Normal Clearing", + "Channel": "SIP/150010002-00000029", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_account", + "Event": "Hangup", + "Exten": "", + "Language": "nl", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941216.598", + "content": "" + }, + { + "BridgeCreator": "", + "BridgeName": "", + "BridgeNumChannels": "0", + "BridgeTechnology": "softmix", + "BridgeType": "basic", + "BridgeUniqueid": "712d2860-799a-4762-9ff2-814e68fc4529", + "BridgeVideoSourceMode": "none", + "Event": "BridgeDestroy", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "content": "" + }, + { + "AccountCode": "150010001", + "CallerIDName": "", + "CallerIDNum": "203", + "Cause": "16", + "Cause-txt": "Normal Clearing", + "Channel": "SIP/150010003-0000002b", + "ChannelState": "6", + "ChannelStateDesc": "Up", + "ConnectedLineName": "Andrew Garza", + "ConnectedLineNum": "201", + "Context": "osvpi_account", + "Event": "Hangup", + "Exten": "", + "Language": "nl", + "Linkedid": "195176c06ab8-1529941216.590", + "Priority": "1", + "Privilege": "call,all", + "SystemName": "195176c06ab8", + "Uniqueid": "195176c06ab8-1529941225.625", + "content": "" + } ] diff --git a/tests/fixtures/xfer_attended/xfer_abbcac.json b/tests/fixtures/xfer_attended/xfer_abbcac.json index 93fc709..ff178f7 100644 --- a/tests/fixtures/xfer_attended/xfer_abbcac.json +++ b/tests/fixtures/xfer_attended/xfer_abbcac.json @@ -1,626 +1,97 @@ [ -{"Privilege": "system,all", "content": "", "Event": "FullyBooted", "Status": "Fully Booted"}, -{"CallerIDName": "Foo bar", "Uniqueid": "vgua0-dev-1442387041.544", "Event": "Newchannel", "Context": "voipgrid_in", "ChannelState": "0", "ChannelStateDesc": "Down", "Privilege": "call,all", "AccountCode": "", "CallerIDNum": "+31501234567", "Exten": "+31508009000", "Channel": "SIP/voipgrid-siproute-dev-00000110", "content": ""}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "sip:service@6.6.6.6:5074", "Variable": "SIPURI"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "5.5.5.5", "Variable": "SIPDOMAIN"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "~{}~1-16847@6.6.6.6", "Variable": "SIPCALLID"}, -{"CallerIDName": "Foo bar", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1442387041.544", "Event": "Newstate", "Channel": "SIP/voipgrid-siproute-dev-00000110", "ChannelStateDesc": "Ring", "ChannelState": "4", "CallerIDNum": "+31501234567", "content": "", "ConnectedLineNum": "", "ConnectedLineName": ""}, -{"Extension": "+31508009000", "AppData": "ENTRY POINT username=upstream,num=+31501234567,name=Foo bar,callerpres=allowed_passed_screen", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "voipgrid_in", "Privilege": "dialplan,all", "Application": "NoOp", "Event": "Newexten", "Priority": "1"}, -{"Extension": "+31508009000", "AppData": "l_tmp=Foo bar", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "voipgrid_in", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "2"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "Foo bar", "Variable": "l_tmp"}, -{"Extension": "+31508009000", "AppData": "l_tmp=Foo bar", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "voipgrid_in", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "3"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "Foo bar", "Variable": "l_tmp"}, -{"Extension": "+31508009000", "AppData": "l_tmp=Foo bar", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "voipgrid_in", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "4"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "Foo bar", "Variable": "l_tmp"}, -{"Extension": "+31508009000", "AppData": "CALLERID(name)=Foo bar", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "voipgrid_in", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "5"}, -{"CallerIDName": "Foo bar", "Uniqueid": "vgua0-dev-1442387041.544", "Event": "NewCallerid", "Channel": "SIP/voipgrid-siproute-dev-00000110", "CallerIDNum": "+31501234567", "Privilege": "call,all", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "content": ""}, -{"Extension": "+31508009000", "AppData": "osvpi_proc_check_forwards,s,1", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "voipgrid_in", "Privilege": "dialplan,all", "Application": "Gosub", "Event": "Newexten", "Priority": "6"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "0", "Variable": "LOCAL(ARGC)"}, -{"Extension": "s", "AppData": "0?check,1", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "osvpi_proc_check_forwards", "Privilege": "dialplan,all", "Application": "GotoIf", "Event": "Newexten", "Priority": "1"}, -{"Extension": "s", "AppData": "LOCAL(tmp)=", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "osvpi_proc_check_forwards", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "2"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "LOCAL(tmp)"}, -{"Extension": "s", "AppData": "1?Goto(init,1)", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "osvpi_proc_check_forwards", "Privilege": "dialplan,all", "Application": "ExecIf", "Event": "Newexten", "Priority": "3"}, -{"Extension": "init", "AppData": "MASTER_CHANNEL(SIP_MAX_FORWARDS)=16", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "osvpi_proc_check_forwards", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "1"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "16", "Variable": "SIP_MAX_FORWARDS"}, -{"Extension": "init", "AppData": "DEBUG: MaxForwards: initialized to: 16", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "osvpi_proc_check_forwards", "Privilege": "dialplan,all", "Application": "NoOp", "Event": "Newexten", "Priority": "2"}, -{"Extension": "init", "AppData": "", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "osvpi_proc_check_forwards", "Privilege": "dialplan,all", "Application": "Return", "Event": "Newexten", "Priority": "3"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "GOSUB_RETVAL"}, -{"Extension": "+31508009000", "AppData": "__supports_progress=1", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "voipgrid_in", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "7"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "1", "Variable": "__supports_progress"}, -{"Extension": "+31508009000", "AppData": "__hide_ext_cliname=0", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "voipgrid_in", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "8"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "0", "Variable": "__hide_ext_cliname"}, -{"Extension": "+31508009000", "AppData": "CALLERPRES()=allowed_passed_screen", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "voipgrid_in", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "9"}, -{"Extension": "+31508009000", "AppData": "osvpi_world,+31508009000,1", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "voipgrid_in", "Privilege": "dialplan,all", "Application": "Goto", "Event": "Newexten", "Priority": "10"}, -{"Extension": "+31508009000", "AppData": "0?GotoIf(1?osvpi_proc_hangup_insecure,+31508009000,1)", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "osvpi_world", "Privilege": "dialplan,all", "Application": "ExecIf", "Event": "Newexten", "Priority": "1"}, -{"Extension": "+31508009000", "AppData": "CDR(amaflags)=BILLING", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "osvpi_world", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "2"}, -{"Extension": "+31508009000", "AppData": "osvpi_proc_set_callerid_internal,+31508009000,1", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "osvpi_world", "Privilege": "dialplan,all", "Application": "Gosub", "Event": "Newexten", "Priority": "3"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "0", "Variable": "LOCAL(ARGC)"}, -{"Extension": "+31508009000", "AppData": "1?nop", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "osvpi_proc_set_callerid_internal", "Privilege": "dialplan,all", "Application": "GotoIf", "Event": "Newexten", "Priority": "1"}, -{"Extension": "+31508009000", "AppData": "0?Set(CALLERID(ANI)=+3150123456)", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "osvpi_proc_set_callerid_internal", "Privilege": "dialplan,all", "Application": "ExecIf", "Event": "Newexten", "Priority": "5"}, -{"Extension": "+31508009000", "AppData": "", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "osvpi_proc_set_callerid_internal", "Privilege": "dialplan,all", "Application": "Return", "Event": "Newexten", "Priority": "6"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "GOSUB_RETVAL"}, -{"Extension": "+31508009000", "AppData": "11?:osvpi_handle_invalid,+31508009000,1", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "osvpi_world", "Privilege": "dialplan,all", "Application": "GotoIf", "Event": "Newexten", "Priority": "4"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "1", "Variable": "ODBCROWS"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "SUCCESS", "Variable": "ODBCSTATUS"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "client_id,route_id,intprefix,lookup_callerid,client_timezone", "Variable": "~ODBCFIELDS~"}, -{"Extension": "+31508009000", "AppData": "ARRAY(client_id,route_id,__intprefix,l_lookup_callerid,client_timezone)=12668,2,31,1,Europe/Amsterdam", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "osvpi_world", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "5"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "12668", "Variable": "client_id"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "2", "Variable": "route_id"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "31", "Variable": "__intprefix"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "1", "Variable": "l_lookup_callerid"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "Europe/Amsterdam", "Variable": "client_timezone"}, -{"Extension": "+31508009000", "AppData": "0?osvpi_handle_unallocated,+31508009000,1", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "osvpi_world", "Privilege": "dialplan,all", "Application": "GotoIf", "Event": "Newexten", "Priority": "6"}, -{"Extension": "+31508009000", "AppData": "__client_id=12668", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "osvpi_world", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "7"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "12668", "Variable": "__client_id"}, -{"Extension": "+31508009000", "AppData": "CDR(accountcode)=12668", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "osvpi_world", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "8"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "AccountCode": "12668", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "call,all", "content": "", "Event": "NewAccountCode"}, -{"Extension": "+31508009000", "AppData": "osvpi_proc_callerid_lookup,+31508009000,1(1)", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "osvpi_world", "Privilege": "dialplan,all", "Application": "Gosub", "Event": "Newexten", "Priority": "9"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "1", "Variable": "LOCAL(ARG1)"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "1", "Variable": "LOCAL(ARGC)"}, -{"Extension": "+31508009000", "AppData": "1?Return()", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "osvpi_proc_callerid_lookup", "Privilege": "dialplan,all", "Application": "ExecIf", "Event": "Newexten", "Priority": "1"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "GOSUB_RETVAL"}, -{"Extension": "+31508009000", "AppData": "0?done", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "osvpi_world", "Privilege": "dialplan,all", "Application": "GotoIf", "Event": "Newexten", "Priority": "10"}, -{"Extension": "+31508009000", "AppData": "l_tmpkey=vg:clistm:12668:+31501234567", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "osvpi_world", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "11"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "vg:clistm:12668:+31501234567", "Variable": "l_tmpkey"}, -{"Extension": "+31508009000", "AppData": "l_tmp=OK\n", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "osvpi_world", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "12"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "OK\n", "Variable": "l_tmp"}, -{"Extension": "+31508009000", "AppData": "osvpi_route_root,+31508009000,1", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "osvpi_world", "Privilege": "dialplan,all", "Application": "Goto", "Event": "Newexten", "Priority": "13"}, -{"Extension": "+31508009000", "AppData": "osvpi_proc_check_recurse,+31508009000,1(12668)", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "osvpi_route_root", "Privilege": "dialplan,all", "Application": "Gosub", "Event": "Newexten", "Priority": "1"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "12668", "Variable": "LOCAL(ARG1)"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "1", "Variable": "LOCAL(ARGC)"}, -{"Extension": "+31508009000", "AppData": "LOCAL(exten)=12668:+31508009000", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "osvpi_proc_check_recurse", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "1"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "12668:+31508009000", "Variable": "LOCAL(exten)"}, -{"Extension": "+31508009000", "AppData": "Recursion checking 12668:+31508009000 against ", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "osvpi_proc_check_recurse", "Privilege": "dialplan,all", "Application": "NoOp", "Event": "Newexten", "Priority": "2"}, -{"Extension": "+31508009000", "AppData": "LOCAL(n)=0", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "osvpi_proc_check_recurse", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "3"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "0", "Variable": "LOCAL(n)"}, -{"Extension": "+31508009000", "AppData": "LOCAL(i)=1", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "osvpi_proc_check_recurse", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "4"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "1", "Variable": "LOCAL(i)"}, -{"Extension": "+31508009000", "AppData": "1?add", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "osvpi_proc_check_recurse", "Privilege": "dialplan,all", "Application": "GotoIf", "Event": "Newexten", "Priority": "5"}, -{"Extension": "+31508009000", "AppData": "__EXTEN_LIST=12668:+31508009000 ", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "osvpi_proc_check_recurse", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "9"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "12668:+31508009000 ", "Variable": "__EXTEN_LIST"}, -{"Extension": "+31508009000", "AppData": "", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "osvpi_proc_check_recurse", "Privilege": "dialplan,all", "Application": "Return", "Event": "Newexten", "Priority": "10"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "GOSUB_RETVAL"}, -{"Extension": "+31508009000", "AppData": "__ORIG_EXTEN=+31508009000", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "osvpi_route_root", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "2"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "+31508009000", "Variable": "__ORIG_EXTEN"}, -{"Extension": "+31508009000", "AppData": "route_loop=1", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "osvpi_route_root", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "3"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "1", "Variable": "route_loop"}, -{"Extension": "+31508009000", "AppData": "route_step=1", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "osvpi_route_root", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "4"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "1", "Variable": "route_step"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "1", "Variable": "ODBCROWS"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "SUCCESS", "Variable": "ODBCSTATUS"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "step_id,module,ringtime", "Variable": "~ODBCFIELDS~"}, -{"Extension": "+31508009000", "AppData": "ARRAY(l_route_step_id,l_route_module,ring_time)=2,phoneaccount,30", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "osvpi_route_root", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "5"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "2", "Variable": "l_route_step_id"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "phoneaccount", "Variable": "l_route_module"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "30", "Variable": "ring_time"}, -{"Extension": "+31508009000", "AppData": "0?done", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "osvpi_route_root", "Privilege": "dialplan,all", "Application": "GotoIf", "Event": "Newexten", "Priority": "6"}, -{"Extension": "+31508009000", "AppData": "osvpi_route_phoneaccount_step,ID2,1", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "osvpi_route_root", "Privilege": "dialplan,all", "Application": "Gosub", "Event": "Newexten", "Priority": "7"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "0", "Variable": "LOCAL(ARGC)"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "1", "Variable": "ODBCROWS"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "SUCCESS", "Variable": "ODBCSTATUS"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "interfaces", "Variable": "~ODBCFIELDS~"}, -{"Extension": "ID2", "AppData": "ARRAY(LOCAL(interfaces))=Local/ID2@osvpi_route_phoneaccount", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "osvpi_route_phoneaccount_step", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "1"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "Local/ID2@osvpi_route_phoneaccount", "Variable": "LOCAL(interfaces)"}, -{"Extension": "ID2", "AppData": "0?Return()", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "osvpi_route_phoneaccount_step", "Privilege": "dialplan,all", "Application": "ExecIf", "Event": "Newexten", "Priority": "2"}, -{"Extension": "ID2", "AppData": "+31508009000,1", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "osvpi_route_phoneaccount_step", "Privilege": "dialplan,all", "Application": "Goto", "Event": "Newexten", "Priority": "3"}, -{"Extension": "+31508009000", "AppData": "Local/ID2@osvpi_route_phoneaccount,30", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "osvpi_route_phoneaccount_step", "Privilege": "dialplan,all", "Application": "Dial", "Event": "Newexten", "Priority": "1"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "DIALSTATUS"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "DIALEDPEERNUMBER"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "DIALEDPEERNAME"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "ANSWEREDTIME"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "DIALEDTIME"}, -{"CallerIDName": "", "Uniqueid": "vgua0-dev-1442387042.545", "Event": "Newchannel", "Context": "osvpi_route_phoneaccount", "ChannelState": "0", "ChannelStateDesc": "Down", "Privilege": "call,all", "AccountCode": "", "CallerIDNum": "", "Exten": "ID2", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;1", "content": ""}, -{"CallerIDName": "", "Uniqueid": "vgua0-dev-1442387042.546", "Event": "Newchannel", "Context": "osvpi_route_phoneaccount", "ChannelState": "4", "ChannelStateDesc": "Ring", "Privilege": "call,all", "AccountCode": "", "CallerIDNum": "", "Exten": "ID2", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "content": ""}, -{"Uniqueid": "vgua0-dev-1442387042.545", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;1", "Privilege": "dialplan,all", "content": "", "Value": "ID2@osvpi_route_phoneaccount", "Variable": "DIALEDPEERNUMBER"}, -{"CallerIDName": "", "Uniqueid": "vgua0-dev-1442387042.545", "Event": "NewCallerid", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;1", "CallerIDNum": "+31508009000", "Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": ""}, -{"Privilege": "call,all", "Event": "LocalBridge", "Channel1": "Local/ID2@osvpi_route_phoneaccount-00000088;1", "Context": "osvpi_route_phoneaccount", "Exten": "ID2", "Uniqueid1": "vgua0-dev-1442387042.545", "Uniqueid2": "vgua0-dev-1442387042.546", "content": "", "LocalOptimization": "Yes", "Channel2": "Local/ID2@osvpi_route_phoneaccount-00000088;2"}, -{"CallerIDName": "Foo bar", "Destination": "Local/ID2@osvpi_route_phoneaccount-00000088;1", "DestUniqueID": "vgua0-dev-1442387042.545", "content": "", "Privilege": "call,all", "Dialstring": "ID2@osvpi_route_phoneaccount", "ConnectedLineName": "", "UniqueID": "vgua0-dev-1442387041.544", "SubEvent": "Begin", "CallerIDNum": "+31501234567", "Event": "Dial", "Channel": "SIP/voipgrid-siproute-dev-00000110", "ConnectedLineNum": ""}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "1", "Variable": "ODBCROWS"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "SUCCESS", "Variable": "ODBCSTATUS"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account", "Variable": "~ODBCFIELDS~"}, -{"Extension": "ID2", "AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=126680001,accountid,dutch,rpid,,0", "Uniqueid": "vgua0-dev-1442387042.546", "content": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Context": "osvpi_route_phoneaccount", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "1"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "126680001", "Variable": "__dst_account_id"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "accountid", "Variable": "l_mangle_did"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "dutch", "Variable": "l_mangle_cli"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "rpid", "Variable": "l_cli_header"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "l_primary_pickupgroup"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "0", "Variable": "app_account"}, -{"Extension": "ID2", "AppData": "0?vialer", "Uniqueid": "vgua0-dev-1442387042.546", "content": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Context": "osvpi_route_phoneaccount", "Privilege": "dialplan,all", "Application": "GotoIf", "Event": "Newexten", "Priority": "2"}, -{"Extension": "ID2", "AppData": "_PICKUPMARK=", "Uniqueid": "vgua0-dev-1442387042.546", "content": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Context": "osvpi_route_phoneaccount", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "3"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "_PICKUPMARK"}, -{"Extension": "ID2", "AppData": "l_trunk=0", "Uniqueid": "vgua0-dev-1442387042.546", "content": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Context": "osvpi_route_phoneaccount", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "4"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "0", "Variable": "l_trunk"}, -{"Extension": "ID2", "AppData": "osvpi_route_account,ID2,1", "Uniqueid": "vgua0-dev-1442387042.546", "content": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Context": "osvpi_route_phoneaccount", "Privilege": "dialplan,all", "Application": "Goto", "Event": "Newexten", "Priority": "5"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "1", "Variable": "ODBCROWS"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "SUCCESS", "Variable": "ODBCSTATUS"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "proxy,secret", "Variable": "~ODBCFIELDS~"}, -{"Extension": "ID2", "AppData": "ARRAY(l_proxy,l_secret)=1.2.3.4,XXX", "Uniqueid": "vgua0-dev-1442387042.546", "content": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "1"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "1.2.3.4", "Variable": "l_proxy"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "XXX", "Variable": "l_secret"}, -{"Extension": "ID2", "AppData": "osvpi_proc_mangle_number,accountid,1(126680001,+31508009000)", "Uniqueid": "vgua0-dev-1442387042.546", "content": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "Application": "Gosub", "Event": "Newexten", "Priority": "2"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "126680001", "Variable": "LOCAL(ARG1)"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "+31508009000", "Variable": "LOCAL(ARG2)"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "2", "Variable": "LOCAL(ARGC)"}, -{"Extension": "accountid", "AppData": "MANGLED_EXTEN=126680001", "Uniqueid": "vgua0-dev-1442387042.546", "content": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Context": "osvpi_proc_mangle_number", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "1"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "126680001", "Variable": "MANGLED_EXTEN"}, -{"Extension": "accountid", "AppData": "", "Uniqueid": "vgua0-dev-1442387042.546", "content": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Context": "osvpi_proc_mangle_number", "Privilege": "dialplan,all", "Application": "Return", "Event": "Newexten", "Priority": "2"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "GOSUB_RETVAL"}, -{"Extension": "ID2", "AppData": "l_did=126680001", "Uniqueid": "vgua0-dev-1442387042.546", "content": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "3"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "126680001", "Variable": "l_did"}, -{"Extension": "ID2", "AppData": "osvpi_proc_mangle_number,dutch,1(126680001,+31501234567)", "Uniqueid": "vgua0-dev-1442387042.546", "content": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "Application": "Gosub", "Event": "Newexten", "Priority": "4"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "126680001", "Variable": "LOCAL(ARG1)"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "+31501234567", "Variable": "LOCAL(ARG2)"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "2", "Variable": "LOCAL(ARGC)"}, -{"Extension": "dutch", "AppData": "0?fullzero,1", "Uniqueid": "vgua0-dev-1442387042.546", "content": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Context": "osvpi_proc_mangle_number", "Privilege": "dialplan,all", "Application": "GotoIf", "Event": "Newexten", "Priority": "1"}, -{"Extension": "dutch", "AppData": "MANGLED_EXTEN=0501234567", "Uniqueid": "vgua0-dev-1442387042.546", "content": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Context": "osvpi_proc_mangle_number", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "2"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "0501234567", "Variable": "MANGLED_EXTEN"}, -{"Extension": "dutch", "AppData": "", "Uniqueid": "vgua0-dev-1442387042.546", "content": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Context": "osvpi_proc_mangle_number", "Privilege": "dialplan,all", "Application": "Return", "Event": "Newexten", "Priority": "3"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "GOSUB_RETVAL"}, -{"Extension": "ID2", "AppData": "l_cli=0501234567", "Uniqueid": "vgua0-dev-1442387042.546", "content": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "5"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "0501234567", "Variable": "l_cli"}, -{"Extension": "ID2", "AppData": "l_privacy=0", "Uniqueid": "vgua0-dev-1442387042.546", "content": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "6"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "0", "Variable": "l_privacy"}, -{"Extension": "ID2", "AppData": "0?clifrom", "Uniqueid": "vgua0-dev-1442387042.546", "content": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "Application": "GotoIf", "Event": "Newexten", "Priority": "7"}, -{"Extension": "ID2", "AppData": "1?clirpid", "Uniqueid": "vgua0-dev-1442387042.546", "content": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "Application": "GotoIf", "Event": "Newexten", "Priority": "8"}, -{"Extension": "ID2", "AppData": "CALLERID(num)=126680001", "Uniqueid": "vgua0-dev-1442387042.546", "content": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "11"}, -{"CallerIDName": "Foo bar", "Uniqueid": "vgua0-dev-1442387042.546", "Event": "NewCallerid", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "CallerIDNum": "126680001", "Privilege": "call,all", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "content": ""}, -{"Extension": "ID2", "AppData": "1?SIPAddHeader(Remote-Party-ID: \\\"Foo bar\\\" \\;privacy=off\\;screen=yes)", "Uniqueid": "vgua0-dev-1442387042.546", "content": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "Application": "ExecIf", "Event": "Newexten", "Priority": "12"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "Remote-Party-ID: \"Foo bar\" ;privacy=off;screen=yes", "Variable": "__SIPADDHEADER01"}, -{"Extension": "ID2", "AppData": "0?SIPAddHeader(Remote-Party-ID: \\;privacy=off\\;screen=yes)", "Uniqueid": "vgua0-dev-1442387042.546", "content": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "Application": "ExecIf", "Event": "Newexten", "Priority": "13"}, -{"Extension": "ID2", "AppData": "0?SIPAddHeader(Remote-Party-ID: \\\"Anonymous\\\" \\;privacy=full\\;screen=yes)", "Uniqueid": "vgua0-dev-1442387042.546", "content": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "Application": "ExecIf", "Event": "Newexten", "Priority": "14"}, -{"Extension": "ID2", "AppData": "CALLERID(name)=", "Uniqueid": "vgua0-dev-1442387042.546", "content": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "15"}, -{"CallerIDName": "", "Uniqueid": "vgua0-dev-1442387042.546", "Event": "NewCallerid", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "CallerIDNum": "126680001", "Privilege": "call,all", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "content": ""}, -{"Extension": "ID2", "AppData": "CALLERPRES()=allowed_passed_screen", "Uniqueid": "vgua0-dev-1442387042.546", "content": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "16"}, -{"Extension": "ID2", "AppData": "osvpi_proc_proxy_out,+31508009000,1", "Uniqueid": "vgua0-dev-1442387042.546", "content": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "Application": "Goto", "Event": "Newexten", "Priority": "17"}, -{"Extension": "+31508009000", "AppData": "X-Accountcode: 126680001", "Uniqueid": "vgua0-dev-1442387042.546", "content": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Context": "osvpi_proc_proxy_out", "Privilege": "dialplan,all", "Application": "SIPAddHeader", "Event": "Newexten", "Priority": "1"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "X-Accountcode: 126680001", "Variable": "__SIPADDHEADER02"}, -{"Extension": "+31508009000", "AppData": "X-Custom-Header: customflag", "Uniqueid": "vgua0-dev-1442387042.546", "content": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Context": "osvpi_proc_proxy_out", "Privilege": "dialplan,all", "Application": "SIPAddHeader", "Event": "Newexten", "Priority": "2"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "X-Custom-Header: customflag", "Variable": "__SIPADDHEADER03"}, -{"Extension": "+31508009000", "AppData": "0?Set(l_proxy=1.2.3.4)", "Uniqueid": "vgua0-dev-1442387042.546", "content": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Context": "osvpi_proc_proxy_out", "Privilege": "dialplan,all", "Application": "ExecIf", "Event": "Newexten", "Priority": "3"}, -{"Extension": "+31508009000", "AppData": "SIP/126680001/126680001/1.2.3.4,,", "Uniqueid": "vgua0-dev-1442387042.546", "content": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Context": "osvpi_proc_proxy_out", "Privilege": "dialplan,all", "Application": "Dial", "Event": "Newexten", "Priority": "4"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "DIALSTATUS"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "DIALEDPEERNUMBER"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "DIALEDPEERNAME"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "ANSWEREDTIME"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "DIALEDTIME"}, -{"CallerIDName": "", "Uniqueid": "vgua0-dev-1442387042.547", "Event": "Newchannel", "Context": "osvpi_account", "ChannelState": "0", "ChannelStateDesc": "Down", "Privilege": "call,all", "AccountCode": "126680001", "CallerIDNum": "", "Exten": "", "Channel": "SIP/126680001-00000111", "content": ""}, -{"Uniqueid": "vgua0-dev-1442387042.547", "Event": "VarSet", "Channel": "SIP/126680001-00000111", "Privilege": "dialplan,all", "content": "", "Value": "60bd47521c5c6516672caa9e798e8969@5.5.5.5:5060", "Variable": "SIPCALLID"}, -{"Uniqueid": "vgua0-dev-1442387042.547", "Event": "VarSet", "Channel": "SIP/126680001-00000111", "Privilege": "dialplan,all", "content": "", "Value": "12668", "Variable": "__client_id"}, -{"Uniqueid": "vgua0-dev-1442387042.547", "Event": "VarSet", "Channel": "SIP/126680001-00000111", "Privilege": "dialplan,all", "content": "", "Value": "126680001", "Variable": "__account_id"}, -{"Uniqueid": "vgua0-dev-1442387042.547", "Event": "VarSet", "Channel": "SIP/126680001-00000111", "Privilege": "dialplan,all", "content": "", "Value": "no", "Variable": "__record_call"}, -{"Uniqueid": "vgua0-dev-1442387042.547", "Event": "VarSet", "Channel": "SIP/126680001-00000111", "Privilege": "dialplan,all", "content": "", "Value": "31", "Variable": "__intprefix"}, -{"Uniqueid": "vgua0-dev-1442387042.547", "Event": "VarSet", "Channel": "SIP/126680001-00000111", "Privilege": "dialplan,all", "content": "", "Value": "4", "Variable": "__limit_account"}, -{"Uniqueid": "vgua0-dev-1442387042.547", "Event": "VarSet", "Channel": "SIP/126680001-00000111", "Privilege": "dialplan,all", "content": "", "Value": "0", "Variable": "__limit_client"}, -{"Uniqueid": "vgua0-dev-1442387042.547", "Event": "VarSet", "Channel": "SIP/126680001-00000111", "Privilege": "dialplan,all", "content": "", "Value": "1", "Variable": "__hide_ext_cliname"}, -{"Uniqueid": "vgua0-dev-1442387042.547", "Event": "VarSet", "Channel": "SIP/126680001-00000111", "Privilege": "dialplan,all", "content": "", "Value": "osvpi_account_transfer", "Variable": "__TRANSFER_CONTEXT"}, -{"Uniqueid": "vgua0-dev-1442387042.547", "Event": "VarSet", "Channel": "SIP/126680001-00000111", "Privilege": "dialplan,all", "content": "", "Value": "126680001/126680001/1.2.3.4", "Variable": "DIALEDPEERNUMBER"}, -{"CallerIDName": "", "Uniqueid": "vgua0-dev-1442387042.547", "Event": "NewCallerid", "Channel": "SIP/126680001-00000111", "CallerIDNum": "+31508009000", "Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": ""}, -{"CallerIDName": "", "Destination": "SIP/126680001-00000111", "DestUniqueID": "vgua0-dev-1442387042.547", "content": "", "Privilege": "call,all", "Dialstring": "126680001/126680001/1.2.3.4", "ConnectedLineName": "", "UniqueID": "vgua0-dev-1442387042.546", "SubEvent": "Begin", "CallerIDNum": "126680001", "Event": "Dial", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "ConnectedLineNum": "+31508009000"}, -{"CallerIDName": "", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1442387042.547", "Event": "Newstate", "Channel": "SIP/126680001-00000111", "ChannelStateDesc": "Ringing", "ChannelState": "5", "CallerIDNum": "+31508009000", "content": "", "ConnectedLineNum": "126680001", "ConnectedLineName": ""}, -{"CallerIDName": "", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1442387042.545", "Event": "Newstate", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;1", "ChannelStateDesc": "Ringing", "ChannelState": "5", "CallerIDNum": "+31508009000", "content": "", "ConnectedLineNum": "+31501234567", "ConnectedLineName": "Foo bar"}, -{"CallerIDName": "", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1442387042.547", "Event": "Newstate", "Channel": "SIP/126680001-00000111", "ChannelStateDesc": "Up", "ChannelState": "6", "CallerIDNum": "+31508009000", "content": "", "ConnectedLineNum": "126680001", "ConnectedLineName": ""}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "ANSWER", "Variable": "DIALSTATUS"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "SIP/126680001-00000111", "Variable": "DIALEDPEERNAME"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "126680001/126680001/1.2.3.4", "Variable": "DIALEDPEERNUMBER"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "SIP/126680001-00000111", "Variable": "BRIDGEPEER"}, -{"Uniqueid": "vgua0-dev-1442387042.547", "Event": "VarSet", "Channel": "SIP/126680001-00000111", "Privilege": "dialplan,all", "content": "", "Value": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Variable": "BRIDGEPEER"}, -{"CallerIDName": "", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1442387042.545", "Event": "Newstate", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;1", "ChannelStateDesc": "Up", "ChannelState": "6", "CallerIDNum": "+31508009000", "content": "", "ConnectedLineNum": "+31501234567", "ConnectedLineName": "Foo bar"}, -{"CallerIDName": "", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1442387042.546", "Event": "Newstate", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "ChannelStateDesc": "Up", "ChannelState": "6", "CallerIDNum": "126680001", "content": "", "ConnectedLineNum": "+31508009000", "ConnectedLineName": ""}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "ANSWER", "Variable": "DIALSTATUS"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "Local/ID2@osvpi_route_phoneaccount-00000088;1", "Variable": "DIALEDPEERNAME"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "ID2@osvpi_route_phoneaccount", "Variable": "DIALEDPEERNUMBER"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "Local/ID2@osvpi_route_phoneaccount-00000088;1", "Variable": "BRIDGEPEER"}, -{"Uniqueid": "vgua0-dev-1442387042.547", "AccountCode": "12668", "Channel": "SIP/126680001-00000111", "Privilege": "call,all", "content": "", "Event": "NewAccountCode", "OldAccountCode": "12668"}, -{"Uniqueid": "vgua0-dev-1442387042.545", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;1", "Privilege": "dialplan,all", "content": "", "Value": "SIP/voipgrid-siproute-dev-00000110", "Variable": "BRIDGEPEER"}, -{"CallerIDName": "Foo bar", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1442387041.544", "Event": "Newstate", "Channel": "SIP/voipgrid-siproute-dev-00000110", "ChannelStateDesc": "Up", "ChannelState": "6", "CallerIDNum": "+31501234567", "content": "", "ConnectedLineNum": "", "ConnectedLineName": ""}, -{"Uniqueid": "vgua0-dev-1442387042.545", "AccountCode": "12668", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;1", "Privilege": "call,all", "content": "", "Event": "NewAccountCode", "OldAccountCode": "12668"}, -{"Privilege": "call,all", "Event": "Bridge", "Channel1": "SIP/voipgrid-siproute-dev-00000110", "CallerID1": "+31501234567", "Bridgetype": "core", "Uniqueid1": "vgua0-dev-1442387041.544", "CallerID2": "+31508009000", "Uniqueid2": "vgua0-dev-1442387042.545", "content": "", "Channel2": "Local/ID2@osvpi_route_phoneaccount-00000088;1", "Bridgestate": "Link"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "Local/ID2@osvpi_route_phoneaccount-00000088;1", "Variable": "BRIDGEPEER"}, -{"Privilege": "call,all", "Event": "Bridge", "Channel1": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "CallerID1": "126680001", "Bridgetype": "core", "Uniqueid1": "vgua0-dev-1442387042.546", "CallerID2": "+31508009000", "Uniqueid2": "vgua0-dev-1442387042.547", "content": "", "Channel2": "SIP/126680001-00000111", "Bridgestate": "Link"}, -{"Uniqueid": "vgua0-dev-1442387042.545", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;1", "Privilege": "dialplan,all", "content": "", "Value": "SIP/voipgrid-siproute-dev-00000110", "Variable": "BRIDGEPEER"}, -{"Uniqueid": "vgua0-dev-1442387042.545", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;1", "Privilege": "dialplan,all", "content": "", "Value": "~{}~1-16847@6.6.6.6", "Variable": "BRIDGEPVTCALLID"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "Local/ID2@osvpi_route_phoneaccount-00000088;1", "Variable": "BRIDGEPEER"}, -{"Uniqueid": "vgua0-dev-1442387042.545", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;1", "Privilege": "dialplan,all", "content": "", "Value": "SIP/voipgrid-siproute-dev-00000110", "Variable": "BRIDGEPEER"}, -{"Uniqueid": "vgua0-dev-1442387042.545", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;1", "Privilege": "dialplan,all", "content": "", "Value": "~{}~1-16847@6.6.6.6", "Variable": "BRIDGEPVTCALLID"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "SIP/126680001-00000111", "Variable": "BRIDGEPEER"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "60bd47521c5c6516672caa9e798e8969@5.5.5.5:5060", "Variable": "BRIDGEPVTCALLID"}, -{"Uniqueid": "vgua0-dev-1442387042.547", "Event": "VarSet", "Channel": "SIP/126680001-00000111", "Privilege": "dialplan,all", "content": "", "Value": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Variable": "BRIDGEPEER"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "SIP/126680001-00000111", "Variable": "BRIDGEPEER"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "60bd47521c5c6516672caa9e798e8969@5.5.5.5:5060", "Variable": "BRIDGEPVTCALLID"}, -{"Uniqueid": "vgua0-dev-1442387042.547", "Event": "VarSet", "Channel": "SIP/126680001-00000111", "Privilege": "dialplan,all", "content": "", "Value": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Variable": "BRIDGEPEER"}, -{"Clone": "SIP/126680001-00000111", "OriginalState": "Up", "CloneState": "Up", "Privilege": "call,all", "content": "", "Event": "Masquerade", "Original": "Local/ID2@osvpi_route_phoneaccount-00000088;1"}, -{"Uniqueid": "vgua0-dev-1442387042.547", "Newname": "SIP/126680001-00000111", "Channel": "SIP/126680001-00000111", "Privilege": "call,all", "content": "", "Event": "Rename"}, -{"Uniqueid": "vgua0-dev-1442387042.545", "Newname": "SIP/126680001-00000111", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;1", "Privilege": "call,all", "content": "", "Event": "Rename"}, -{"Uniqueid": "vgua0-dev-1442387042.547", "Newname": "Local/ID2@osvpi_route_phoneaccount-00000088;1", "Channel": "SIP/126680001-00000111", "Privilege": "call,all", "content": "", "Event": "Rename"}, -{"CallerIDName": "", "Uniqueid": "vgua0-dev-1442387042.545", "Event": "NewCallerid", "Channel": "SIP/126680001-00000111", "CallerIDNum": "+31508009000", "Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": ""}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "SIP/126680001-00000111", "Variable": "BRIDGEPEER"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "60bd47521c5c6516672caa9e798e8969@5.5.5.5:5060", "Variable": "BRIDGEPVTCALLID"}, -{"Uniqueid": "vgua0-dev-1442387042.545", "Event": "VarSet", "Channel": "SIP/126680001-00000111", "Privilege": "dialplan,all", "content": "", "Value": "SIP/voipgrid-siproute-dev-00000110", "Variable": "BRIDGEPEER"}, -{"Uniqueid": "vgua0-dev-1442387042.545", "Event": "VarSet", "Channel": "SIP/126680001-00000111", "Privilege": "dialplan,all", "content": "", "Value": "~{}~1-16847@6.6.6.6", "Variable": "BRIDGEPVTCALLID"}, -{"Privilege": "call,all", "Event": "Bridge", "Channel1": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "CallerID1": "126680001", "Bridgetype": "core", "Uniqueid1": "vgua0-dev-1442387042.546", "CallerID2": "+31508009000", "Uniqueid2": "vgua0-dev-1442387042.547", "content": "", "Channel2": "Local/ID2@osvpi_route_phoneaccount-00000088;1", "Bridgestate": "Unlink"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "0", "Variable": "ANSWEREDTIME"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "1", "Variable": "DIALEDTIME"}, -{"Privilege": "call,all", "content": "", "Uniqueid": "vgua0-dev-1442387042.546", "Event": "HangupRequest", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2"}, -{"CallerIDName": "", "Uniqueid": "vgua0-dev-1442387042.547", "content": "", "Privilege": "call,all", "Cause": "16", "ConnectedLineName": "Foo bar", "AccountCode": "12668", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;1", "Cause-txt": "Normal Clearing", "CallerIDNum": "+31508009000", "Event": "Hangup", "ConnectedLineNum": "+31501234567"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "Event": "VarSet", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "dialplan,all", "content": "", "Value": "ANSWER", "Variable": "DIALSTATUS"}, -{"DialStatus": "ANSWER", "SubEvent": "End", "content": "", "Privilege": "call,all", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Event": "Dial", "UniqueID": "vgua0-dev-1442387042.546"}, -{"Uniqueid": "vgua0-dev-1442387042.546", "content": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Privilege": "call,all", "Event": "SoftHangupRequest", "Cause": "16"}, -{"Extension": "onhangup", "AppData": "1?nosip", "Uniqueid": "vgua0-dev-1442387042.546", "content": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Context": "handlers", "Privilege": "dialplan,all", "Application": "GotoIf", "Event": "Newexten", "Priority": "1"}, -{"Extension": "onhangup", "AppData": "0?osvpi_proc_httptouch,s,1()", "Uniqueid": "vgua0-dev-1442387042.546", "content": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Context": "handlers", "Privilege": "dialplan,all", "Application": "GosubIf", "Event": "Newexten", "Priority": "3"}, -{"CallerIDName": "", "Uniqueid": "vgua0-dev-1442387042.546", "content": "", "Privilege": "call,all", "Cause": "16", "ConnectedLineName": "", "AccountCode": "12668", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000088;2", "Cause-txt": "Normal Clearing", "CallerIDNum": "126680001", "Event": "Hangup", "ConnectedLineNum": "+31508009000"}, -{"Event": "MusicOnHold", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "call,all", "Class": "default", "content": "", "State": "Start", "UniqueID": "vgua0-dev-1442387041.544"}, -{"CallerIDName": "", "Uniqueid": "vgua0-dev-1442387044.548", "Event": "Newchannel", "Context": "osvpi_account", "ChannelState": "0", "ChannelStateDesc": "Down", "Privilege": "call,all", "AccountCode": "126680001", "CallerIDNum": "126680001", "Exten": "202", "Channel": "SIP/126680001-00000112", "content": ""}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "sip:126680001@6.6.6.6:5071", "Variable": "SIPURI"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "1.2.3.4", "Variable": "SIPDOMAIN"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "dedup///60bd47521c5c6516672caa9e798e8969@5.5.5.5:5060", "Variable": "SIPCALLID"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "12668", "Variable": "__client_id"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "126680001", "Variable": "__account_id"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "no", "Variable": "__record_call"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "31", "Variable": "__intprefix"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "4", "Variable": "__limit_account"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "0", "Variable": "__limit_client"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "1", "Variable": "__hide_ext_cliname"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "osvpi_account_transfer", "Variable": "__TRANSFER_CONTEXT"}, -{"CallerIDName": "", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1442387044.548", "Event": "Newstate", "Channel": "SIP/126680001-00000112", "ChannelStateDesc": "Ring", "ChannelState": "4", "CallerIDNum": "126680001", "content": "", "ConnectedLineNum": "", "ConnectedLineName": ""}, -{"Extension": "202", "AppData": "0?GotoIf(1?osvpi_proc_hangup_insecure,202,1)", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_account", "Privilege": "dialplan,all", "Application": "ExecIf", "Event": "Newexten", "Priority": "1"}, -{"Extension": "202", "AppData": "osvpi_proc_check_forwards,s,1", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_account", "Privilege": "dialplan,all", "Application": "Gosub", "Event": "Newexten", "Priority": "2"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "0", "Variable": "LOCAL(ARGC)"}, -{"Extension": "s", "AppData": "0?check,1", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_proc_check_forwards", "Privilege": "dialplan,all", "Application": "GotoIf", "Event": "Newexten", "Priority": "1"}, -{"Extension": "s", "AppData": "LOCAL(tmp)=", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_proc_check_forwards", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "2"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "LOCAL(tmp)"}, -{"Extension": "s", "AppData": "1?Goto(init,1)", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_proc_check_forwards", "Privilege": "dialplan,all", "Application": "ExecIf", "Event": "Newexten", "Priority": "3"}, -{"Extension": "init", "AppData": "MASTER_CHANNEL(SIP_MAX_FORWARDS)=16", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_proc_check_forwards", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "1"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "16", "Variable": "SIP_MAX_FORWARDS"}, -{"Extension": "init", "AppData": "DEBUG: MaxForwards: initialized to: 16", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_proc_check_forwards", "Privilege": "dialplan,all", "Application": "NoOp", "Event": "Newexten", "Priority": "2"}, -{"Extension": "init", "AppData": "", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_proc_check_forwards", "Privilege": "dialplan,all", "Application": "Return", "Event": "Newexten", "Priority": "3"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "GOSUB_RETVAL"}, -{"Extension": "202", "AppData": "0?osvpi_account_transfer,202,1", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_account", "Privilege": "dialplan,all", "Application": "GotoIf", "Event": "Newexten", "Priority": "3"}, -{"Extension": "202", "AppData": "ENTRY POINT username=126680001,ip=1.2.3.4/1.2.3.4,from=sip:126680001@6.6.6.6:5071;tag=16822SIPpTag001,contact=sip:126680001@6.6.6.6:5071,ua=,name=,num=126680001,pres=allowed_not_screened", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_account", "Privilege": "dialplan,all", "Application": "NoOp", "Event": "Newexten", "Priority": "4"}, -{"Extension": "202", "AppData": "is_transfer=0", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_account", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "5"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "0", "Variable": "is_transfer"}, -{"Extension": "202", "AppData": "CDR(amaflags)=BILLING", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_account", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "6"}, -{"Extension": "202", "AppData": "user_privacy=0", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_account", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "7"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "0", "Variable": "user_privacy"}, -{"Extension": "202", "AppData": "1?Set(__supports_progress=1)", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_account", "Privilege": "dialplan,all", "Application": "ExecIf", "Event": "Newexten", "Priority": "8"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "1", "Variable": "__supports_progress"}, -{"Extension": "202", "AppData": "osvpi_proc_record_call,s-no,1(out,12668,126680001)", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_account", "Privilege": "dialplan,all", "Application": "Gosub", "Event": "Newexten", "Priority": "9"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "out", "Variable": "LOCAL(ARG1)"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "12668", "Variable": "LOCAL(ARG2)"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "126680001", "Variable": "LOCAL(ARG3)"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "3", "Variable": "LOCAL(ARGC)"}, -{"Extension": "s-no", "AppData": "", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_proc_record_call", "Privilege": "dialplan,all", "Application": "Return", "Event": "Newexten", "Priority": "1"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "GOSUB_RETVAL"}, -{"Extension": "202", "AppData": "l_tmp=", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_account", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "10"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "l_tmp"}, -{"Extension": "202", "AppData": "1?Set(l_tmp=)", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_account", "Privilege": "dialplan,all", "Application": "ExecIf", "Event": "Newexten", "Priority": "11"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "l_tmp"}, -{"Extension": "202", "AppData": "1?checkprivacy", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_account", "Privilege": "dialplan,all", "Application": "GotoIf", "Event": "Newexten", "Priority": "12"}, -{"Extension": "202", "AppData": "0?Set(CALLERPRES()=allowed_passed_screen)", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_account", "Privilege": "dialplan,all", "Application": "ExecIf", "Event": "Newexten", "Priority": "16"}, -{"Extension": "202", "AppData": "0?Set(CALLERPRES()=prohib_passed_screen)", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_account", "Privilege": "dialplan,all", "Application": "ExecIf", "Event": "Newexten", "Priority": "17"}, -{"Extension": "202", "AppData": "0?Set(CHANNEL(musicclass)=)", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_account", "Privilege": "dialplan,all", "Application": "ExecIf", "Event": "Newexten", "Priority": "18"}, -{"Extension": "202", "AppData": "1?continue", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_account", "Privilege": "dialplan,all", "Application": "GotoIf", "Event": "Newexten", "Priority": "19"}, -{"Extension": "202", "AppData": "osvpi_proc_set_i18n_region,31,1", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_account", "Privilege": "dialplan,all", "Application": "Gosub", "Event": "Newexten", "Priority": "22"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "0", "Variable": "LOCAL(ARGC)"}, -{"Extension": "31", "AppData": "i18n_region=NL", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_proc_set_i18n_region", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "1"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "NL", "Variable": "i18n_region"}, -{"Extension": "31", "AppData": "", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_proc_set_i18n_region", "Privilege": "dialplan,all", "Application": "Return", "Event": "Newexten", "Priority": "2"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "GOSUB_RETVAL"}, -{"Extension": "202", "AppData": "osvpi_account_emergency_NL,202,1", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_account", "Privilege": "dialplan,all", "Application": "Goto", "Event": "Newexten", "Priority": "23"}, -{"Extension": "202", "AppData": "osvpi_account_no_emergency,202,1", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_account_emergency_NL", "Privilege": "dialplan,all", "Application": "Goto", "Event": "Newexten", "Priority": "1"}, -{"Extension": "202", "AppData": "osvpi_account,202,no-emergency", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_account_no_emergency", "Privilege": "dialplan,all", "Application": "Goto", "Event": "Newexten", "Priority": "1"}, -{"Extension": "202", "AppData": "osvpi_account_clean,202,1", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_account", "Privilege": "dialplan,all", "Application": "Goto", "Event": "Newexten", "Priority": "24"}, -{"Extension": "202", "AppData": "return=osvpi_account_clean", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_account_clean", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "1"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "osvpi_account_clean", "Variable": "return"}, -{"Extension": "202", "AppData": "osvpi_return_to_canonical,31i202,1", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_account_clean", "Privilege": "dialplan,all", "Application": "Goto", "Event": "Newexten", "Priority": "2"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "31i202", "Variable": "INVALID_EXTEN"}, -{"Extension": "i", "AppData": "osvpi_account_clean,202,local", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_return_to_canonical", "Privilege": "dialplan,all", "Application": "Goto", "Event": "Newexten", "Priority": "1"}, -{"Extension": "202", "AppData": "0?extern", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_account_clean", "Privilege": "dialplan,all", "Application": "GotoIf", "Event": "Newexten", "Priority": "3"}, -{"Extension": "202", "AppData": "osvpi_proc_set_callerid,202,1(126680001,0,0)", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_account_clean", "Privilege": "dialplan,all", "Application": "Gosub", "Event": "Newexten", "Priority": "4"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "126680001", "Variable": "LOCAL(ARG1)"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "0", "Variable": "LOCAL(ARG2)"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "0", "Variable": "LOCAL(ARG3)"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "3", "Variable": "LOCAL(ARGC)"}, -{"Extension": "202", "AppData": "0?done", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_proc_set_callerid", "Privilege": "dialplan,all", "Application": "GotoIf", "Event": "Newexten", "Priority": "1"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "1", "Variable": "ODBCROWS"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "SUCCESS", "Variable": "ODBCSTATUS"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "set,privacy,name,number_int,number_ext", "Variable": "~ODBCFIELDS~"}, -{"Extension": "202", "AppData": "ARRAY(LOCAL(set),LOCAL(privacy),LOCAL(name),LOCAL(number_int),LOCAL(number_ext))=1,0,,201,+31508009000", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_proc_set_callerid", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "2"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "1", "Variable": "LOCAL(set)"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "0", "Variable": "LOCAL(privacy)"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "LOCAL(name)"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "201", "Variable": "LOCAL(number_int)"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "+31508009000", "Variable": "LOCAL(number_ext)"}, -{"Extension": "202", "AppData": "0?presentation", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_proc_set_callerid", "Privilege": "dialplan,all", "Application": "GotoIf", "Event": "Newexten", "Priority": "3"}, -{"Extension": "202", "AppData": "CALLERPRES()=allowed_passed_screen", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_proc_set_callerid", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "4"}, -{"Extension": "202", "AppData": "CALLERID(name)=", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_proc_set_callerid", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "5"}, -{"Extension": "202", "AppData": "CALLERID(num)=201", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_proc_set_callerid", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "6"}, -{"CallerIDName": "", "Uniqueid": "vgua0-dev-1442387044.548", "Event": "NewCallerid", "Channel": "SIP/126680001-00000112", "CallerIDNum": "201", "Privilege": "call,all", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "content": ""}, -{"Extension": "202", "AppData": "0?Set(CALLERPRES()=prohib_passed_screen)", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_proc_set_callerid", "Privilege": "dialplan,all", "Application": "ExecIf", "Event": "Newexten", "Priority": "7"}, -{"Extension": "202", "AppData": "CALLERID(ANI)=201", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_proc_set_callerid", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "8"}, -{"Extension": "202", "AppData": "osvpi_proc_set_callerid_internal,202,1", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_proc_set_callerid", "Privilege": "dialplan,all", "Application": "Gosub", "Event": "Newexten", "Priority": "9"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "LOCAL(ARG1)"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "LOCAL(ARG2)"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "LOCAL(ARG3)"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "0", "Variable": "LOCAL(ARGC)"}, -{"Extension": "202", "AppData": "1?nop", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_proc_set_callerid_internal", "Privilege": "dialplan,all", "Application": "GotoIf", "Event": "Newexten", "Priority": "1"}, -{"Extension": "202", "AppData": "0?Set(CALLERID(ANI)=20)", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_proc_set_callerid_internal", "Privilege": "dialplan,all", "Application": "ExecIf", "Event": "Newexten", "Priority": "5"}, -{"Extension": "202", "AppData": "", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_proc_set_callerid_internal", "Privilege": "dialplan,all", "Application": "Return", "Event": "Newexten", "Priority": "6"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "GOSUB_RETVAL"}, -{"Extension": "202", "AppData": "", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_proc_set_callerid", "Privilege": "dialplan,all", "Application": "Return", "Event": "Newexten", "Priority": "10"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "GOSUB_RETVAL"}, -{"Extension": "202", "AppData": "3?osvpi_account_call_int,202,1:i,1", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_account_clean", "Privilege": "dialplan,all", "Application": "GotoIf", "Event": "Newexten", "Priority": "5"}, -{"Extension": "202", "AppData": "osvpi_proc_check_limits,202,1", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_account_call_int", "Privilege": "dialplan,all", "Application": "Gosub", "Event": "Newexten", "Priority": "1"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "0", "Variable": "LOCAL(ARGC)"}, -{"Extension": "202", "AppData": "DEBUG: call_limit: client 0/0 and account 0/4", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_proc_check_limits", "Privilege": "dialplan,all", "Application": "NoOp", "Event": "Newexten", "Priority": "1"}, -{"Extension": "202", "AppData": "0?osvpi_handle_limit,202,client", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_proc_check_limits", "Privilege": "dialplan,all", "Application": "GotoIf", "Event": "Newexten", "Priority": "2"}, -{"Extension": "202", "AppData": "0?osvpi_handle_limit,202,account", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_proc_check_limits", "Privilege": "dialplan,all", "Application": "GotoIf", "Event": "Newexten", "Priority": "3"}, -{"Extension": "202", "AppData": "GROUP(account_lim)=126680001", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_proc_check_limits", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "4"}, -{"Extension": "202", "AppData": "GROUP(client_lim)=12668", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_proc_check_limits", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "5"}, -{"Extension": "202", "AppData": "", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_proc_check_limits", "Privilege": "dialplan,all", "Application": "Return", "Event": "Newexten", "Priority": "6"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "GOSUB_RETVAL"}, -{"Extension": "202", "AppData": "osvpi_proc_check_recurse,202,1(12668)", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_account_call_int", "Privilege": "dialplan,all", "Application": "Gosub", "Event": "Newexten", "Priority": "2"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "12668", "Variable": "LOCAL(ARG1)"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "1", "Variable": "LOCAL(ARGC)"}, -{"Extension": "202", "AppData": "LOCAL(exten)=12668:202", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_proc_check_recurse", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "1"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "12668:202", "Variable": "LOCAL(exten)"}, -{"Extension": "202", "AppData": "Recursion checking 12668:202 against ", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_proc_check_recurse", "Privilege": "dialplan,all", "Application": "NoOp", "Event": "Newexten", "Priority": "2"}, -{"Extension": "202", "AppData": "LOCAL(n)=0", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_proc_check_recurse", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "3"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "0", "Variable": "LOCAL(n)"}, -{"Extension": "202", "AppData": "LOCAL(i)=1", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_proc_check_recurse", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "4"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "1", "Variable": "LOCAL(i)"}, -{"Extension": "202", "AppData": "1?add", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_proc_check_recurse", "Privilege": "dialplan,all", "Application": "GotoIf", "Event": "Newexten", "Priority": "5"}, -{"Extension": "202", "AppData": "__EXTEN_LIST=12668:202 ", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_proc_check_recurse", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "9"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "12668:202 ", "Variable": "__EXTEN_LIST"}, -{"Extension": "202", "AppData": "", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_proc_check_recurse", "Privilege": "dialplan,all", "Application": "Return", "Event": "Newexten", "Priority": "10"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "GOSUB_RETVAL"}, -{"Extension": "202", "AppData": "__ORIG_EXTEN=202", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_account_call_int", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "3"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "202", "Variable": "__ORIG_EXTEN"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "0", "Variable": "ODBCROWS"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "NODATA", "Variable": "ODBCSTATUS"}, -{"Extension": "202", "AppData": "ARRAY(conference_id,user_password,admin_password,conference_language)=", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_account_call_int", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "4"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "conference_id"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "user_password"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "admin_password"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "conference_language"}, -{"Extension": "202", "AppData": "0?osvpi_route_conference,ID,1", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_account_call_int", "Privilege": "dialplan,all", "Application": "GotoIf", "Event": "Newexten", "Priority": "5"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "0", "Variable": "ODBCROWS"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "NODATA", "Variable": "ODBCSTATUS"}, -{"Extension": "202", "AppData": "ARRAY(route_id,client_timezone)=", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_account_call_int", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "6"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "route_id"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "client_timezone"}, -{"Extension": "202", "AppData": "0?route,1", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_account_call_int", "Privilege": "dialplan,all", "Application": "GotoIf", "Event": "Newexten", "Priority": "7"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "0", "Variable": "ODBCROWS"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "NODATA", "Variable": "ODBCSTATUS"}, -{"Extension": "202", "AppData": "ARRAY(all_extensions,limited_extensions,password)=", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_account_call_int", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "8"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "all_extensions"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "limited_extensions"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "password"}, -{"Extension": "202", "AppData": "0?osvpi_account_spy,202,1", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_account_call_int", "Privilege": "dialplan,all", "Application": "GotoIf", "Event": "Newexten", "Priority": "9"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "1", "Variable": "ODBCROWS"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "SUCCESS", "Variable": "ODBCSTATUS"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "interfaces", "Variable": "~ODBCFIELDS~"}, -{"Extension": "202", "AppData": "ARRAY(interfaces)=Local/ID12@osvpi_route_phoneaccount", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_account_call_int", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "10"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "Local/ID12@osvpi_route_phoneaccount", "Variable": "interfaces"}, -{"Extension": "202", "AppData": "0?osvpi_handle_unallocated,202,1", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_account_call_int", "Privilege": "dialplan,all", "Application": "GotoIf", "Event": "Newexten", "Priority": "11"}, -{"Extension": "202", "AppData": "Local/ID12@osvpi_route_phoneaccount", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/126680001-00000112", "Context": "osvpi_account_call_int", "Privilege": "dialplan,all", "Application": "Dial", "Event": "Newexten", "Priority": "12"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "DIALSTATUS"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "DIALEDPEERNUMBER"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "DIALEDPEERNAME"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "ANSWEREDTIME"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "DIALEDTIME"}, -{"CallerIDName": "", "Uniqueid": "vgua0-dev-1442387044.549", "Event": "Newchannel", "Context": "osvpi_route_phoneaccount", "ChannelState": "0", "ChannelStateDesc": "Down", "Privilege": "call,all", "AccountCode": "", "CallerIDNum": "", "Exten": "ID12", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;1", "content": ""}, -{"CallerIDName": "", "Uniqueid": "vgua0-dev-1442387044.550", "Event": "Newchannel", "Context": "osvpi_route_phoneaccount", "ChannelState": "4", "ChannelStateDesc": "Ring", "Privilege": "call,all", "AccountCode": "", "CallerIDNum": "", "Exten": "ID12", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "content": ""}, -{"Uniqueid": "vgua0-dev-1442387044.549", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;1", "Privilege": "dialplan,all", "content": "", "Value": "ID12@osvpi_route_phoneaccount", "Variable": "DIALEDPEERNUMBER"}, -{"CallerIDName": "", "Uniqueid": "vgua0-dev-1442387044.549", "Event": "NewCallerid", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;1", "CallerIDNum": "202", "Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": ""}, -{"Privilege": "call,all", "Event": "LocalBridge", "Channel1": "Local/ID12@osvpi_route_phoneaccount-00000089;1", "Context": "osvpi_route_phoneaccount", "Exten": "ID12", "Uniqueid1": "vgua0-dev-1442387044.549", "Uniqueid2": "vgua0-dev-1442387044.550", "content": "", "LocalOptimization": "Yes", "Channel2": "Local/ID12@osvpi_route_phoneaccount-00000089;2"}, -{"CallerIDName": "", "Destination": "Local/ID12@osvpi_route_phoneaccount-00000089;1", "DestUniqueID": "vgua0-dev-1442387044.549", "content": "", "Privilege": "call,all", "Dialstring": "ID12@osvpi_route_phoneaccount", "ConnectedLineName": "", "UniqueID": "vgua0-dev-1442387044.548", "SubEvent": "Begin", "CallerIDNum": "201", "Event": "Dial", "Channel": "SIP/126680001-00000112", "ConnectedLineNum": ""}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "1", "Variable": "ODBCROWS"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "SUCCESS", "Variable": "ODBCSTATUS"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account", "Variable": "~ODBCFIELDS~"}, -{"Extension": "ID12", "AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=126680002,accountid,fullplus,rpid,,0", "Uniqueid": "vgua0-dev-1442387044.550", "content": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Context": "osvpi_route_phoneaccount", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "1"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "126680002", "Variable": "__dst_account_id"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "accountid", "Variable": "l_mangle_did"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "fullplus", "Variable": "l_mangle_cli"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "rpid", "Variable": "l_cli_header"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "l_primary_pickupgroup"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "0", "Variable": "app_account"}, -{"Extension": "ID12", "AppData": "0?vialer", "Uniqueid": "vgua0-dev-1442387044.550", "content": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Context": "osvpi_route_phoneaccount", "Privilege": "dialplan,all", "Application": "GotoIf", "Event": "Newexten", "Priority": "2"}, -{"Extension": "ID12", "AppData": "_PICKUPMARK=", "Uniqueid": "vgua0-dev-1442387044.550", "content": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Context": "osvpi_route_phoneaccount", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "3"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "_PICKUPMARK"}, -{"Extension": "ID12", "AppData": "l_trunk=0", "Uniqueid": "vgua0-dev-1442387044.550", "content": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Context": "osvpi_route_phoneaccount", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "4"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "0", "Variable": "l_trunk"}, -{"Extension": "ID12", "AppData": "osvpi_route_account,ID12,1", "Uniqueid": "vgua0-dev-1442387044.550", "content": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Context": "osvpi_route_phoneaccount", "Privilege": "dialplan,all", "Application": "Goto", "Event": "Newexten", "Priority": "5"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "1", "Variable": "ODBCROWS"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "SUCCESS", "Variable": "ODBCSTATUS"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "proxy,secret", "Variable": "~ODBCFIELDS~"}, -{"Extension": "ID12", "AppData": "ARRAY(l_proxy,l_secret)=1.2.3.4,XXX", "Uniqueid": "vgua0-dev-1442387044.550", "content": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "1"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "1.2.3.4", "Variable": "l_proxy"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "XXX", "Variable": "l_secret"}, -{"Extension": "ID12", "AppData": "osvpi_proc_mangle_number,accountid,1(126680002,202)", "Uniqueid": "vgua0-dev-1442387044.550", "content": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "Application": "Gosub", "Event": "Newexten", "Priority": "2"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "126680002", "Variable": "LOCAL(ARG1)"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "202", "Variable": "LOCAL(ARG2)"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "2", "Variable": "LOCAL(ARGC)"}, -{"Extension": "accountid", "AppData": "MANGLED_EXTEN=126680002", "Uniqueid": "vgua0-dev-1442387044.550", "content": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Context": "osvpi_proc_mangle_number", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "1"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "126680002", "Variable": "MANGLED_EXTEN"}, -{"Extension": "accountid", "AppData": "", "Uniqueid": "vgua0-dev-1442387044.550", "content": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Context": "osvpi_proc_mangle_number", "Privilege": "dialplan,all", "Application": "Return", "Event": "Newexten", "Priority": "2"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "GOSUB_RETVAL"}, -{"Extension": "ID12", "AppData": "l_did=126680002", "Uniqueid": "vgua0-dev-1442387044.550", "content": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "3"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "126680002", "Variable": "l_did"}, -{"Extension": "ID12", "AppData": "osvpi_proc_mangle_number,fullplus,1(126680002,201)", "Uniqueid": "vgua0-dev-1442387044.550", "content": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "Application": "Gosub", "Event": "Newexten", "Priority": "4"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "126680002", "Variable": "LOCAL(ARG1)"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "201", "Variable": "LOCAL(ARG2)"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "2", "Variable": "LOCAL(ARGC)"}, -{"Extension": "fullplus", "AppData": "MANGLED_EXTEN=201", "Uniqueid": "vgua0-dev-1442387044.550", "content": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Context": "osvpi_proc_mangle_number", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "1"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "201", "Variable": "MANGLED_EXTEN"}, -{"Extension": "fullplus", "AppData": "", "Uniqueid": "vgua0-dev-1442387044.550", "content": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Context": "osvpi_proc_mangle_number", "Privilege": "dialplan,all", "Application": "Return", "Event": "Newexten", "Priority": "2"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "GOSUB_RETVAL"}, -{"Extension": "ID12", "AppData": "l_cli=201", "Uniqueid": "vgua0-dev-1442387044.550", "content": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "5"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "201", "Variable": "l_cli"}, -{"Extension": "ID12", "AppData": "l_privacy=0", "Uniqueid": "vgua0-dev-1442387044.550", "content": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "6"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "0", "Variable": "l_privacy"}, -{"Extension": "ID12", "AppData": "0?clifrom", "Uniqueid": "vgua0-dev-1442387044.550", "content": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "Application": "GotoIf", "Event": "Newexten", "Priority": "7"}, -{"Extension": "ID12", "AppData": "1?clirpid", "Uniqueid": "vgua0-dev-1442387044.550", "content": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "Application": "GotoIf", "Event": "Newexten", "Priority": "8"}, -{"Extension": "ID12", "AppData": "CALLERID(num)=126680002", "Uniqueid": "vgua0-dev-1442387044.550", "content": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "11"}, -{"CallerIDName": "", "Uniqueid": "vgua0-dev-1442387044.550", "Event": "NewCallerid", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "CallerIDNum": "126680002", "Privilege": "call,all", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "content": ""}, -{"Extension": "ID12", "AppData": "0?SIPAddHeader(Remote-Party-ID: \\\"\\\" \\;privacy=off\\;screen=yes)", "Uniqueid": "vgua0-dev-1442387044.550", "content": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "Application": "ExecIf", "Event": "Newexten", "Priority": "12"}, -{"Extension": "ID12", "AppData": "1?SIPAddHeader(Remote-Party-ID: \\;privacy=off\\;screen=yes)", "Uniqueid": "vgua0-dev-1442387044.550", "content": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "Application": "ExecIf", "Event": "Newexten", "Priority": "13"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "Remote-Party-ID: ;privacy=off;screen=yes", "Variable": "__SIPADDHEADER01"}, -{"Extension": "ID12", "AppData": "0?SIPAddHeader(Remote-Party-ID: \\\"Anonymous\\\" \\;privacy=full\\;screen=yes)", "Uniqueid": "vgua0-dev-1442387044.550", "content": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "Application": "ExecIf", "Event": "Newexten", "Priority": "14"}, -{"Extension": "ID12", "AppData": "CALLERID(name)=", "Uniqueid": "vgua0-dev-1442387044.550", "content": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "15"}, -{"Extension": "ID12", "AppData": "CALLERPRES()=allowed_passed_screen", "Uniqueid": "vgua0-dev-1442387044.550", "content": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "Application": "Set", "Event": "Newexten", "Priority": "16"}, -{"Extension": "ID12", "AppData": "osvpi_proc_proxy_out,202,1", "Uniqueid": "vgua0-dev-1442387044.550", "content": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "Application": "Goto", "Event": "Newexten", "Priority": "17"}, -{"Extension": "202", "AppData": "X-Accountcode: 126680002", "Uniqueid": "vgua0-dev-1442387044.550", "content": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Context": "osvpi_proc_proxy_out", "Privilege": "dialplan,all", "Application": "SIPAddHeader", "Event": "Newexten", "Priority": "1"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "X-Accountcode: 126680002", "Variable": "__SIPADDHEADER02"}, -{"Extension": "202", "AppData": "X-Custom-Header: customflag", "Uniqueid": "vgua0-dev-1442387044.550", "content": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Context": "osvpi_proc_proxy_out", "Privilege": "dialplan,all", "Application": "SIPAddHeader", "Event": "Newexten", "Priority": "2"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "X-Custom-Header: customflag", "Variable": "__SIPADDHEADER03"}, -{"Extension": "202", "AppData": "0?Set(l_proxy=1.2.3.4)", "Uniqueid": "vgua0-dev-1442387044.550", "content": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Context": "osvpi_proc_proxy_out", "Privilege": "dialplan,all", "Application": "ExecIf", "Event": "Newexten", "Priority": "3"}, -{"Extension": "202", "AppData": "SIP/126680002/126680002/1.2.3.4,,", "Uniqueid": "vgua0-dev-1442387044.550", "content": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Context": "osvpi_proc_proxy_out", "Privilege": "dialplan,all", "Application": "Dial", "Event": "Newexten", "Priority": "4"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "DIALSTATUS"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "DIALEDPEERNUMBER"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "DIALEDPEERNAME"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "ANSWEREDTIME"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "", "Variable": "DIALEDTIME"}, -{"CallerIDName": "", "Uniqueid": "vgua0-dev-1442387044.551", "Event": "Newchannel", "Context": "osvpi_account", "ChannelState": "0", "ChannelStateDesc": "Down", "Privilege": "call,all", "AccountCode": "126680002", "CallerIDNum": "", "Exten": "", "Channel": "SIP/126680002-00000113", "content": ""}, -{"Uniqueid": "vgua0-dev-1442387044.551", "Event": "VarSet", "Channel": "SIP/126680002-00000113", "Privilege": "dialplan,all", "content": "", "Value": "242c5fd467edfa645943fa85073308b0@5.5.5.5:5060", "Variable": "SIPCALLID"}, -{"Uniqueid": "vgua0-dev-1442387044.551", "Event": "VarSet", "Channel": "SIP/126680002-00000113", "Privilege": "dialplan,all", "content": "", "Value": "12668", "Variable": "__client_id"}, -{"Uniqueid": "vgua0-dev-1442387044.551", "Event": "VarSet", "Channel": "SIP/126680002-00000113", "Privilege": "dialplan,all", "content": "", "Value": "126680002", "Variable": "__account_id"}, -{"Uniqueid": "vgua0-dev-1442387044.551", "Event": "VarSet", "Channel": "SIP/126680002-00000113", "Privilege": "dialplan,all", "content": "", "Value": "no", "Variable": "__record_call"}, -{"Uniqueid": "vgua0-dev-1442387044.551", "Event": "VarSet", "Channel": "SIP/126680002-00000113", "Privilege": "dialplan,all", "content": "", "Value": "31", "Variable": "__intprefix"}, -{"Uniqueid": "vgua0-dev-1442387044.551", "Event": "VarSet", "Channel": "SIP/126680002-00000113", "Privilege": "dialplan,all", "content": "", "Value": "4", "Variable": "__limit_account"}, -{"Uniqueid": "vgua0-dev-1442387044.551", "Event": "VarSet", "Channel": "SIP/126680002-00000113", "Privilege": "dialplan,all", "content": "", "Value": "0", "Variable": "__limit_client"}, -{"Uniqueid": "vgua0-dev-1442387044.551", "Event": "VarSet", "Channel": "SIP/126680002-00000113", "Privilege": "dialplan,all", "content": "", "Value": "1", "Variable": "__hide_ext_cliname"}, -{"Uniqueid": "vgua0-dev-1442387044.551", "Event": "VarSet", "Channel": "SIP/126680002-00000113", "Privilege": "dialplan,all", "content": "", "Value": "osvpi_account_transfer", "Variable": "__TRANSFER_CONTEXT"}, -{"Uniqueid": "vgua0-dev-1442387044.551", "Event": "VarSet", "Channel": "SIP/126680002-00000113", "Privilege": "dialplan,all", "content": "", "Value": "126680002/126680002/1.2.3.4", "Variable": "DIALEDPEERNUMBER"}, -{"CallerIDName": "", "Uniqueid": "vgua0-dev-1442387044.551", "Event": "NewCallerid", "Channel": "SIP/126680002-00000113", "CallerIDNum": "202", "Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": ""}, -{"CallerIDName": "", "Destination": "SIP/126680002-00000113", "DestUniqueID": "vgua0-dev-1442387044.551", "content": "", "Privilege": "call,all", "Dialstring": "126680002/126680002/1.2.3.4", "ConnectedLineName": "", "UniqueID": "vgua0-dev-1442387044.550", "SubEvent": "Begin", "CallerIDNum": "126680002", "Event": "Dial", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "ConnectedLineNum": "202"}, -{"CallerIDName": "", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1442387044.551", "Event": "Newstate", "Channel": "SIP/126680002-00000113", "ChannelStateDesc": "Ringing", "ChannelState": "5", "CallerIDNum": "202", "content": "", "ConnectedLineNum": "126680002", "ConnectedLineName": ""}, -{"CallerIDName": "", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1442387044.549", "Event": "Newstate", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;1", "ChannelStateDesc": "Ringing", "ChannelState": "5", "CallerIDNum": "202", "content": "", "ConnectedLineNum": "201", "ConnectedLineName": ""}, -{"CallerIDName": "", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1442387044.551", "Event": "Newstate", "Channel": "SIP/126680002-00000113", "ChannelStateDesc": "Up", "ChannelState": "6", "CallerIDNum": "202", "content": "", "ConnectedLineNum": "126680002", "ConnectedLineName": ""}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "ANSWER", "Variable": "DIALSTATUS"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "SIP/126680002-00000113", "Variable": "DIALEDPEERNAME"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "126680002/126680002/1.2.3.4", "Variable": "DIALEDPEERNUMBER"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "SIP/126680002-00000113", "Variable": "BRIDGEPEER"}, -{"Uniqueid": "vgua0-dev-1442387044.551", "Event": "VarSet", "Channel": "SIP/126680002-00000113", "Privilege": "dialplan,all", "content": "", "Value": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Variable": "BRIDGEPEER"}, -{"CallerIDName": "", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1442387044.549", "Event": "Newstate", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;1", "ChannelStateDesc": "Up", "ChannelState": "6", "CallerIDNum": "202", "content": "", "ConnectedLineNum": "201", "ConnectedLineName": ""}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "ANSWER", "Variable": "DIALSTATUS"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "Local/ID12@osvpi_route_phoneaccount-00000089;1", "Variable": "DIALEDPEERNAME"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "ID12@osvpi_route_phoneaccount", "Variable": "DIALEDPEERNUMBER"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "Local/ID12@osvpi_route_phoneaccount-00000089;1", "Variable": "BRIDGEPEER"}, -{"Uniqueid": "vgua0-dev-1442387044.549", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;1", "Privilege": "dialplan,all", "content": "", "Value": "SIP/126680001-00000112", "Variable": "BRIDGEPEER"}, -{"CallerIDName": "", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1442387044.548", "Event": "Newstate", "Channel": "SIP/126680001-00000112", "ChannelStateDesc": "Up", "ChannelState": "6", "CallerIDNum": "201", "content": "", "ConnectedLineNum": "", "ConnectedLineName": ""}, -{"CallerIDName": "", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1442387044.550", "Event": "Newstate", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "ChannelStateDesc": "Up", "ChannelState": "6", "CallerIDNum": "126680002", "content": "", "ConnectedLineNum": "202", "ConnectedLineName": ""}, -{"Uniqueid": "vgua0-dev-1442387044.551", "AccountCode": "126680001", "Channel": "SIP/126680002-00000113", "Privilege": "call,all", "content": "", "Event": "NewAccountCode", "OldAccountCode": "126680001"}, -{"Privilege": "call,all", "Event": "Bridge", "Channel1": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "CallerID1": "126680002", "Bridgetype": "core", "Uniqueid1": "vgua0-dev-1442387044.550", "CallerID2": "202", "Uniqueid2": "vgua0-dev-1442387044.551", "content": "", "Channel2": "SIP/126680002-00000113", "Bridgestate": "Link"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "SIP/126680002-00000113", "Variable": "BRIDGEPEER"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "242c5fd467edfa645943fa85073308b0@5.5.5.5:5060", "Variable": "BRIDGEPVTCALLID"}, -{"Uniqueid": "vgua0-dev-1442387044.551", "Event": "VarSet", "Channel": "SIP/126680002-00000113", "Privilege": "dialplan,all", "content": "", "Value": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Variable": "BRIDGEPEER"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "SIP/126680002-00000113", "Variable": "BRIDGEPEER"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "242c5fd467edfa645943fa85073308b0@5.5.5.5:5060", "Variable": "BRIDGEPVTCALLID"}, -{"Uniqueid": "vgua0-dev-1442387044.551", "Event": "VarSet", "Channel": "SIP/126680002-00000113", "Privilege": "dialplan,all", "content": "", "Value": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Variable": "BRIDGEPEER"}, -{"Uniqueid": "vgua0-dev-1442387044.549", "AccountCode": "126680001", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;1", "Privilege": "call,all", "content": "", "Event": "NewAccountCode", "OldAccountCode": "126680001"}, -{"Privilege": "call,all", "Event": "Bridge", "Channel1": "SIP/126680001-00000112", "CallerID1": "201", "Bridgetype": "core", "Uniqueid1": "vgua0-dev-1442387044.548", "CallerID2": "202", "Uniqueid2": "vgua0-dev-1442387044.549", "content": "", "Channel2": "Local/ID12@osvpi_route_phoneaccount-00000089;1", "Bridgestate": "Link"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "Local/ID12@osvpi_route_phoneaccount-00000089;1", "Variable": "BRIDGEPEER"}, -{"Uniqueid": "vgua0-dev-1442387044.549", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;1", "Privilege": "dialplan,all", "content": "", "Value": "SIP/126680001-00000112", "Variable": "BRIDGEPEER"}, -{"Uniqueid": "vgua0-dev-1442387044.549", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;1", "Privilege": "dialplan,all", "content": "", "Value": "dedup///60bd47521c5c6516672caa9e798e8969@5.5.5.5:5060", "Variable": "BRIDGEPVTCALLID"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "Local/ID12@osvpi_route_phoneaccount-00000089;1", "Variable": "BRIDGEPEER"}, -{"Uniqueid": "vgua0-dev-1442387044.549", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;1", "Privilege": "dialplan,all", "content": "", "Value": "SIP/126680001-00000112", "Variable": "BRIDGEPEER"}, -{"Uniqueid": "vgua0-dev-1442387044.549", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;1", "Privilege": "dialplan,all", "content": "", "Value": "dedup///60bd47521c5c6516672caa9e798e8969@5.5.5.5:5060", "Variable": "BRIDGEPVTCALLID"}, -{"Clone": "SIP/126680002-00000113", "OriginalState": "Up", "CloneState": "Up", "Privilege": "call,all", "content": "", "Event": "Masquerade", "Original": "Local/ID12@osvpi_route_phoneaccount-00000089;1"}, -{"Uniqueid": "vgua0-dev-1442387044.551", "Newname": "SIP/126680002-00000113", "Channel": "SIP/126680002-00000113", "Privilege": "call,all", "content": "", "Event": "Rename"}, -{"Uniqueid": "vgua0-dev-1442387044.549", "Newname": "SIP/126680002-00000113", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;1", "Privilege": "call,all", "content": "", "Event": "Rename"}, -{"Uniqueid": "vgua0-dev-1442387044.551", "Newname": "Local/ID12@osvpi_route_phoneaccount-00000089;1", "Channel": "SIP/126680002-00000113", "Privilege": "call,all", "content": "", "Event": "Rename"}, -{"CallerIDName": "", "Uniqueid": "vgua0-dev-1442387044.549", "Event": "NewCallerid", "Channel": "SIP/126680002-00000113", "CallerIDNum": "202", "Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": ""}, -{"Privilege": "call,all", "Event": "Bridge", "Channel1": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "CallerID1": "126680002", "Bridgetype": "core", "Uniqueid1": "vgua0-dev-1442387044.550", "CallerID2": "202", "Uniqueid2": "vgua0-dev-1442387044.551", "content": "", "Channel2": "Local/ID12@osvpi_route_phoneaccount-00000089;1", "Bridgestate": "Unlink"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "0", "Variable": "ANSWEREDTIME"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "SIP/126680002-00000113", "Variable": "BRIDGEPEER"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "0", "Variable": "DIALEDTIME"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "242c5fd467edfa645943fa85073308b0@5.5.5.5:5060", "Variable": "BRIDGEPVTCALLID"}, -{"Uniqueid": "vgua0-dev-1442387044.549", "Event": "VarSet", "Channel": "SIP/126680002-00000113", "Privilege": "dialplan,all", "content": "", "Value": "SIP/126680001-00000112", "Variable": "BRIDGEPEER"}, -{"Uniqueid": "vgua0-dev-1442387044.549", "Event": "VarSet", "Channel": "SIP/126680002-00000113", "Privilege": "dialplan,all", "content": "", "Value": "dedup///60bd47521c5c6516672caa9e798e8969@5.5.5.5:5060", "Variable": "BRIDGEPVTCALLID"}, -{"Privilege": "call,all", "content": "", "Uniqueid": "vgua0-dev-1442387044.550", "Event": "HangupRequest", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2"}, -{"CallerIDName": "", "Uniqueid": "vgua0-dev-1442387044.551", "content": "", "Privilege": "call,all", "Cause": "16", "ConnectedLineName": "", "AccountCode": "126680001", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;1", "Cause-txt": "Normal Clearing", "CallerIDNum": "202", "Event": "Hangup", "ConnectedLineNum": "201"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "Event": "VarSet", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "dialplan,all", "content": "", "Value": "ANSWER", "Variable": "DIALSTATUS"}, -{"DialStatus": "ANSWER", "SubEvent": "End", "content": "", "Privilege": "call,all", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Event": "Dial", "UniqueID": "vgua0-dev-1442387044.550"}, -{"Uniqueid": "vgua0-dev-1442387044.550", "content": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Privilege": "call,all", "Event": "SoftHangupRequest", "Cause": "16"}, -{"Extension": "onhangup", "AppData": "1?nosip", "Uniqueid": "vgua0-dev-1442387044.550", "content": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Context": "handlers", "Privilege": "dialplan,all", "Application": "GotoIf", "Event": "Newexten", "Priority": "1"}, -{"Extension": "onhangup", "AppData": "0?osvpi_proc_httptouch,s,1()", "Uniqueid": "vgua0-dev-1442387044.550", "content": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Context": "handlers", "Privilege": "dialplan,all", "Application": "GosubIf", "Event": "Newexten", "Priority": "3"}, -{"CallerIDName": "", "Uniqueid": "vgua0-dev-1442387044.550", "content": "", "Privilege": "call,all", "Cause": "16", "ConnectedLineName": "", "AccountCode": "126680001", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000089;2", "Cause-txt": "Normal Clearing", "CallerIDNum": "126680002", "Event": "Hangup", "ConnectedLineNum": "202"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "osvpi_account", "Variable": "SIPREFERRINGCONTEXT"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "sip:126680001@6.6.6.6:5072", "Variable": "SIPREFERREDBYHDR"}, -{"TransferMethod": "SIP", "Uniqueid": "vgua0-dev-1442387042.545", "content": "", "Channel": "SIP/126680001-00000111", "TargetChannel": "SIP/126680001-00000112", "Privilege": "call,all", "SIP-Callid": "60bd47521c5c6516672caa9e798e8969@5.5.5.5:5060", "TransferType": "Attended", "Event": "Transfer", "TargetUniqueid": "vgua0-dev-1442387044.548"}, -{"Event": "MusicOnHold", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "call,all", "content": "", "State": "Stop", "UniqueID": "vgua0-dev-1442387041.544"}, -{"Event": "MusicOnHold", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "call,all", "content": "", "State": "Stop", "UniqueID": "vgua0-dev-1442387041.544"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "SIP/126680001-00000111", "Variable": "BRIDGEPEER"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "60bd47521c5c6516672caa9e798e8969@5.5.5.5:5060", "Variable": "BRIDGEPVTCALLID"}, -{"Uniqueid": "vgua0-dev-1442387042.545", "Event": "VarSet", "Channel": "SIP/126680001-00000111", "Privilege": "dialplan,all", "content": "", "Value": "SIP/voipgrid-siproute-dev-00000110", "Variable": "BRIDGEPEER"}, -{"Uniqueid": "vgua0-dev-1442387042.545", "Event": "VarSet", "Channel": "SIP/126680001-00000111", "Privilege": "dialplan,all", "content": "", "Value": "~{}~1-16847@6.6.6.6", "Variable": "BRIDGEPVTCALLID"}, -{"Clone": "SIP/voipgrid-siproute-dev-00000110", "OriginalState": "Up", "CloneState": "Up", "Privilege": "call,all", "content": "", "Event": "Masquerade", "Original": "SIP/126680001-00000112"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Newname": "SIP/voipgrid-siproute-dev-00000110", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "call,all", "content": "", "Event": "Rename"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Newname": "SIP/voipgrid-siproute-dev-00000110", "Channel": "SIP/126680001-00000112", "Privilege": "call,all", "content": "", "Event": "Rename"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Newname": "SIP/126680001-00000112", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "call,all", "content": "", "Event": "Rename"}, -{"CallerIDName": "Foo bar", "Uniqueid": "vgua0-dev-1442387044.548", "Event": "NewCallerid", "Channel": "SIP/voipgrid-siproute-dev-00000110", "CallerIDNum": "+31501234567", "Privilege": "call,all", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "content": ""}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "SIP/126680001-00000111", "Variable": "BRIDGEPEER"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "60bd47521c5c6516672caa9e798e8969@5.5.5.5:5060", "Variable": "BRIDGEPVTCALLID"}, -{"Uniqueid": "vgua0-dev-1442387042.545", "Event": "VarSet", "Channel": "SIP/126680001-00000111", "Privilege": "dialplan,all", "content": "", "Value": "SIP/126680001-00000112", "Variable": "BRIDGEPEER"}, -{"Uniqueid": "vgua0-dev-1442387042.545", "Event": "VarSet", "Channel": "SIP/126680001-00000111", "Privilege": "dialplan,all", "content": "", "Value": "dedup///60bd47521c5c6516672caa9e798e8969@5.5.5.5:5060", "Variable": "BRIDGEPVTCALLID"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "SIP/126680002-00000113", "Variable": "BRIDGEPEER"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "242c5fd467edfa645943fa85073308b0@5.5.5.5:5060", "Variable": "BRIDGEPVTCALLID"}, -{"Uniqueid": "vgua0-dev-1442387044.549", "Event": "VarSet", "Channel": "SIP/126680002-00000113", "Privilege": "dialplan,all", "content": "", "Value": "SIP/voipgrid-siproute-dev-00000110", "Variable": "BRIDGEPEER"}, -{"Uniqueid": "vgua0-dev-1442387044.549", "Event": "VarSet", "Channel": "SIP/126680002-00000113", "Privilege": "dialplan,all", "content": "", "Value": "~{}~1-16847@6.6.6.6", "Variable": "BRIDGEPVTCALLID"}, -{"Privilege": "call,all", "Event": "Bridge", "Channel1": "SIP/126680001-00000112", "CallerID1": "201", "Bridgetype": "core", "Uniqueid1": "vgua0-dev-1442387041.544", "CallerID2": "+31508009000", "Uniqueid2": "vgua0-dev-1442387042.545", "content": "", "Channel2": "SIP/126680001-00000111", "Bridgestate": "Unlink"}, -{"Event": "MusicOnHold", "Channel": "SIP/126680002-00000113", "Privilege": "call,all", "content": "", "State": "Stop", "UniqueID": "vgua0-dev-1442387044.549"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "1", "Variable": "ANSWEREDTIME"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "1", "Variable": "DIALEDTIME"}, -{"Uniqueid": "vgua0-dev-1442387042.545", "Event": "VarSet", "Channel": "SIP/126680001-00000111", "Privilege": "dialplan,all", "content": "", "Value": "ssrc=1139001451;themssrc=3390111744;lp=0;rxjitter=0.000000;rxcount=1;txjitter=0.000000;txcount=0;rlp=0;rtt=0.000000", "Variable": "RTPAUDIOQOS"}, -{"Uniqueid": "vgua0-dev-1442387042.545", "Event": "VarSet", "Channel": "SIP/126680001-00000111", "Privilege": "dialplan,all", "content": "", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Variable": "RTPAUDIOQOSJITTER"}, -{"Uniqueid": "vgua0-dev-1442387042.545", "Event": "VarSet", "Channel": "SIP/126680001-00000111", "Privilege": "dialplan,all", "content": "", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Variable": "RTPAUDIOQOSLOSS"}, -{"Uniqueid": "vgua0-dev-1442387042.545", "Event": "VarSet", "Channel": "SIP/126680001-00000111", "Privilege": "dialplan,all", "content": "", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Variable": "RTPAUDIOQOSRTT"}, -{"Privilege": "call,all", "content": "", "Uniqueid": "vgua0-dev-1442387042.545", "Event": "HangupRequest", "Channel": "SIP/126680001-00000111"}, -{"CallerIDName": "", "Uniqueid": "vgua0-dev-1442387042.545", "content": "", "Privilege": "call,all", "Cause": "16", "ConnectedLineName": "", "AccountCode": "12668", "Channel": "SIP/126680001-00000111", "Cause-txt": "Normal Clearing", "CallerIDNum": "+31508009000", "Event": "Hangup", "ConnectedLineNum": "126680001"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "ANSWER", "Variable": "DIALSTATUS"}, -{"DialStatus": "ANSWER", "SubEvent": "End", "content": "", "Privilege": "call,all", "Channel": "SIP/126680001-00000112", "Event": "Dial", "UniqueID": "vgua0-dev-1442387041.544"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/126680001-00000112", "Privilege": "call,all", "Event": "SoftHangupRequest", "Cause": "16"}, -{"Extension": "onhangup", "AppData": "0?nosip", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/126680001-00000112", "Context": "handlers", "Privilege": "dialplan,all", "Application": "GotoIf", "Event": "Newexten", "Priority": "1"}, -{"Extension": "onhangup", "AppData": "LOG: rtpqos: caller=6.6.6.6:8198;asterisk=5.5.5.5:10214;ssrc=484271492;themssrc=3390111744;lp=0;rxjitter=0.000000;rxcount=1;txjitter=0.000000;txcount=0;rlp=0;rtt=0.000000;billsec=0", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/126680001-00000112", "Context": "handlers", "Privilege": "dialplan,all", "Application": "NoOp", "Event": "Newexten", "Priority": "2"}, -{"Extension": "onhangup", "AppData": "0?osvpi_proc_httptouch,s,1()", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Channel": "SIP/126680001-00000112", "Context": "handlers", "Privilege": "dialplan,all", "Application": "GosubIf", "Event": "Newexten", "Priority": "3"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "ssrc=484271492;themssrc=3390111744;lp=0;rxjitter=0.000000;rxcount=1;txjitter=0.000000;txcount=0;rlp=0;rtt=0.000000", "Variable": "RTPAUDIOQOS"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Variable": "RTPAUDIOQOSJITTER"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Variable": "RTPAUDIOQOSLOSS"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Variable": "RTPAUDIOQOSRTT"}, -{"Uniqueid": "vgua0-dev-1442387041.544", "Event": "VarSet", "Channel": "SIP/126680001-00000112", "Privilege": "dialplan,all", "content": "", "Value": "ssrc=484271492;themssrc=3390111744;lp=0;rxjitter=0.000000;rxcount=1;txjitter=0.000000;txcount=0;rlp=0;rtt=0.000000", "Variable": "RTPAUDIOQOS"}, -{"CallerIDName": "", "Uniqueid": "vgua0-dev-1442387041.544", "content": "", "Privilege": "call,all", "Cause": "16", "ConnectedLineName": "", "AccountCode": "12668", "Channel": "SIP/126680001-00000112", "Cause-txt": "Normal Clearing", "CallerIDNum": "201", "Event": "Hangup", "ConnectedLineNum": ""}, -{"Uniqueid": "vgua0-dev-1442387044.549", "Event": "VarSet", "Channel": "SIP/126680002-00000113", "Privilege": "dialplan,all", "content": "", "Value": "ssrc=1980923736;themssrc=3390111744;lp=0;rxjitter=0.000000;rxcount=1;txjitter=0.000000;txcount=1;rlp=0;rtt=0.000000", "Variable": "RTPAUDIOQOS"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "ssrc=1980923736;themssrc=3390111744;lp=0;rxjitter=0.000000;rxcount=1;txjitter=0.000000;txcount=1;rlp=0;rtt=0.000000", "Variable": "RTPAUDIOQOSBRIDGED"}, -{"Uniqueid": "vgua0-dev-1442387044.549", "Event": "VarSet", "Channel": "SIP/126680002-00000113", "Privilege": "dialplan,all", "content": "", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Variable": "RTPAUDIOQOSJITTER"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Variable": "RTPAUDIOQOSJITTERBRIDGED"}, -{"Uniqueid": "vgua0-dev-1442387044.549", "Event": "VarSet", "Channel": "SIP/126680002-00000113", "Privilege": "dialplan,all", "content": "", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Variable": "RTPAUDIOQOSLOSS"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Variable": "RTPAUDIOQOSLOSSBRIDGED"}, -{"Uniqueid": "vgua0-dev-1442387044.549", "Event": "VarSet", "Channel": "SIP/126680002-00000113", "Privilege": "dialplan,all", "content": "", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Variable": "RTPAUDIOQOSRTT"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Variable": "RTPAUDIOQOSRTTBRIDGED"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "ssrc=323132953;themssrc=0;lp=0;rxjitter=0.000000;rxcount=0;txjitter=0.000000;txcount=62;rlp=0;rtt=0.000000", "Variable": "RTPAUDIOQOS"}, -{"Uniqueid": "vgua0-dev-1442387044.549", "Event": "VarSet", "Channel": "SIP/126680002-00000113", "Privilege": "dialplan,all", "content": "", "Value": "ssrc=323132953;themssrc=0;lp=0;rxjitter=0.000000;rxcount=0;txjitter=0.000000;txcount=62;rlp=0;rtt=0.000000", "Variable": "RTPAUDIOQOSBRIDGED"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Variable": "RTPAUDIOQOSJITTER"}, -{"Uniqueid": "vgua0-dev-1442387044.549", "Event": "VarSet", "Channel": "SIP/126680002-00000113", "Privilege": "dialplan,all", "content": "", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Variable": "RTPAUDIOQOSJITTERBRIDGED"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Variable": "RTPAUDIOQOSLOSS"}, -{"Uniqueid": "vgua0-dev-1442387044.549", "Event": "VarSet", "Channel": "SIP/126680002-00000113", "Privilege": "dialplan,all", "content": "", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Variable": "RTPAUDIOQOSLOSSBRIDGED"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Variable": "RTPAUDIOQOSRTT"}, -{"Uniqueid": "vgua0-dev-1442387044.549", "Event": "VarSet", "Channel": "SIP/126680002-00000113", "Privilege": "dialplan,all", "content": "", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Variable": "RTPAUDIOQOSRTTBRIDGED"}, -{"Privilege": "call,all", "content": "", "Uniqueid": "vgua0-dev-1442387044.549", "Event": "HangupRequest", "Channel": "SIP/126680002-00000113"}, -{"Privilege": "call,all", "Event": "Bridge", "Channel1": "SIP/voipgrid-siproute-dev-00000110", "CallerID1": "+31501234567", "Bridgetype": "core", "Uniqueid1": "vgua0-dev-1442387044.548", "CallerID2": "202", "Uniqueid2": "vgua0-dev-1442387044.549", "content": "", "Channel2": "SIP/126680002-00000113", "Bridgestate": "Unlink"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "5", "Variable": "ANSWEREDTIME"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "7", "Variable": "DIALEDTIME"}, -{"CallerIDName": "", "Uniqueid": "vgua0-dev-1442387044.549", "content": "", "Privilege": "call,all", "Cause": "16", "ConnectedLineName": "", "AccountCode": "126680001", "Channel": "SIP/126680002-00000113", "Cause-txt": "Normal Clearing", "CallerIDNum": "202", "Event": "Hangup", "ConnectedLineNum": "126680001"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "ANSWER", "Variable": "DIALSTATUS"}, -{"DialStatus": "ANSWER", "SubEvent": "End", "content": "", "Privilege": "call,all", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Event": "Dial", "UniqueID": "vgua0-dev-1442387044.548"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "call,all", "Event": "SoftHangupRequest", "Cause": "16"}, -{"Extension": "onhangup", "AppData": "0?nosip", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "handlers", "Privilege": "dialplan,all", "Application": "GotoIf", "Event": "Newexten", "Priority": "1"}, -{"Extension": "onhangup", "AppData": "LOG: rtpqos: caller=6.6.6.6:8194;asterisk=5.5.5.5:14704;ssrc=323132953;themssrc=0;lp=0;rxjitter=0.000000;rxcount=0;txjitter=0.000000;txcount=62;rlp=0;rtt=0.000000;billsec=0", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "handlers", "Privilege": "dialplan,all", "Application": "NoOp", "Event": "Newexten", "Priority": "2"}, -{"Extension": "onhangup", "AppData": "0?osvpi_proc_httptouch,s,1()", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Context": "handlers", "Privilege": "dialplan,all", "Application": "GosubIf", "Event": "Newexten", "Priority": "3"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "ssrc=323132953;themssrc=0;lp=0;rxjitter=0.000000;rxcount=0;txjitter=0.000000;txcount=62;rlp=0;rtt=0.000000", "Variable": "RTPAUDIOQOS"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Variable": "RTPAUDIOQOSJITTER"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Variable": "RTPAUDIOQOSLOSS"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Variable": "RTPAUDIOQOSRTT"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "ssrc=323132953;themssrc=0;lp=0;rxjitter=0.000000;rxcount=0;txjitter=0.000000;txcount=62;rlp=0;rtt=0.000000", "Variable": "RTPAUDIOQOS"}, -{"Uniqueid": "vgua0-dev-1442387044.548", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Privilege": "dialplan,all", "content": "", "Value": "ssrc=1019932885;themssrc=0;lp=0;rxjitter=0.000000;rxcount=0;txjitter=0.000000;txcount=0;rlp=0;rtt=0.000000", "Variable": "RTPVIDEOQOS"}, -{"CallerIDName": "Foo bar", "Uniqueid": "vgua0-dev-1442387044.548", "content": "", "Privilege": "call,all", "Cause": "16", "ConnectedLineName": "", "AccountCode": "12668", "Channel": "SIP/voipgrid-siproute-dev-00000110", "Cause-txt": "Normal Clearing", "CallerIDNum": "+31501234567", "Event": "Hangup", "ConnectedLineNum": ""} -] + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-0000002c", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941338.663", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-0000002c", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941338.663", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "150010001", "Channel": "SIP/150010001-0000002c", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "5", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941338.663", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-0000002c", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "6", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941338.663", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000019;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941338.666", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000019;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941338.668", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000019;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941338.666", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000019;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941338.666", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000019;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941338.666", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000019;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941338.668", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000019;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941338.668", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000019;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730151", "Language": "en", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941338.668", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730151", "LocalOneAccountCode": "150010001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "202", "LocalOneChannel": "Local/ID730151@osvpi_route_phoneaccount-00000019;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Andrew Garza", "LocalOneConnectedLineNum": "201", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "202", "LocalOneLanguage": "en", "LocalOneLinkedid": "195176c06ab8-1529941338.663", "LocalOnePriority": "1", "LocalOneUniqueid": "195176c06ab8-1529941338.666", "LocalOptimization": "Yes", "LocalTwoAccountCode": "150010001", "LocalTwoCallerIDName": "Andrew Garza", "LocalTwoCallerIDNum": "201", "LocalTwoChannel": "Local/ID730151@osvpi_route_phoneaccount-00000019;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "202", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730151", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "195176c06ab8-1529941338.663", "LocalTwoPriority": "1", "LocalTwoUniqueid": "195176c06ab8-1529941338.668", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-0000002c", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-00000019;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "202", "DestLanguage": "en", "DestLinkedid": "195176c06ab8-1529941338.663", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529941338.666", "DialString": "ID730151@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "12", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941338.663", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010002-0000002d", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941338.671", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-0000002d", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941338.671", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-0000002d", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529941338.663", "OldAccountCode": "150010002", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941338.671", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-0000002d", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941338.671", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000019;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "SIP/150010002-0000002d", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "202", "DestLanguage": "nl", "DestLinkedid": "195176c06ab8-1529941338.663", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529941338.671", "DialString": "150010002/150010002/172.20.0.13!!201", "Event": "DialBegin", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941338.668", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-0000002d", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941338.671", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000019;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941338.666", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-0000002d", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941338.671", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000019;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "SIP/150010002-0000002d", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "195176c06ab8-1529941338.663", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529941338.671", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941338.668", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000019;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941338.668", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000019;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941338.666", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "89c4cc7d-4445-4242-ba1e-9b95c84ecba2", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-0000002c", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-00000019;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "195176c06ab8-1529941338.663", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529941338.666", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "12", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941338.663", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-0000002c", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "12", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941338.663", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "89c4cc7d-4445-4242-ba1e-9b95c84ecba2", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-0000002d", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941338.671", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "89c4cc7d-4445-4242-ba1e-9b95c84ecba2", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000019;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941338.668", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "17b70680-eeb8-43a2-9177-8daac711f40b", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "17b70680-eeb8-43a2-9177-8daac711f40b", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000019;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941338.666", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "17b70680-eeb8-43a2-9177-8daac711f40b", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-0000002c", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "12", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941338.663", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "17b70680-eeb8-43a2-9177-8daac711f40b", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-0000002c", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "12", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941338.663", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "89c4cc7d-4445-4242-ba1e-9b95c84ecba2", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000019;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "202", "Language": "en", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941338.668", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "89c4cc7d-4445-4242-ba1e-9b95c84ecba2", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-0000002c", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "12", "Privilege": "call,all", "SwapUniqueid": "195176c06ab8-1529941338.668", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941338.663", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "17b70680-eeb8-43a2-9177-8daac711f40b", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000019;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941338.666", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "17b70680-eeb8-43a2-9177-8daac711f40b", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000019;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "4", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941338.668", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000019;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941338.666", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Bob", "CallerIDNum": "150010002", "Channel": "SIP/150010002-0000002e", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "203", "Language": "en", "Linkedid": "195176c06ab8-1529941342.690", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941342.690", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Bob", "CallerIDNum": "150010002", "Channel": "SIP/150010002-0000002e", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newstate", "Exten": "203", "Language": "nl", "Linkedid": "195176c06ab8-1529941342.690", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941342.690", "content": ""}, + {"AccountCode": "150010002", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Christina Arroyo", "CallerIDNum": "150010002", "Channel": "SIP/150010002-0000002e", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "203", "Language": "nl", "Linkedid": "195176c06ab8-1529941342.690", "Priority": "5", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941342.690", "content": ""}, + {"AccountCode": "150010002", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "SIP/150010002-0000002e", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "203", "Language": "nl", "Linkedid": "195176c06ab8-1529941342.690", "Priority": "6", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941342.690", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000001a;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730152", "Language": "en", "Linkedid": "195176c06ab8-1529941342.690", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941343.693", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000001a;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730152", "Language": "en", "Linkedid": "195176c06ab8-1529941342.690", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941343.695", "content": ""}, + {"AccountCode": "150010002", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000001a;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "203", "Language": "en", "Linkedid": "195176c06ab8-1529941342.690", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941343.693", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000001a;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "203", "Language": "en", "Linkedid": "195176c06ab8-1529941342.690", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941343.693", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000001a;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "203", "Language": "en", "Linkedid": "195176c06ab8-1529941342.690", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941343.693", "content": ""}, + {"AccountCode": "150010002", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000001a;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730152", "Language": "en", "Linkedid": "195176c06ab8-1529941342.690", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941343.695", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000001a;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730152", "Language": "en", "Linkedid": "195176c06ab8-1529941342.690", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941343.695", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000001a;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730152", "Language": "en", "Linkedid": "195176c06ab8-1529941342.690", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941343.695", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730152", "LocalOneAccountCode": "150010002", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "203", "LocalOneChannel": "Local/ID730152@osvpi_route_phoneaccount-0000001a;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Christina Arroyo", "LocalOneConnectedLineNum": "202", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "203", "LocalOneLanguage": "en", "LocalOneLinkedid": "195176c06ab8-1529941342.690", "LocalOnePriority": "1", "LocalOneUniqueid": "195176c06ab8-1529941343.693", "LocalOptimization": "Yes", "LocalTwoAccountCode": "150010002", "LocalTwoCallerIDName": "Christina Arroyo", "LocalTwoCallerIDNum": "202", "LocalTwoChannel": "Local/ID730152@osvpi_route_phoneaccount-0000001a;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "203", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730152", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "195176c06ab8-1529941342.690", "LocalTwoPriority": "1", "LocalTwoUniqueid": "195176c06ab8-1529941343.695", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "SIP/150010002-0000002e", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010002", "DestCallerIDName": "", "DestCallerIDNum": "203", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-0000001a;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Christina Arroyo", "DestConnectedLineNum": "202", "DestContext": "osvpi_route_phoneaccount", "DestExten": "203", "DestLanguage": "en", "DestLinkedid": "195176c06ab8-1529941342.690", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529941343.693", "DialString": "ID730152@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "203", "Language": "nl", "Linkedid": "195176c06ab8-1529941342.690", "Priority": "12", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941342.690", "content": ""}, + {"AccountCode": "150010003", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010003-0000002f", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "195176c06ab8-1529941342.690", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941343.698", "content": ""}, + {"AccountCode": "150010002", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-0000002f", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "203", "Language": "nl", "Linkedid": "195176c06ab8-1529941342.690", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941343.698", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-0000002f", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "203", "Language": "nl", "Linkedid": "195176c06ab8-1529941342.690", "OldAccountCode": "150010003", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941343.698", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-0000002f", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "203", "Language": "nl", "Linkedid": "195176c06ab8-1529941342.690", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941343.698", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000001a;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010002", "DestCallerIDName": "", "DestCallerIDNum": "203", "DestChannel": "SIP/150010003-0000002f", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Christina Arroyo", "DestConnectedLineNum": "202", "DestContext": "osvpi_account", "DestExten": "203", "DestLanguage": "nl", "DestLinkedid": "195176c06ab8-1529941342.690", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529941343.698", "DialString": "150010003/150010003/172.20.0.13!!202", "Event": "DialBegin", "Exten": "203", "Language": "en", "Linkedid": "195176c06ab8-1529941342.690", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941343.695", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-0000002f", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_account", "Event": "Newstate", "Exten": "203", "Language": "nl", "Linkedid": "195176c06ab8-1529941342.690", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941343.698", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000001a;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "203", "Language": "en", "Linkedid": "195176c06ab8-1529941342.690", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941343.693", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-0000002f", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_account", "Event": "Newstate", "Exten": "203", "Language": "nl", "Linkedid": "195176c06ab8-1529941342.690", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941343.698", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000001a;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010002", "DestCallerIDName": "", "DestCallerIDNum": "203", "DestChannel": "SIP/150010003-0000002f", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Christina Arroyo", "DestConnectedLineNum": "202", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "195176c06ab8-1529941342.690", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529941343.698", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "203", "Language": "en", "Linkedid": "195176c06ab8-1529941342.690", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941343.695", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000001a;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "203", "Language": "en", "Linkedid": "195176c06ab8-1529941342.690", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941343.695", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000001a;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "203", "Language": "en", "Linkedid": "195176c06ab8-1529941342.690", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941343.693", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "SIP/150010002-0000002e", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010002", "DestCallerIDName": "", "DestCallerIDNum": "203", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-0000001a;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Christina Arroyo", "DestConnectedLineNum": "202", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "195176c06ab8-1529941342.690", "DestPriority": "1", "DestUniqueid": "195176c06ab8-1529941343.693", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "203", "Language": "nl", "Linkedid": "195176c06ab8-1529941342.690", "Priority": "12", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941342.690", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "SIP/150010002-0000002e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "Newstate", "Exten": "203", "Language": "nl", "Linkedid": "195176c06ab8-1529941342.690", "Priority": "12", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941342.690", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "fc89beb4-23a8-4c61-b67e-71b5a69b3e5b", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "314ad1a7-efe7-4c5c-b3bc-36faac6aa018", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "150010002", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "fc89beb4-23a8-4c61-b67e-71b5a69b3e5b", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000001a;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "195176c06ab8-1529941342.690", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941343.693", "content": ""}, + {"AccountCode": "150010002", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "314ad1a7-efe7-4c5c-b3bc-36faac6aa018", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-0000002f", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "195176c06ab8-1529941342.690", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941343.698", "content": ""}, + {"AccountCode": "150010002", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "314ad1a7-efe7-4c5c-b3bc-36faac6aa018", "BridgeVideoSourceMode": "none", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000001a;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "203", "Language": "en", "Linkedid": "195176c06ab8-1529941342.690", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941343.695", "content": ""}, + {"AccountCode": "150010002", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "fc89beb4-23a8-4c61-b67e-71b5a69b3e5b", "BridgeVideoSourceMode": "none", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "SIP/150010002-0000002e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "203", "Language": "nl", "Linkedid": "195176c06ab8-1529941342.690", "Priority": "12", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941342.690", "content": ""}, + {"AccountCode": "150010002", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "fc89beb4-23a8-4c61-b67e-71b5a69b3e5b", "BridgeVideoSourceMode": "none", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "SIP/150010002-0000002e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "203", "Language": "nl", "Linkedid": "195176c06ab8-1529941342.690", "Priority": "12", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941342.690", "content": ""}, + {"AccountCode": "150010002", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "314ad1a7-efe7-4c5c-b3bc-36faac6aa018", "BridgeVideoSourceMode": "none", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000001a;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "203", "Language": "en", "Linkedid": "195176c06ab8-1529941342.690", "Priority": "8", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941343.695", "content": ""}, + {"AccountCode": "150010002", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "314ad1a7-efe7-4c5c-b3bc-36faac6aa018", "BridgeVideoSourceMode": "none", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "SIP/150010002-0000002e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "203", "Language": "nl", "Linkedid": "195176c06ab8-1529941342.690", "Priority": "12", "Privilege": "call,all", "SwapUniqueid": "195176c06ab8-1529941343.695", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941342.690", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000001a;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "195176c06ab8-1529941342.690", "Priority": "4", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941343.695", "content": ""}, + {"AccountCode": "150010002", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "fc89beb4-23a8-4c61-b67e-71b5a69b3e5b", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000001a;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "195176c06ab8-1529941342.690", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941343.693", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "fc89beb4-23a8-4c61-b67e-71b5a69b3e5b", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "203", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000001a;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "195176c06ab8-1529941342.690", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941343.693", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "89c4cc7d-4445-4242-ba1e-9b95c84ecba2", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-0000002c", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "12", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941338.663", "content": ""}, + {"AccountCode": "150010002", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "314ad1a7-efe7-4c5c-b3bc-36faac6aa018", "BridgeVideoSourceMode": "none", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "SIP/150010002-0000002e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "203", "Language": "nl", "Linkedid": "195176c06ab8-1529941342.690", "Priority": "12", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941342.690", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "314ad1a7-efe7-4c5c-b3bc-36faac6aa018", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-0000002c", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "12", "Privilege": "call,all", "SwapUniqueid": "195176c06ab8-1529941342.690", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941338.663", "content": ""}, + {"DestBridgeUniqueid": "314ad1a7-efe7-4c5c-b3bc-36faac6aa018", "DestType": "Bridge", "Event": "AttendedTransfer", "IsExternal": "No", "OrigBridgeCreator": "", "OrigBridgeName": "", "OrigBridgeNumChannels": "2", "OrigBridgeTechnology": "softmix", "OrigBridgeType": "basic", "OrigBridgeUniqueid": "89c4cc7d-4445-4242-ba1e-9b95c84ecba2", "OrigBridgeVideoSourceMode": "none", "OrigTransfererAccountCode": "150010001", "OrigTransfererCallerIDName": "", "OrigTransfererCallerIDNum": "202", "OrigTransfererChannel": "SIP/150010002-0000002d", "OrigTransfererChannelState": "6", "OrigTransfererChannelStateDesc": "Up", "OrigTransfererConnectedLineName": "Andrew Garza", "OrigTransfererConnectedLineNum": "201", "OrigTransfererContext": "osvpi_account", "OrigTransfererExten": "", "OrigTransfererLanguage": "nl", "OrigTransfererLinkedid": "195176c06ab8-1529941338.663", "OrigTransfererPriority": "1", "OrigTransfererUniqueid": "195176c06ab8-1529941338.671", "Privilege": "call,all", "Result": "Success", "SecondBridgeCreator": "", "SecondBridgeName": "", "SecondBridgeNumChannels": "2", "SecondBridgeTechnology": "softmix", "SecondBridgeType": "basic", "SecondBridgeUniqueid": "314ad1a7-efe7-4c5c-b3bc-36faac6aa018", "SecondBridgeVideoSourceMode": "none", "SecondTransfererAccountCode": "150010002", "SecondTransfererCallerIDName": "Christina Arroyo", "SecondTransfererCallerIDNum": "202", "SecondTransfererChannel": "SIP/150010002-0000002e", "SecondTransfererChannelState": "6", "SecondTransfererChannelStateDesc": "Up", "SecondTransfererConnectedLineName": "", "SecondTransfererConnectedLineNum": "", "SecondTransfererContext": "osvpi_account_call_int", "SecondTransfererExten": "203", "SecondTransfererLanguage": "nl", "SecondTransfererLinkedid": "195176c06ab8-1529941342.690", "SecondTransfererPriority": "12", "SecondTransfererUniqueid": "195176c06ab8-1529941342.690", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "89c4cc7d-4445-4242-ba1e-9b95c84ecba2", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-0000002d", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941338.671", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "89c4cc7d-4445-4242-ba1e-9b95c84ecba2", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010002-0000002e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "195176c06ab8-1529941342.690", "Priority": "4", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941342.690", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010002-0000002d", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941338.671", "content": ""}, + {"AccountCode": "150010002", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "314ad1a7-efe7-4c5c-b3bc-36faac6aa018", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-0000002f", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941343.698", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "314ad1a7-efe7-4c5c-b3bc-36faac6aa018", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-0000002c", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "202", "Language": "nl", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "12", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941338.663", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "203", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010003-0000002f", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "1", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941343.698", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "softmix", "BridgeType": "basic", "BridgeUniqueid": "314ad1a7-efe7-4c5c-b3bc-36faac6aa018", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "195176c06ab8", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010001-0000002c", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "195176c06ab8-1529941338.663", "Priority": "4", "Privilege": "call,all", "SystemName": "195176c06ab8", "Uniqueid": "195176c06ab8-1529941338.663", "content": ""} +] \ No newline at end of file diff --git a/tests/fixtures/xfer_attended/xfer_abbcac_anon.json b/tests/fixtures/xfer_attended/xfer_abbcac_anon.json new file mode 100644 index 0000000..de01236 --- /dev/null +++ b/tests/fixtures/xfer_attended/xfer_abbcac_anon.json @@ -0,0 +1,103 @@ +[ + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000027", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newchannel", "Exten": "+31150010001", "Language": "en", "Linkedid": "07b796be1962-1530001217.664", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.664", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000027", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "07b796be1962-1530001217.664", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.664", "content": ""}, + {"AccountCode": "", "CID-CallingPres": "33 (Presentation Prohibited, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31260xxxxxx", "Channel": "SIP/voipgrid-siproute-docker-00000027", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid_internal", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "nl", "Linkedid": "07b796be1962-1530001217.664", "Priority": "3", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.664", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260xxxxxx", "Channel": "SIP/voipgrid-siproute-docker-00000027", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "nl", "Linkedid": "07b796be1962-1530001217.664", "Priority": "10", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.664", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000018;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730150", "Language": "en", "Linkedid": "07b796be1962-1530001217.664", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.666", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000018;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730150", "Language": "en", "Linkedid": "07b796be1962-1530001217.664", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.667", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000018;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260xxxxxx", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "en", "Linkedid": "07b796be1962-1530001217.664", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.666", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000018;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260xxxxxx", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "en", "Linkedid": "07b796be1962-1530001217.664", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.666", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000018;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260xxxxxx", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "en", "Linkedid": "07b796be1962-1530001217.664", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.666", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "33 (Presentation Prohibited, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31260xxxxxx", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000018;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730150", "Language": "en", "Linkedid": "07b796be1962-1530001217.664", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.667", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260xxxxxx", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000018;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730150", "Language": "en", "Linkedid": "07b796be1962-1530001217.664", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.667", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260xxxxxx", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000018;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730150", "Language": "en", "Linkedid": "07b796be1962-1530001217.664", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.667", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730150", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31150010001", "LocalOneChannel": "Local/ID730150@osvpi_route_phoneaccount-00000018;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31260xxxxxx", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "+31150010001", "LocalOneLanguage": "en", "LocalOneLinkedid": "07b796be1962-1530001217.664", "LocalOnePriority": "1", "LocalOneUniqueid": "07b796be1962-1530001217.666", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31260xxxxxx", "LocalTwoChannel": "Local/ID730150@osvpi_route_phoneaccount-00000018;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31150010001", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730150", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "07b796be1962-1530001217.664", "LocalTwoPriority": "1", "LocalTwoUniqueid": "07b796be1962-1530001217.667", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260xxxxxx", "Channel": "SIP/voipgrid-siproute-docker-00000027", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/ID730150@osvpi_route_phoneaccount-00000018;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260xxxxxx", "DestContext": "osvpi_route_phoneaccount", "DestExten": "+31150010001", "DestLanguage": "en", "DestLinkedid": "07b796be1962-1530001217.664", "DestPriority": "1", "DestUniqueid": "07b796be1962-1530001217.666", "DialString": "ID730150@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "+31150010001", "Language": "nl", "Linkedid": "07b796be1962-1530001217.664", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.664", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010001-00000028", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "07b796be1962-1530001217.664", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.672", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000028", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260xxxxxx", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "nl", "Linkedid": "07b796be1962-1530001217.664", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.672", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000028", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260xxxxxx", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "nl", "Linkedid": "07b796be1962-1530001217.664", "OldAccountCode": "150010001", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.672", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000028", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260xxxxxx", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "nl", "Linkedid": "07b796be1962-1530001217.664", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.672", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260xxxxxx", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000018;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "SIP/150010001-00000028", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260xxxxxx", "DestContext": "osvpi_account", "DestExten": "+31150010001", "DestLanguage": "nl", "DestLinkedid": "07b796be1962-1530001217.664", "DestPriority": "1", "DestUniqueid": "07b796be1962-1530001217.672", "DialString": "150010001/150010001/172.20.0.13!!anonymous", "Event": "DialBegin", "Exten": "+31150010001", "Language": "en", "Linkedid": "07b796be1962-1530001217.664", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.667", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000028", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260xxxxxx", "Context": "osvpi_account", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "07b796be1962-1530001217.664", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.672", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000018;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260xxxxxx", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "07b796be1962-1530001217.664", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.666", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000028", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260xxxxxx", "Context": "osvpi_account", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "07b796be1962-1530001217.664", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.672", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260xxxxxx", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000018;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "SIP/150010001-00000028", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260xxxxxx", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "07b796be1962-1530001217.664", "DestPriority": "1", "DestUniqueid": "07b796be1962-1530001217.672", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31150010001", "Language": "en", "Linkedid": "07b796be1962-1530001217.664", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.667", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260xxxxxx", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000018;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "07b796be1962-1530001217.664", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.667", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000018;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260xxxxxx", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "07b796be1962-1530001217.664", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.666", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "e46ed3cb-f3a4-4205-8a0e-83691254a0f0", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260xxxxxx", "Channel": "SIP/voipgrid-siproute-docker-00000027", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/ID730150@osvpi_route_phoneaccount-00000018;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260xxxxxx", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "07b796be1962-1530001217.664", "DestPriority": "1", "DestUniqueid": "07b796be1962-1530001217.666", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31150010001", "Language": "nl", "Linkedid": "07b796be1962-1530001217.664", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.664", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260xxxxxx", "Channel": "SIP/voipgrid-siproute-docker-00000027", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "07b796be1962-1530001217.664", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.664", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "e46ed3cb-f3a4-4205-8a0e-83691254a0f0", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000028", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260xxxxxx", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "07b796be1962-1530001217.664", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.672", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "e46ed3cb-f3a4-4205-8a0e-83691254a0f0", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260xxxxxx", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000018;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "en", "Linkedid": "07b796be1962-1530001217.664", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.667", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "b375c34e-20b7-4237-9cfd-147e62d35fd1", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "b375c34e-20b7-4237-9cfd-147e62d35fd1", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000018;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260xxxxxx", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "07b796be1962-1530001217.664", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.666", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "b375c34e-20b7-4237-9cfd-147e62d35fd1", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260xxxxxx", "Channel": "SIP/voipgrid-siproute-docker-00000027", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "nl", "Linkedid": "07b796be1962-1530001217.664", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.664", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2bc35d10-ab1c-4b7c-910e-c7020cbb289c", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "8552b2b6-e024-4e7b-be9a-6c1e0ca8ffc5", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "8552b2b6-e024-4e7b-be9a-6c1e0ca8ffc5", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "b375c34e-20b7-4237-9cfd-147e62d35fd1", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260xxxxxx", "Channel": "SIP/voipgrid-siproute-docker-00000027", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "nl", "Linkedid": "07b796be1962-1530001217.664", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.664", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "e46ed3cb-f3a4-4205-8a0e-83691254a0f0", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260xxxxxx", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000018;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "en", "Linkedid": "07b796be1962-1530001217.664", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.667", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "e46ed3cb-f3a4-4205-8a0e-83691254a0f0", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260xxxxxx", "Channel": "SIP/voipgrid-siproute-docker-00000027", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "nl", "Linkedid": "07b796be1962-1530001217.664", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "07b796be1962-1530001217.667", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.664", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260xxxxxx", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000018;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "07b796be1962-1530001217.664", "Priority": "4", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.667", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "b375c34e-20b7-4237-9cfd-147e62d35fd1", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000018;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260xxxxxx", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "07b796be1962-1530001217.664", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.666", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "b375c34e-20b7-4237-9cfd-147e62d35fd1", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000018;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260xxxxxx", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "07b796be1962-1530001217.664", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.666", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000029", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1530001225.708", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001225.708", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000029", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newstate", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1530001225.708", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001225.708", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000029", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1530001225.708", "Priority": "5", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001225.708", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000029", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1530001225.708", "Priority": "6", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001225.708", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000019;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730152", "Language": "en", "Linkedid": "07b796be1962-1530001225.708", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001225.711", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000019;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730152", "Language": "en", "Linkedid": "07b796be1962-1530001225.708", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001225.713", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000019;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1530001225.708", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001225.711", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000019;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1530001225.708", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001225.711", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000019;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1530001225.708", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001225.711", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000019;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730152", "Language": "en", "Linkedid": "07b796be1962-1530001225.708", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001225.713", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000019;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730152", "Language": "en", "Linkedid": "07b796be1962-1530001225.708", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001225.713", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000019;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730152", "Language": "en", "Linkedid": "07b796be1962-1530001225.708", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001225.713", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730152", "LocalOneAccountCode": "150010001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "203", "LocalOneChannel": "Local/ID730152@osvpi_route_phoneaccount-00000019;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Andrew Garza", "LocalOneConnectedLineNum": "201", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "203", "LocalOneLanguage": "en", "LocalOneLinkedid": "07b796be1962-1530001225.708", "LocalOnePriority": "1", "LocalOneUniqueid": "07b796be1962-1530001225.711", "LocalOptimization": "Yes", "LocalTwoAccountCode": "150010001", "LocalTwoCallerIDName": "Andrew Garza", "LocalTwoCallerIDNum": "201", "LocalTwoChannel": "Local/ID730152@osvpi_route_phoneaccount-00000019;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "203", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730152", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "07b796be1962-1530001225.708", "LocalTwoPriority": "1", "LocalTwoUniqueid": "07b796be1962-1530001225.713", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000029", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "203", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-00000019;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "203", "DestLanguage": "en", "DestLinkedid": "07b796be1962-1530001225.708", "DestPriority": "1", "DestUniqueid": "07b796be1962-1530001225.711", "DialString": "ID730152@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1530001225.708", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001225.708", "content": ""}, + {"AccountCode": "150010003", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010003-0000002a", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "07b796be1962-1530001225.708", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001225.716", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-0000002a", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1530001225.708", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001225.716", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-0000002a", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1530001225.708", "OldAccountCode": "150010003", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001225.716", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-0000002a", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1530001225.708", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001225.716", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000019;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "203", "DestChannel": "SIP/150010003-0000002a", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "203", "DestLanguage": "nl", "DestLinkedid": "07b796be1962-1530001225.708", "DestPriority": "1", "DestUniqueid": "07b796be1962-1530001225.716", "DialString": "150010003/150010003/172.20.0.13!!201", "Event": "DialBegin", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1530001225.708", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001225.713", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-0000002a", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1530001225.708", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001225.716", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000019;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1530001225.708", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001225.711", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-0000002a", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1530001225.708", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001225.716", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000019;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "203", "DestChannel": "SIP/150010003-0000002a", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "07b796be1962-1530001225.708", "DestPriority": "1", "DestUniqueid": "07b796be1962-1530001225.716", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1530001225.708", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001225.713", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000019;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1530001225.708", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001225.713", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000019;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1530001225.708", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001225.711", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "5258f091-eedf-4b49-8357-a201892b1a9d", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000029", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "203", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-00000019;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "07b796be1962-1530001225.708", "DestPriority": "1", "DestUniqueid": "07b796be1962-1530001225.711", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1530001225.708", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001225.708", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000029", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "Newstate", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1530001225.708", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001225.708", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "7b60a7d8-35f5-4577-a179-bfa68d1b8900", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "5258f091-eedf-4b49-8357-a201892b1a9d", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-0000002a", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "07b796be1962-1530001225.708", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001225.716", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "5258f091-eedf-4b49-8357-a201892b1a9d", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000019;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1530001225.708", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001225.713", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "7b60a7d8-35f5-4577-a179-bfa68d1b8900", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000019;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "07b796be1962-1530001225.708", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001225.711", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "7b60a7d8-35f5-4577-a179-bfa68d1b8900", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000029", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1530001225.708", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001225.708", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "5258f091-eedf-4b49-8357-a201892b1a9d", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-0000002a", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "07b796be1962-1530001225.708", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001225.716", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "7b60a7d8-35f5-4577-a179-bfa68d1b8900", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000019;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "07b796be1962-1530001225.708", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001225.711", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "7b60a7d8-35f5-4577-a179-bfa68d1b8900", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-0000002a", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "07b796be1962-1530001225.708", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "07b796be1962-1530001225.711", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001225.716", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "5258f091-eedf-4b49-8357-a201892b1a9d", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000019;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1530001225.708", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001225.713", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "5258f091-eedf-4b49-8357-a201892b1a9d", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000019;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "07b796be1962-1530001225.708", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001225.711", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000019;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "07b796be1962-1530001225.708", "Priority": "4", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001225.713", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "e46ed3cb-f3a4-4205-8a0e-83691254a0f0", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260xxxxxx", "Channel": "SIP/voipgrid-siproute-docker-00000027", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "nl", "Linkedid": "07b796be1962-1530001217.664", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.664", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "7b60a7d8-35f5-4577-a179-bfa68d1b8900", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000029", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1530001225.708", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001225.708", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "7b60a7d8-35f5-4577-a179-bfa68d1b8900", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260xxxxxx", "Channel": "SIP/voipgrid-siproute-docker-00000027", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "nl", "Linkedid": "07b796be1962-1530001217.664", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "07b796be1962-1530001225.708", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.664", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-0000002a", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260xxxxxx", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "", "Language": "nl", "Linkedid": "07b796be1962-1530001217.664", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001225.716", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260xxxxxx", "Channel": "SIP/voipgrid-siproute-docker-00000027", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_route_phoneaccount_step", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "nl", "Linkedid": "07b796be1962-1530001217.664", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.664", "content": ""}, + {"DestBridgeUniqueid": "7b60a7d8-35f5-4577-a179-bfa68d1b8900", "DestType": "Bridge", "Event": "AttendedTransfer", "IsExternal": "No", "OrigBridgeCreator": "", "OrigBridgeName": "", "OrigBridgeNumChannels": "2", "OrigBridgeTechnology": "simple_bridge", "OrigBridgeType": "basic", "OrigBridgeUniqueid": "e46ed3cb-f3a4-4205-8a0e-83691254a0f0", "OrigBridgeVideoSourceMode": "none", "OrigTransfererAccountCode": "15001", "OrigTransfererCallerIDName": "", "OrigTransfererCallerIDNum": "+31150010001", "OrigTransfererChannel": "SIP/150010001-00000028", "OrigTransfererChannelState": "6", "OrigTransfererChannelStateDesc": "Up", "OrigTransfererConnectedLineName": "", "OrigTransfererConnectedLineNum": "+31260xxxxxx", "OrigTransfererContext": "osvpi_account", "OrigTransfererExten": "", "OrigTransfererLanguage": "nl", "OrigTransfererLinkedid": "07b796be1962-1530001217.664", "OrigTransfererPriority": "1", "OrigTransfererUniqueid": "07b796be1962-1530001217.672", "Privilege": "call,all", "Result": "Success", "SecondBridgeCreator": "", "SecondBridgeName": "", "SecondBridgeNumChannels": "2", "SecondBridgeTechnology": "simple_bridge", "SecondBridgeType": "basic", "SecondBridgeUniqueid": "7b60a7d8-35f5-4577-a179-bfa68d1b8900", "SecondBridgeVideoSourceMode": "none", "SecondTransfererAccountCode": "150010001", "SecondTransfererCallerIDName": "Andrew Garza", "SecondTransfererCallerIDNum": "201", "SecondTransfererChannel": "SIP/150010001-00000029", "SecondTransfererChannelState": "6", "SecondTransfererChannelStateDesc": "Up", "SecondTransfererConnectedLineName": "", "SecondTransfererConnectedLineNum": "", "SecondTransfererContext": "osvpi_account_call_int", "SecondTransfererExten": "203", "SecondTransfererLanguage": "nl", "SecondTransfererLinkedid": "07b796be1962-1530001225.708", "SecondTransfererPriority": "12", "SecondTransfererUniqueid": "07b796be1962-1530001225.708", "SystemName": "07b796be1962", "TransferTargetAccountCode": "150010001", "TransferTargetCallerIDName": "", "TransferTargetCallerIDNum": "203", "TransferTargetChannel": "SIP/150010003-0000002a", "TransferTargetChannelState": "6", "TransferTargetChannelStateDesc": "Up", "TransferTargetConnectedLineName": "Andrew Garza", "TransferTargetConnectedLineNum": "201", "TransferTargetContext": "osvpi_account", "TransferTargetExten": "", "TransferTargetLanguage": "nl", "TransferTargetLinkedid": "07b796be1962-1530001225.708", "TransferTargetPriority": "1", "TransferTargetUniqueid": "07b796be1962-1530001225.716", "TransfereeAccountCode": "15001", "TransfereeCallerIDName": "", "TransfereeCallerIDNum": "+31260xxxxxx", "TransfereeChannel": "SIP/voipgrid-siproute-docker-00000027", "TransfereeChannelState": "6", "TransfereeChannelStateDesc": "Up", "TransfereeConnectedLineName": "", "TransfereeConnectedLineNum": "", "TransfereeContext": "osvpi_route_phoneaccount_step", "TransfereeExten": "+31150010001", "TransfereeLanguage": "nl", "TransfereeLinkedid": "07b796be1962-1530001217.664", "TransfereePriority": "1", "TransfereeUniqueid": "07b796be1962-1530001217.664", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "e46ed3cb-f3a4-4205-8a0e-83691254a0f0", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000028", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260xxxxxx", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "07b796be1962-1530001217.664", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.672", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "e46ed3cb-f3a4-4205-8a0e-83691254a0f0", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010001-00000028", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260xxxxxx", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "07b796be1962-1530001217.664", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.672", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010001-00000029", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "07b796be1962-1530001225.708", "Priority": "4", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001225.708", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "7b60a7d8-35f5-4577-a179-bfa68d1b8900", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-0000002a", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260xxxxxx", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "07b796be1962-1530001217.664", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001225.716", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "7b60a7d8-35f5-4577-a179-bfa68d1b8900", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260xxxxxx", "Channel": "SIP/voipgrid-siproute-docker-00000027", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_route_phoneaccount_step", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "nl", "Linkedid": "07b796be1962-1530001217.664", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.664", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010003-0000002a", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260xxxxxx", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "07b796be1962-1530001217.664", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001225.716", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "7b60a7d8-35f5-4577-a179-bfa68d1b8900", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260xxxxxx", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/voipgrid-siproute-docker-00000027", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "07b796be1962-1530001217.664", "Priority": "4", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530001217.664", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2bc35d10-ab1c-4b7c-910e-c7020cbb289c", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""} +] diff --git a/tests/fixtures/xfer_attended/xfer_abbcac_anonymous.json b/tests/fixtures/xfer_attended/xfer_abbcac_anonymous.json deleted file mode 100644 index a32c58a..0000000 --- a/tests/fixtures/xfer_attended/xfer_abbcac_anonymous.json +++ /dev/null @@ -1,82 +0,0 @@ -[ - {"Event": "FullyBooted", "content": "", "Status": "Fully Booted", "Privilege": "system,all"}, - {"CallerIDNum": "+31501234567", "Event": "Newchannel", "Context": "voipgrid_in", "Exten": "+31507654321", "ChannelStateDesc": "Down", "content": "", "AccountCode": "", "CallerIDName": "Foo bar", "Uniqueid": "vgua0-dev-1444635717.1178", "ChannelState": "0", "Privilege": "call,all", "Channel": "SIP/voipgrid-siproute-dev-00000250"}, - {"Uniqueid": "vgua0-dev-1444635717.1178", "ConnectedLineNum": "", "CallerIDNum": "+31501234567", "Event": "Newstate", "ConnectedLineName": "", "content": "", "Privilege": "call,all", "ChannelStateDesc": "Ring", "ChannelState": "4", "Channel": "SIP/voipgrid-siproute-dev-00000250", "CallerIDName": "Foo bar"}, - {"Uniqueid": "vgua0-dev-1444635717.1178", "CallerIDNum": "+31501234567", "Event": "NewCallerid", "CID-CallingPres": "33 (Presentation Prohibited, Passed Screen)", "CallerIDName": "Foo bar", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000250", "Privilege": "call,all"}, - {"Uniqueid": "vgua0-dev-1444635717.1178", "CallerIDNum": "+31501xxxxxx", "Event": "NewCallerid", "CID-CallingPres": "33 (Presentation Prohibited, Passed Screen)", "CallerIDName": "Foo bar", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000250", "Privilege": "call,all"}, - {"Uniqueid": "vgua0-dev-1444635717.1178", "Event": "NewAccountCode", "AccountCode": "12668", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000250", "Privilege": "call,all"}, - {"CallerIDNum": "", "Event": "Newchannel", "Context": "osvpi_route_phoneaccount", "Exten": "ID2", "ChannelStateDesc": "Down", "content": "", "AccountCode": "", "CallerIDName": "", "Uniqueid": "vgua0-dev-1444635717.1179", "ChannelState": "0", "Privilege": "call,all", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000125;1"}, - {"CallerIDNum": "", "Event": "Newchannel", "Context": "osvpi_route_phoneaccount", "Exten": "ID2", "ChannelStateDesc": "Ring", "content": "", "AccountCode": "", "CallerIDName": "", "Uniqueid": "vgua0-dev-1444635717.1180", "ChannelState": "4", "Privilege": "call,all", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000125;2"}, - {"Uniqueid": "vgua0-dev-1444635717.1179", "CallerIDNum": "+31507654321", "Event": "NewCallerid", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "content": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000125;1", "Privilege": "call,all"}, - {"Uniqueid2": "vgua0-dev-1444635717.1180", "Event": "LocalBridge", "Context": "osvpi_route_phoneaccount", "Channel1": "Local/ID2@osvpi_route_phoneaccount-00000125;1", "Exten": "ID2", "LocalOptimization": "Yes", "Channel2": "Local/ID2@osvpi_route_phoneaccount-00000125;2", "Uniqueid1": "vgua0-dev-1444635717.1179", "content": "", "Privilege": "call,all"}, - {"ConnectedLineNum": "", "CallerIDNum": "+31501xxxxxx", "Event": "Dial", "Dialstring": "ID2@osvpi_route_phoneaccount", "ConnectedLineName": "", "CallerIDName": "Foo bar", "Privilege": "call,all", "UniqueID": "vgua0-dev-1444635717.1178", "SubEvent": "Begin", "DestUniqueID": "vgua0-dev-1444635717.1179", "content": "", "Destination": "Local/ID2@osvpi_route_phoneaccount-00000125;1", "Channel": "SIP/voipgrid-siproute-dev-00000250"}, - {"Uniqueid": "vgua0-dev-1444635717.1180", "CallerIDNum": "126680001", "Event": "NewCallerid", "CID-CallingPres": "33 (Presentation Prohibited, Passed Screen)", "CallerIDName": "Foo bar", "content": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000125;2", "Privilege": "call,all"}, - {"Uniqueid": "vgua0-dev-1444635717.1180", "CallerIDNum": "126680001", "Event": "NewCallerid", "CID-CallingPres": "33 (Presentation Prohibited, Passed Screen)", "CallerIDName": "", "content": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000125;2", "Privilege": "call,all"}, - {"CallerIDNum": "", "Event": "Newchannel", "Context": "osvpi_account", "Exten": "", "ChannelStateDesc": "Down", "content": "", "AccountCode": "126680001", "CallerIDName": "", "Uniqueid": "vgua0-dev-1444635717.1181", "ChannelState": "0", "Privilege": "call,all", "Channel": "SIP/126680001-00000251"}, - {"Uniqueid": "vgua0-dev-1444635717.1181", "CallerIDNum": "+31507654321", "Event": "NewCallerid", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "content": "", "Channel": "SIP/126680001-00000251", "Privilege": "call,all"}, - {"ConnectedLineNum": "+31507654321", "CallerIDNum": "126680001", "Event": "Dial", "Dialstring": "126680001/126680001/1.2.3.4", "ConnectedLineName": "", "CallerIDName": "", "Privilege": "call,all", "UniqueID": "vgua0-dev-1444635717.1180", "SubEvent": "Begin", "DestUniqueID": "vgua0-dev-1444635717.1181", "content": "", "Destination": "SIP/126680001-00000251", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000125;2"}, - {"Uniqueid": "vgua0-dev-1444635717.1181", "ConnectedLineNum": "126680001", "CallerIDNum": "+31507654321", "Event": "Newstate", "ConnectedLineName": "", "content": "", "Privilege": "call,all", "ChannelStateDesc": "Ringing", "ChannelState": "5", "Channel": "SIP/126680001-00000251", "CallerIDName": ""}, - {"Uniqueid": "vgua0-dev-1444635717.1179", "ConnectedLineNum": "+31501xxxxxx", "CallerIDNum": "+31507654321", "Event": "Newstate", "ConnectedLineName": "Foo bar", "content": "", "Privilege": "call,all", "ChannelStateDesc": "Ringing", "ChannelState": "5", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000125;1", "CallerIDName": ""}, - {"Uniqueid": "vgua0-dev-1444635717.1181", "ConnectedLineNum": "126680001", "CallerIDNum": "+31507654321", "Event": "Newstate", "ConnectedLineName": "", "content": "", "Privilege": "call,all", "ChannelStateDesc": "Up", "ChannelState": "6", "Channel": "SIP/126680001-00000251", "CallerIDName": ""}, - {"Uniqueid": "vgua0-dev-1444635717.1179", "ConnectedLineNum": "+31501xxxxxx", "CallerIDNum": "+31507654321", "Event": "Newstate", "ConnectedLineName": "Foo bar", "content": "", "Privilege": "call,all", "ChannelStateDesc": "Up", "ChannelState": "6", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000125;1", "CallerIDName": ""}, - {"Uniqueid": "vgua0-dev-1444635717.1180", "ConnectedLineNum": "+31507654321", "CallerIDNum": "126680001", "Event": "Newstate", "ConnectedLineName": "", "content": "", "Privilege": "call,all", "ChannelStateDesc": "Up", "ChannelState": "6", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000125;2", "CallerIDName": ""}, - {"Uniqueid": "vgua0-dev-1444635717.1178", "ConnectedLineNum": "", "CallerIDNum": "+31501xxxxxx", "Event": "Newstate", "ConnectedLineName": "", "content": "", "Privilege": "call,all", "ChannelStateDesc": "Up", "ChannelState": "6", "Channel": "SIP/voipgrid-siproute-dev-00000250", "CallerIDName": "Foo bar"}, - {"Uniqueid": "vgua0-dev-1444635717.1181", "Event": "NewAccountCode", "AccountCode": "12668", "Channel": "SIP/126680001-00000251", "content": "", "OldAccountCode": "12668", "Privilege": "call,all"}, - {"Uniqueid": "vgua0-dev-1444635717.1179", "Event": "NewAccountCode", "AccountCode": "12668", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000125;1", "content": "", "OldAccountCode": "12668", "Privilege": "call,all"}, - {"Uniqueid2": "vgua0-dev-1444635717.1179", "Bridgestate": "Link", "Event": "Bridge", "Channel1": "SIP/voipgrid-siproute-dev-00000250", "Bridgetype": "core", "CallerID2": "+31507654321", "Channel2": "Local/ID2@osvpi_route_phoneaccount-00000125;1", "Uniqueid1": "vgua0-dev-1444635717.1178", "content": "", "CallerID1": "+31501xxxxxx", "Privilege": "call,all"}, - {"Uniqueid2": "vgua0-dev-1444635717.1181", "Bridgestate": "Link", "Event": "Bridge", "Channel1": "Local/ID2@osvpi_route_phoneaccount-00000125;2", "Bridgetype": "core", "CallerID2": "+31507654321", "Channel2": "SIP/126680001-00000251", "Uniqueid1": "vgua0-dev-1444635717.1180", "content": "", "CallerID1": "126680001", "Privilege": "call,all"}, - {"OriginalState": "Up", "Event": "Masquerade", "Original": "Local/ID2@osvpi_route_phoneaccount-00000125;1", "CloneState": "Up", "Clone": "SIP/126680001-00000251", "content": "", "Privilege": "call,all"}, - {"Uniqueid": "vgua0-dev-1444635717.1181", "Newname": "SIP/126680001-00000251", "Event": "Rename", "content": "", "Channel": "SIP/126680001-00000251", "Privilege": "call,all"}, - {"Uniqueid": "vgua0-dev-1444635717.1179", "Newname": "SIP/126680001-00000251", "Event": "Rename", "content": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000125;1", "Privilege": "call,all"}, - {"Uniqueid": "vgua0-dev-1444635717.1181", "Newname": "Local/ID2@osvpi_route_phoneaccount-00000125;1", "Event": "Rename", "content": "", "Channel": "SIP/126680001-00000251", "Privilege": "call,all"}, - {"Uniqueid": "vgua0-dev-1444635717.1179", "CallerIDNum": "+31507654321", "Event": "NewCallerid", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "content": "", "Channel": "SIP/126680001-00000251", "Privilege": "call,all"}, - {"Uniqueid2": "vgua0-dev-1444635717.1181", "Bridgestate": "Unlink", "Event": "Bridge", "Channel1": "Local/ID2@osvpi_route_phoneaccount-00000125;2", "Bridgetype": "core", "CallerID2": "+31507654321", "Channel2": "Local/ID2@osvpi_route_phoneaccount-00000125;1", "Uniqueid1": "vgua0-dev-1444635717.1180", "content": "", "CallerID1": "126680001", "Privilege": "call,all"}, - {"ConnectedLineNum": "+31501xxxxxx", "CallerIDNum": "+31507654321", "Event": "Hangup", "ConnectedLineName": "Foo bar", "CallerIDName": "", "Cause-txt": "Normal Clearing", "AccountCode": "12668", "content": "", "Uniqueid": "vgua0-dev-1444635717.1181", "Cause": "16", "Privilege": "call,all", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000125;1"}, - {"DialStatus": "ANSWER", "UniqueID": "vgua0-dev-1444635717.1180", "Event": "Dial", "SubEvent": "End", "content": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000125;2", "Privilege": "call,all"}, - {"ConnectedLineNum": "+31507654321", "CallerIDNum": "126680001", "Event": "Hangup", "ConnectedLineName": "", "CallerIDName": "", "Cause-txt": "Normal Clearing", "AccountCode": "12668", "content": "", "Uniqueid": "vgua0-dev-1444635717.1180", "Cause": "16", "Privilege": "call,all", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000125;2"}, - {"CallerIDNum": "126680001", "Event": "Newchannel", "Context": "osvpi_account", "Exten": "202", "ChannelStateDesc": "Down", "content": "", "AccountCode": "126680001", "CallerIDName": "", "Uniqueid": "vgua0-dev-1444635718.1182", "ChannelState": "0", "Privilege": "call,all", "Channel": "SIP/126680001-00000252"}, - {"Uniqueid": "vgua0-dev-1444635718.1182", "ConnectedLineNum": "", "CallerIDNum": "126680001", "Event": "Newstate", "ConnectedLineName": "", "content": "", "Privilege": "call,all", "ChannelStateDesc": "Ring", "ChannelState": "4", "Channel": "SIP/126680001-00000252", "CallerIDName": ""}, - {"Uniqueid": "vgua0-dev-1444635718.1182", "CallerIDNum": "201", "Event": "NewCallerid", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "content": "", "Channel": "SIP/126680001-00000252", "Privilege": "call,all"}, - {"CallerIDNum": "", "Event": "Newchannel", "Context": "osvpi_route_phoneaccount", "Exten": "ID12", "ChannelStateDesc": "Down", "content": "", "AccountCode": "", "CallerIDName": "", "Uniqueid": "vgua0-dev-1444635718.1183", "ChannelState": "0", "Privilege": "call,all", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000126;1"}, - {"CallerIDNum": "", "Event": "Newchannel", "Context": "osvpi_route_phoneaccount", "Exten": "ID12", "ChannelStateDesc": "Ring", "content": "", "AccountCode": "", "CallerIDName": "", "Uniqueid": "vgua0-dev-1444635718.1184", "ChannelState": "4", "Privilege": "call,all", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000126;2"}, - {"Uniqueid": "vgua0-dev-1444635718.1183", "CallerIDNum": "202", "Event": "NewCallerid", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "content": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000126;1", "Privilege": "call,all"}, - {"Uniqueid2": "vgua0-dev-1444635718.1184", "Event": "LocalBridge", "Context": "osvpi_route_phoneaccount", "Channel1": "Local/ID12@osvpi_route_phoneaccount-00000126;1", "Exten": "ID12", "LocalOptimization": "Yes", "Channel2": "Local/ID12@osvpi_route_phoneaccount-00000126;2", "Uniqueid1": "vgua0-dev-1444635718.1183", "content": "", "Privilege": "call,all"}, - {"ConnectedLineNum": "", "CallerIDNum": "201", "Event": "Dial", "Dialstring": "ID12@osvpi_route_phoneaccount", "ConnectedLineName": "", "CallerIDName": "", "Privilege": "call,all", "UniqueID": "vgua0-dev-1444635718.1182", "SubEvent": "Begin", "DestUniqueID": "vgua0-dev-1444635718.1183", "content": "", "Destination": "Local/ID12@osvpi_route_phoneaccount-00000126;1", "Channel": "SIP/126680001-00000252"}, - {"Uniqueid": "vgua0-dev-1444635718.1184", "CallerIDNum": "126680002", "Event": "NewCallerid", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "content": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000126;2", "Privilege": "call,all"}, - {"CallerIDNum": "", "Event": "Newchannel", "Context": "osvpi_account", "Exten": "", "ChannelStateDesc": "Down", "content": "", "AccountCode": "126680002", "CallerIDName": "", "Uniqueid": "vgua0-dev-1444635718.1185", "ChannelState": "0", "Privilege": "call,all", "Channel": "SIP/126680002-00000253"}, - {"Uniqueid": "vgua0-dev-1444635718.1185", "CallerIDNum": "202", "Event": "NewCallerid", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "content": "", "Channel": "SIP/126680002-00000253", "Privilege": "call,all"}, - {"ConnectedLineNum": "202", "CallerIDNum": "126680002", "Event": "Dial", "Dialstring": "126680002/126680002/1.2.3.4", "ConnectedLineName": "", "CallerIDName": "", "Privilege": "call,all", "UniqueID": "vgua0-dev-1444635718.1184", "SubEvent": "Begin", "DestUniqueID": "vgua0-dev-1444635718.1185", "content": "", "Destination": "SIP/126680002-00000253", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000126;2"}, - {"Uniqueid": "vgua0-dev-1444635718.1185", "ConnectedLineNum": "126680002", "CallerIDNum": "202", "Event": "Newstate", "ConnectedLineName": "", "content": "", "Privilege": "call,all", "ChannelStateDesc": "Ringing", "ChannelState": "5", "Channel": "SIP/126680002-00000253", "CallerIDName": ""}, - {"Uniqueid": "vgua0-dev-1444635718.1183", "ConnectedLineNum": "201", "CallerIDNum": "202", "Event": "Newstate", "ConnectedLineName": "", "content": "", "Privilege": "call,all", "ChannelStateDesc": "Ringing", "ChannelState": "5", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000126;1", "CallerIDName": ""}, - {"Uniqueid": "vgua0-dev-1444635718.1185", "ConnectedLineNum": "126680002", "CallerIDNum": "202", "Event": "Newstate", "ConnectedLineName": "", "content": "", "Privilege": "call,all", "ChannelStateDesc": "Up", "ChannelState": "6", "Channel": "SIP/126680002-00000253", "CallerIDName": ""}, - {"Uniqueid": "vgua0-dev-1444635718.1183", "ConnectedLineNum": "201", "CallerIDNum": "202", "Event": "Newstate", "ConnectedLineName": "", "content": "", "Privilege": "call,all", "ChannelStateDesc": "Up", "ChannelState": "6", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000126;1", "CallerIDName": ""}, - {"Uniqueid": "vgua0-dev-1444635718.1184", "ConnectedLineNum": "202", "CallerIDNum": "126680002", "Event": "Newstate", "ConnectedLineName": "", "content": "", "Privilege": "call,all", "ChannelStateDesc": "Up", "ChannelState": "6", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000126;2", "CallerIDName": ""}, - {"Uniqueid": "vgua0-dev-1444635718.1182", "ConnectedLineNum": "", "CallerIDNum": "201", "Event": "Newstate", "ConnectedLineName": "", "content": "", "Privilege": "call,all", "ChannelStateDesc": "Up", "ChannelState": "6", "Channel": "SIP/126680001-00000252", "CallerIDName": ""}, - {"Uniqueid": "vgua0-dev-1444635718.1183", "Event": "NewAccountCode", "AccountCode": "126680001", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000126;1", "content": "", "OldAccountCode": "126680001", "Privilege": "call,all"}, - {"Uniqueid2": "vgua0-dev-1444635718.1183", "Bridgestate": "Link", "Event": "Bridge", "Channel1": "SIP/126680001-00000252", "Bridgetype": "core", "CallerID2": "202", "Channel2": "Local/ID12@osvpi_route_phoneaccount-00000126;1", "Uniqueid1": "vgua0-dev-1444635718.1182", "content": "", "CallerID1": "201", "Privilege": "call,all"}, - {"Uniqueid": "vgua0-dev-1444635718.1185", "Event": "NewAccountCode", "AccountCode": "126680001", "Channel": "SIP/126680002-00000253", "content": "", "OldAccountCode": "126680001", "Privilege": "call,all"}, - {"Uniqueid2": "vgua0-dev-1444635718.1185", "Bridgestate": "Link", "Event": "Bridge", "Channel1": "Local/ID12@osvpi_route_phoneaccount-00000126;2", "Bridgetype": "core", "CallerID2": "202", "Channel2": "SIP/126680002-00000253", "Uniqueid1": "vgua0-dev-1444635718.1184", "content": "", "CallerID1": "126680002", "Privilege": "call,all"}, - {"OriginalState": "Up", "Event": "Masquerade", "Original": "Local/ID12@osvpi_route_phoneaccount-00000126;1", "CloneState": "Up", "Clone": "SIP/126680002-00000253", "content": "", "Privilege": "call,all"}, - {"Uniqueid": "vgua0-dev-1444635718.1185", "Newname": "SIP/126680002-00000253", "Event": "Rename", "content": "", "Channel": "SIP/126680002-00000253", "Privilege": "call,all"}, - {"Uniqueid": "vgua0-dev-1444635718.1183", "Newname": "SIP/126680002-00000253", "Event": "Rename", "content": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000126;1", "Privilege": "call,all"}, - {"Uniqueid": "vgua0-dev-1444635718.1185", "Newname": "Local/ID12@osvpi_route_phoneaccount-00000126;1", "Event": "Rename", "content": "", "Channel": "SIP/126680002-00000253", "Privilege": "call,all"}, - {"Uniqueid": "vgua0-dev-1444635718.1183", "CallerIDNum": "202", "Event": "NewCallerid", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "content": "", "Channel": "SIP/126680002-00000253", "Privilege": "call,all"}, - {"Uniqueid2": "vgua0-dev-1444635718.1185", "Bridgestate": "Unlink", "Event": "Bridge", "Channel1": "Local/ID12@osvpi_route_phoneaccount-00000126;2", "Bridgetype": "core", "CallerID2": "202", "Channel2": "Local/ID12@osvpi_route_phoneaccount-00000126;1", "Uniqueid1": "vgua0-dev-1444635718.1184", "content": "", "CallerID1": "126680002", "Privilege": "call,all"}, - {"ConnectedLineNum": "201", "CallerIDNum": "202", "Event": "Hangup", "ConnectedLineName": "", "CallerIDName": "", "Cause-txt": "Normal Clearing", "AccountCode": "126680001", "content": "", "Uniqueid": "vgua0-dev-1444635718.1185", "Cause": "16", "Privilege": "call,all", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000126;1"}, - {"DialStatus": "ANSWER", "UniqueID": "vgua0-dev-1444635718.1184", "Event": "Dial", "SubEvent": "End", "content": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000126;2", "Privilege": "call,all"}, - {"ConnectedLineNum": "202", "CallerIDNum": "126680002", "Event": "Hangup", "ConnectedLineName": "", "CallerIDName": "", "Cause-txt": "Normal Clearing", "AccountCode": "126680001", "content": "", "Uniqueid": "vgua0-dev-1444635718.1184", "Cause": "16", "Privilege": "call,all", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000126;2"}, - {"Uniqueid": "vgua0-dev-1444635717.1179", "TransferType": "Attended", "Event": "Transfer", "TargetUniqueid": "vgua0-dev-1444635718.1182", "TargetChannel": "SIP/126680001-00000252", "TransferMethod": "SIP", "content": "", "Channel": "SIP/126680001-00000251", "SIP-Callid": "1b5061871ec3bcc8786b5df01464fa9f@5.5.5.5:5060", "Privilege": "call,all"}, - {"OriginalState": "Up", "Event": "Masquerade", "Original": "SIP/126680001-00000252", "CloneState": "Up", "Clone": "SIP/voipgrid-siproute-dev-00000250", "content": "", "Privilege": "call,all"}, - {"Uniqueid": "vgua0-dev-1444635717.1178", "Newname": "SIP/voipgrid-siproute-dev-00000250", "Event": "Rename", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000250", "Privilege": "call,all"}, - {"Uniqueid": "vgua0-dev-1444635718.1182", "Newname": "SIP/voipgrid-siproute-dev-00000250", "Event": "Rename", "content": "", "Channel": "SIP/126680001-00000252", "Privilege": "call,all"}, - {"Uniqueid": "vgua0-dev-1444635717.1178", "Newname": "SIP/126680001-00000252", "Event": "Rename", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000250", "Privilege": "call,all"}, - {"Uniqueid": "vgua0-dev-1444635718.1182", "CallerIDNum": "+31501xxxxxx", "Event": "NewCallerid", "CID-CallingPres": "33 (Presentation Prohibited, Passed Screen)", "CallerIDName": "Foo bar", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000250", "Privilege": "call,all"}, - {"Uniqueid2": "vgua0-dev-1444635717.1179", "Bridgestate": "Unlink", "Event": "Bridge", "Channel1": "SIP/126680001-00000252", "Bridgetype": "core", "CallerID2": "+31507654321", "Channel2": "SIP/126680001-00000251", "Uniqueid1": "vgua0-dev-1444635717.1178", "content": "", "CallerID1": "201", "Privilege": "call,all"}, - {"ConnectedLineNum": "126680001", "CallerIDNum": "+31507654321", "Event": "Hangup", "ConnectedLineName": "", "CallerIDName": "", "Cause-txt": "Normal Clearing", "AccountCode": "12668", "content": "", "Uniqueid": "vgua0-dev-1444635717.1179", "Cause": "16", "Privilege": "call,all", "Channel": "SIP/126680001-00000251"}, - {"DialStatus": "ANSWER", "UniqueID": "vgua0-dev-1444635717.1178", "Event": "Dial", "SubEvent": "End", "content": "", "Channel": "SIP/126680001-00000252", "Privilege": "call,all"}, - {"ConnectedLineNum": "", "CallerIDNum": "201", "Event": "Hangup", "ConnectedLineName": "", "CallerIDName": "", "Cause-txt": "Normal Clearing", "AccountCode": "12668", "content": "", "Uniqueid": "vgua0-dev-1444635717.1178", "Cause": "16", "Privilege": "call,all", "Channel": "SIP/126680001-00000252"}, - {"Uniqueid2": "vgua0-dev-1444635718.1183", "Bridgestate": "Unlink", "Event": "Bridge", "Channel1": "SIP/voipgrid-siproute-dev-00000250", "Bridgetype": "core", "CallerID2": "202", "Channel2": "SIP/126680002-00000253", "Uniqueid1": "vgua0-dev-1444635718.1182", "content": "", "CallerID1": "+31501xxxxxx", "Privilege": "call,all"}, - {"ConnectedLineNum": "126680001", "CallerIDNum": "202", "Event": "Hangup", "ConnectedLineName": "", "CallerIDName": "", "Cause-txt": "Normal Clearing", "AccountCode": "126680001", "content": "", "Uniqueid": "vgua0-dev-1444635718.1183", "Cause": "16", "Privilege": "call,all", "Channel": "SIP/126680002-00000253"}, - {"DialStatus": "ANSWER", "UniqueID": "vgua0-dev-1444635718.1182", "Event": "Dial", "SubEvent": "End", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000250", "Privilege": "call,all"}, - {"ConnectedLineNum": "", "CallerIDNum": "+31501xxxxxx", "Event": "Hangup", "ConnectedLineName": "", "CallerIDName": "Foo bar", "Cause-txt": "Normal Clearing", "AccountCode": "12668", "content": "", "Uniqueid": "vgua0-dev-1444635718.1182", "Cause": "16", "Privilege": "call,all", "Channel": "SIP/voipgrid-siproute-dev-00000250"} -] diff --git a/tests/fixtures/xfer_attended/xfer_abcbac.json b/tests/fixtures/xfer_attended/xfer_abcbac.json new file mode 100644 index 0000000..ed99644 --- /dev/null +++ b/tests/fixtures/xfer_attended/xfer_abcbac.json @@ -0,0 +1,102 @@ +[ + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Bob", "CallerIDNum": "150010002", "Channel": "SIP/150010002-0000003c", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994176.1772", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Bob", "CallerIDNum": "150010002", "Channel": "SIP/150010002-0000003c", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newstate", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994176.1772", "content": ""}, + + {"AccountCode": "150010002", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Christina Arroyo", "CallerIDNum": "150010002", "Channel": "SIP/150010002-0000003c", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "5", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994176.1772", "content": ""}, + {"AccountCode": "150010002", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "SIP/150010002-0000003c", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "6", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994176.1772", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000004f;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730150", "Language": "en", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994176.1775", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000004f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730150", "Language": "en", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994176.1777", "content": ""}, + {"AccountCode": "150010002", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000004f;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994176.1775", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000004f;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994176.1775", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000004f;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994176.1775", "content": ""}, + {"AccountCode": "150010002", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000004f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730150", "Language": "en", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994176.1777", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000004f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730150", "Language": "en", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994176.1777", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000004f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730150", "Language": "en", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994176.1777", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730150", "LocalOneAccountCode": "150010002", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "201", "LocalOneChannel": "Local/ID730150@osvpi_route_phoneaccount-0000004f;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Christina Arroyo", "LocalOneConnectedLineNum": "202", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "201", "LocalOneLanguage": "en", "LocalOneLinkedid": "c4061ca6474c-1531994176.1772", "LocalOnePriority": "1", "LocalOneUniqueid": "c4061ca6474c-1531994176.1775", "LocalOptimization": "Yes", "LocalTwoAccountCode": "150010002", "LocalTwoCallerIDName": "Christina Arroyo", "LocalTwoCallerIDNum": "202", "LocalTwoChannel": "Local/ID730150@osvpi_route_phoneaccount-0000004f;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "201", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730150", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "c4061ca6474c-1531994176.1772", "LocalTwoPriority": "1", "LocalTwoUniqueid": "c4061ca6474c-1531994176.1777", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "SIP/150010002-0000003c", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010002", "DestCallerIDName": "", "DestCallerIDNum": "201", "DestChannel": "Local/ID730150@osvpi_route_phoneaccount-0000004f;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Christina Arroyo", "DestConnectedLineNum": "202", "DestContext": "osvpi_route_phoneaccount", "DestExten": "201", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531994176.1772", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531994176.1775", "DialString": "ID730150@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994176.1772", "content": ""}, + + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010001-0000003d", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994176.1780", "content": ""}, + {"AccountCode": "150010002", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-0000003d", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994176.1780", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-0000003d", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531994176.1772", "OldAccountCode": "150010001", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994176.1780", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-0000003d", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994176.1780", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000004f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010002", "DestCallerIDName": "", "DestCallerIDNum": "201", "DestChannel": "SIP/150010001-0000003d", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Christina Arroyo", "DestConnectedLineNum": "202", "DestContext": "osvpi_account", "DestExten": "201", "DestLanguage": "nl", "DestLinkedid": "c4061ca6474c-1531994176.1772", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531994176.1780", "DialString": "150010001/150010001/172.20.0.13!!202", "Event": "DialBegin", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994176.1777", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-0000003d", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_account", "Event": "Newstate", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994176.1780", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000004f;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994176.1775", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-0000003d", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_account", "Event": "Newstate", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994176.1780", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000004f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010002", "DestCallerIDName": "", "DestCallerIDNum": "201", "DestChannel": "SIP/150010001-0000003d", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Christina Arroyo", "DestConnectedLineNum": "202", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "c4061ca6474c-1531994176.1772", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531994176.1780", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994176.1777", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000004f;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994176.1777", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000004f;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994176.1775", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "aef69dfd-89c8-44ce-bc70-c5e8d837464c", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "SIP/150010002-0000003c", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010002", "DestCallerIDName": "", "DestCallerIDNum": "201", "DestChannel": "Local/ID730150@osvpi_route_phoneaccount-0000004f;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Christina Arroyo", "DestConnectedLineNum": "202", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531994176.1772", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531994176.1775", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994176.1772", "content": ""}, + {"AccountCode": "150010002", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "aef69dfd-89c8-44ce-bc70-c5e8d837464c", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-0000003d", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994176.1780", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "SIP/150010002-0000003c", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "Newstate", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994176.1772", "content": ""}, + {"AccountCode": "150010002", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "aef69dfd-89c8-44ce-bc70-c5e8d837464c", "BridgeVideoSourceMode": "none", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000004f;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994176.1777", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "12771c81-595a-4d8f-8919-e9aa17d71565", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "150010002", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "12771c81-595a-4d8f-8919-e9aa17d71565", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000004f;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994176.1775", "content": ""}, + {"AccountCode": "150010002", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "12771c81-595a-4d8f-8919-e9aa17d71565", "BridgeVideoSourceMode": "none", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "SIP/150010002-0000003c", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994176.1772", "content": ""}, + {"AccountCode": "150010002", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "12771c81-595a-4d8f-8919-e9aa17d71565", "BridgeVideoSourceMode": "none", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "SIP/150010002-0000003c", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994176.1772", "content": ""}, + {"AccountCode": "150010002", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "aef69dfd-89c8-44ce-bc70-c5e8d837464c", "BridgeVideoSourceMode": "none", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000004f;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994176.1777", "content": ""}, + {"AccountCode": "150010002", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "aef69dfd-89c8-44ce-bc70-c5e8d837464c", "BridgeVideoSourceMode": "none", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "SIP/150010002-0000003c", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "12", "Privilege": "call,all", "SwapUniqueid": "c4061ca6474c-1531994176.1777", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994176.1772", "content": ""}, + {"AccountCode": "150010002", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "12771c81-595a-4d8f-8919-e9aa17d71565", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000004f;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994176.1775", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "12771c81-595a-4d8f-8919-e9aa17d71565", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000004f;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994176.1775", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000004f;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994176.1777", "content": ""}, + {"AccountCode": "150010003", "CallerIDName": "", "CallerIDNum": "150010003", "Channel": "SIP/150010003-0000003e", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531994180.1800", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1800", "content": ""}, + {"AccountCode": "150010003", "CallerIDName": "", "CallerIDNum": "150010003", "Channel": "SIP/150010003-0000003e", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newstate", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531994180.1800", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1800", "content": ""}, + + {"AccountCode": "150010003", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Mark Williams", "CallerIDNum": "150010003", "Channel": "SIP/150010003-0000003e", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531994180.1800", "Priority": "5", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1800", "content": ""}, + {"AccountCode": "150010003", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Mark Williams", "CallerIDNum": "203", "Channel": "SIP/150010003-0000003e", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531994180.1800", "Priority": "6", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1800", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000050;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730150", "Language": "en", "Linkedid": "c4061ca6474c-1531994180.1800", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1803", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000050;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730150", "Language": "en", "Linkedid": "c4061ca6474c-1531994180.1800", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1805", "content": ""}, + {"AccountCode": "150010003", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000050;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Mark Williams", "ConnectedLineNum": "203", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531994180.1800", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1803", "content": ""}, + {"AccountCode": "150010003", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000050;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Mark Williams", "ConnectedLineNum": "203", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531994180.1800", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1803", "content": ""}, + {"AccountCode": "150010003", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000050;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Mark Williams", "ConnectedLineNum": "203", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531994180.1800", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1803", "content": ""}, + {"AccountCode": "150010003", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Mark Williams", "CallerIDNum": "203", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000050;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730150", "Language": "en", "Linkedid": "c4061ca6474c-1531994180.1800", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1805", "content": ""}, + {"AccountCode": "150010003", "CallerIDName": "Mark Williams", "CallerIDNum": "203", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000050;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730150", "Language": "en", "Linkedid": "c4061ca6474c-1531994180.1800", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1805", "content": ""}, + {"AccountCode": "150010003", "CallerIDName": "Mark Williams", "CallerIDNum": "203", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000050;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730150", "Language": "en", "Linkedid": "c4061ca6474c-1531994180.1800", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1805", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730150", "LocalOneAccountCode": "150010003", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "201", "LocalOneChannel": "Local/ID730150@osvpi_route_phoneaccount-00000050;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Mark Williams", "LocalOneConnectedLineNum": "203", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "201", "LocalOneLanguage": "en", "LocalOneLinkedid": "c4061ca6474c-1531994180.1800", "LocalOnePriority": "1", "LocalOneUniqueid": "c4061ca6474c-1531994180.1803", "LocalOptimization": "Yes", "LocalTwoAccountCode": "150010003", "LocalTwoCallerIDName": "Mark Williams", "LocalTwoCallerIDNum": "203", "LocalTwoChannel": "Local/ID730150@osvpi_route_phoneaccount-00000050;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "201", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730150", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "c4061ca6474c-1531994180.1800", "LocalTwoPriority": "1", "LocalTwoUniqueid": "c4061ca6474c-1531994180.1805", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "150010003", "CallerIDName": "Mark Williams", "CallerIDNum": "203", "Channel": "SIP/150010003-0000003e", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010003", "DestCallerIDName": "", "DestCallerIDNum": "201", "DestChannel": "Local/ID730150@osvpi_route_phoneaccount-00000050;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Mark Williams", "DestConnectedLineNum": "203", "DestContext": "osvpi_route_phoneaccount", "DestExten": "201", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531994180.1800", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531994180.1803", "DialString": "ID730150@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531994180.1800", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1800", "content": ""}, + + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010001-0000003f", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "c4061ca6474c-1531994180.1800", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1808", "content": ""}, + {"AccountCode": "150010003", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-0000003f", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Mark Williams", "ConnectedLineNum": "203", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531994180.1800", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1808", "content": ""}, + {"AccountCode": "150010003", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-0000003f", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Mark Williams", "ConnectedLineNum": "203", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531994180.1800", "OldAccountCode": "150010001", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1808", "content": ""}, + {"AccountCode": "150010003", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-0000003f", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Mark Williams", "ConnectedLineNum": "203", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531994180.1800", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1808", "content": ""}, + {"AccountCode": "150010003", "CallerIDName": "Mark Williams", "CallerIDNum": "203", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000050;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010003", "DestCallerIDName": "", "DestCallerIDNum": "201", "DestChannel": "SIP/150010001-0000003f", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Mark Williams", "DestConnectedLineNum": "203", "DestContext": "osvpi_account", "DestExten": "201", "DestLanguage": "nl", "DestLinkedid": "c4061ca6474c-1531994180.1800", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531994180.1808", "DialString": "150010001/150010001/172.20.0.13!!203", "Event": "DialBegin", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531994180.1800", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1805", "content": ""}, + {"AccountCode": "150010003", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-0000003f", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Mark Williams", "ConnectedLineNum": "203", "Context": "osvpi_account", "Event": "Newstate", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531994180.1800", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1808", "content": ""}, + {"AccountCode": "150010003", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000050;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Mark Williams", "ConnectedLineNum": "203", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531994180.1800", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1803", "content": ""}, + {"AccountCode": "150010003", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-0000003f", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Mark Williams", "ConnectedLineNum": "203", "Context": "osvpi_account", "Event": "Newstate", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531994180.1800", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1808", "content": ""}, + {"AccountCode": "150010003", "CallerIDName": "Mark Williams", "CallerIDNum": "203", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000050;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010003", "DestCallerIDName": "", "DestCallerIDNum": "201", "DestChannel": "SIP/150010001-0000003f", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Mark Williams", "DestConnectedLineNum": "203", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "c4061ca6474c-1531994180.1800", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531994180.1808", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531994180.1800", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1805", "content": ""}, + {"AccountCode": "150010003", "CallerIDName": "Mark Williams", "CallerIDNum": "203", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000050;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531994180.1800", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1805", "content": ""}, + {"AccountCode": "150010003", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000050;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Mark Williams", "ConnectedLineNum": "203", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531994180.1800", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1803", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "93886916-e1d9-481a-8142-8f0c79131297", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "150010003", "CallerIDName": "Mark Williams", "CallerIDNum": "203", "Channel": "SIP/150010003-0000003e", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010003", "DestCallerIDName": "", "DestCallerIDNum": "201", "DestChannel": "Local/ID730150@osvpi_route_phoneaccount-00000050;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Mark Williams", "DestConnectedLineNum": "203", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "c4061ca6474c-1531994180.1800", "DestPriority": "1", "DestUniqueid": "c4061ca6474c-1531994180.1803", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531994180.1800", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1800", "content": ""}, + {"AccountCode": "150010003", "CallerIDName": "Mark Williams", "CallerIDNum": "203", "Channel": "SIP/150010003-0000003e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "Newstate", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531994180.1800", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1800", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "26695778-10f5-4183-b931-ee5d36a078f2", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "150010003", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "26695778-10f5-4183-b931-ee5d36a078f2", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000050;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Mark Williams", "ConnectedLineNum": "203", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531994180.1800", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1803", "content": ""}, + {"AccountCode": "150010003", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "26695778-10f5-4183-b931-ee5d36a078f2", "BridgeVideoSourceMode": "none", "CallerIDName": "Mark Williams", "CallerIDNum": "203", "Channel": "SIP/150010003-0000003e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531994180.1800", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1800", "content": ""}, + {"AccountCode": "150010003", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "93886916-e1d9-481a-8142-8f0c79131297", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-0000003f", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Mark Williams", "ConnectedLineNum": "203", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531994180.1800", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1808", "content": ""}, + {"AccountCode": "150010003", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "93886916-e1d9-481a-8142-8f0c79131297", "BridgeVideoSourceMode": "none", "CallerIDName": "Mark Williams", "CallerIDNum": "203", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000050;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531994180.1800", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1805", "content": ""}, + {"AccountCode": "150010003", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "26695778-10f5-4183-b931-ee5d36a078f2", "BridgeVideoSourceMode": "none", "CallerIDName": "Mark Williams", "CallerIDNum": "203", "Channel": "SIP/150010003-0000003e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531994180.1800", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1800", "content": ""}, + {"AccountCode": "150010003", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "93886916-e1d9-481a-8142-8f0c79131297", "BridgeVideoSourceMode": "none", "CallerIDName": "Mark Williams", "CallerIDNum": "203", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000050;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "201", "Language": "en", "Linkedid": "c4061ca6474c-1531994180.1800", "Priority": "8", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1805", "content": ""}, + {"AccountCode": "150010003", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "93886916-e1d9-481a-8142-8f0c79131297", "BridgeVideoSourceMode": "none", "CallerIDName": "Mark Williams", "CallerIDNum": "203", "Channel": "SIP/150010003-0000003e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531994180.1800", "Priority": "12", "Privilege": "call,all", "SwapUniqueid": "c4061ca6474c-1531994180.1805", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1800", "content": ""}, + {"AccountCode": "150010003", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "26695778-10f5-4183-b931-ee5d36a078f2", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000050;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Mark Williams", "ConnectedLineNum": "203", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531994180.1800", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1803", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "26695778-10f5-4183-b931-ee5d36a078f2", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "150010003", "CallerIDName": "", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000050;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Mark Williams", "ConnectedLineNum": "203", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "c4061ca6474c-1531994180.1800", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1803", "content": ""}, + {"AccountCode": "150010003", "CallerIDName": "Mark Williams", "CallerIDNum": "203", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000050;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "c4061ca6474c-1531994180.1800", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1805", "content": ""}, + {"AccountCode": "150010003", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "93886916-e1d9-481a-8142-8f0c79131297", "BridgeVideoSourceMode": "none", "CallerIDName": "Mark Williams", "CallerIDNum": "203", "Channel": "SIP/150010003-0000003e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531994180.1800", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1800", "content": ""}, + {"AccountCode": "150010002", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "aef69dfd-89c8-44ce-bc70-c5e8d837464c", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-0000003d", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994176.1780", "content": ""}, + {"AccountCode": "150010003", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "aef69dfd-89c8-44ce-bc70-c5e8d837464c", "BridgeVideoSourceMode": "none", "CallerIDName": "Mark Williams", "CallerIDNum": "203", "Channel": "SIP/150010003-0000003e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "12", "Privilege": "call,all", "SwapUniqueid": "c4061ca6474c-1531994176.1780", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1800", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "SIP/150010002-0000003c", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Mark Williams", "ConnectedLineNum": "203", "Context": "osvpi_account_call_int", "Event": "NewConnectedLine", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994176.1772", "content": ""}, + {"DestBridgeUniqueid": "aef69dfd-89c8-44ce-bc70-c5e8d837464c", "DestType": "Bridge", "Event": "AttendedTransfer", "IsExternal": "No", "OrigBridgeCreator": "", "OrigBridgeName": "", "OrigBridgeNumChannels": "2", "OrigBridgeTechnology": "simple_bridge", "OrigBridgeType": "basic", "OrigBridgeUniqueid": "93886916-e1d9-481a-8142-8f0c79131297", "OrigBridgeVideoSourceMode": "none", "OrigTransfererAccountCode": "150010003", "OrigTransfererCallerIDName": "", "OrigTransfererCallerIDNum": "201", "OrigTransfererChannel": "SIP/150010001-0000003f", "OrigTransfererChannelState": "6", "OrigTransfererChannelStateDesc": "Up", "OrigTransfererConnectedLineName": "Mark Williams", "OrigTransfererConnectedLineNum": "203", "OrigTransfererContext": "osvpi_account", "OrigTransfererExten": "", "OrigTransfererLanguage": "nl", "OrigTransfererLinkedid": "c4061ca6474c-1531994180.1800", "OrigTransfererPriority": "1", "OrigTransfererUniqueid": "c4061ca6474c-1531994180.1808", "Privilege": "call,all", "Result": "Success", "SecondBridgeCreator": "", "SecondBridgeName": "", "SecondBridgeNumChannels": "2", "SecondBridgeTechnology": "simple_bridge", "SecondBridgeType": "basic", "SecondBridgeUniqueid": "aef69dfd-89c8-44ce-bc70-c5e8d837464c", "SecondBridgeVideoSourceMode": "none", "SecondTransfererAccountCode": "150010002", "SecondTransfererCallerIDName": "", "SecondTransfererCallerIDNum": "201", "SecondTransfererChannel": "SIP/150010001-0000003d", "SecondTransfererChannelState": "6", "SecondTransfererChannelStateDesc": "Up", "SecondTransfererConnectedLineName": "Christina Arroyo", "SecondTransfererConnectedLineNum": "202", "SecondTransfererContext": "osvpi_account", "SecondTransfererExten": "", "SecondTransfererLanguage": "nl", "SecondTransfererLinkedid": "c4061ca6474c-1531994176.1772", "SecondTransfererPriority": "1", "SecondTransfererUniqueid": "c4061ca6474c-1531994176.1780", "SystemName": "c4061ca6474c", "TransferTargetAccountCode": "150010002", "TransferTargetCallerIDName": "Christina Arroyo", "TransferTargetCallerIDNum": "202", "TransferTargetChannel": "SIP/150010002-0000003c", "TransferTargetChannelState": "6", "TransferTargetChannelStateDesc": "Up", "TransferTargetConnectedLineName": "", "TransferTargetConnectedLineNum": "", "TransferTargetContext": "osvpi_account_call_int", "TransferTargetExten": "201", "TransferTargetLanguage": "nl", "TransferTargetLinkedid": "c4061ca6474c-1531994176.1772", "TransferTargetPriority": "12", "TransferTargetUniqueid": "c4061ca6474c-1531994176.1772", "TransfereeAccountCode": "150010003", "TransfereeCallerIDName": "Mark Williams", "TransfereeCallerIDNum": "203", "TransfereeChannel": "SIP/150010003-0000003e", "TransfereeChannelState": "6", "TransfereeChannelStateDesc": "Up", "TransfereeConnectedLineName": "", "TransfereeConnectedLineNum": "", "TransfereeContext": "osvpi_account_call_int", "TransfereeExten": "201", "TransfereeLanguage": "nl", "TransfereeLinkedid": "c4061ca6474c-1531994180.1800", "TransfereePriority": "12", "TransfereeUniqueid": "c4061ca6474c-1531994180.1800", "content": ""}, + {"AccountCode": "150010003", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "93886916-e1d9-481a-8142-8f0c79131297", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-0000003f", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Mark Williams", "ConnectedLineNum": "203", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531994180.1800", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1808", "content": ""}, + {"AccountCode": "150010003", "CallerIDName": "Mark Williams", "CallerIDNum": "203", "Channel": "SIP/150010003-0000003e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_account_call_int", "Event": "NewConnectedLine", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1800", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "93886916-e1d9-481a-8142-8f0c79131297", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "150010003", "CallerIDName": "", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010001-0000003f", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Mark Williams", "ConnectedLineNum": "203", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531994180.1800", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1808", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010001-0000003d", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "1", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994176.1780", "content": ""}, + {"AccountCode": "150010003", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "aef69dfd-89c8-44ce-bc70-c5e8d837464c", "BridgeVideoSourceMode": "none", "CallerIDName": "Mark Williams", "CallerIDNum": "203", "Channel": "SIP/150010003-0000003e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1800", "content": ""}, + {"AccountCode": "150010002", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "aef69dfd-89c8-44ce-bc70-c5e8d837464c", "BridgeVideoSourceMode": "none", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "SIP/150010002-0000003c", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Mark Williams", "ConnectedLineNum": "203", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "201", "Language": "nl", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "12", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994176.1772", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "aef69dfd-89c8-44ce-bc70-c5e8d837464c", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "c4061ca6474c", "content": ""}, + {"AccountCode": "150010003", "CallerIDName": "Mark Williams", "CallerIDNum": "203", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010003-0000003e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994180.1800", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010002-0000003c", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Mark Williams", "ConnectedLineNum": "203", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "c4061ca6474c-1531994176.1772", "Priority": "4", "Privilege": "call,all", "SystemName": "c4061ca6474c", "Uniqueid": "c4061ca6474c-1531994176.1772", "content": ""} +] diff --git a/tests/fixtures/xfer_blind/xfer_blind.json b/tests/fixtures/xfer_blind/xfer_blind.json deleted file mode 100644 index 05821c8..0000000 --- a/tests/fixtures/xfer_blind/xfer_blind.json +++ /dev/null @@ -1,86 +0,0 @@ -[ - {"Event": "FullyBooted", "content": "", "Status": "Fully Booted", "Privilege": "system,all"}, - {"content": "", "AccountCode": "", "Uniqueid": "vgua0-dev-1443449049.124", "ChannelStateDesc": "Down", "CallerIDNum": "+31501234567", "Exten": "+31507001918", "Context": "voipgrid_in", "ChannelState": "0", "CallerIDName": "", "Privilege": "call,all", "Event": "Newchannel", "Channel": "SIP/voipgrid-siproute-dev-00000037"}, - {"Privilege": "call,all", "ConnectedLineNum": "", "content": "", "CallerIDName": "", "Event": "Newstate", "ConnectedLineName": "", "ChannelState": "4", "ChannelStateDesc": "Ring", "CallerIDNum": "+31501234567", "Channel": "SIP/voipgrid-siproute-dev-00000037", "Uniqueid": "vgua0-dev-1443449049.124"}, - {"content": "", "Event": "NewAccountCode", "Privilege": "call,all", "AccountCode": "12668", "Uniqueid": "vgua0-dev-1443449049.124", "Channel": "SIP/voipgrid-siproute-dev-00000037"}, - {"content": "", "AccountCode": "", "Uniqueid": "vgua0-dev-1443449049.125", "ChannelStateDesc": "Down", "CallerIDNum": "", "Exten": "ID12", "Context": "osvpi_route_phoneaccount", "ChannelState": "0", "CallerIDName": "", "Privilege": "call,all", "Event": "Newchannel", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000022;1"}, - {"content": "", "AccountCode": "", "Uniqueid": "vgua0-dev-1443449049.126", "ChannelStateDesc": "Ring", "CallerIDNum": "", "Exten": "ID12", "Context": "osvpi_route_phoneaccount", "ChannelState": "4", "CallerIDName": "", "Privilege": "call,all", "Event": "Newchannel", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000022;2"}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": "", "CallerIDName": "", "Privilege": "call,all", "Event": "NewCallerid", "CallerIDNum": "+31507001918", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000022;1", "Uniqueid": "vgua0-dev-1443449049.125"}, - {"content": "", "AccountCode": "", "Uniqueid": "vgua0-dev-1443449049.127", "ChannelStateDesc": "Down", "CallerIDNum": "", "Exten": "ID42", "Context": "osvpi_route_phoneaccount", "ChannelState": "0", "CallerIDName": "", "Privilege": "call,all", "Event": "Newchannel", "Channel": "Local/ID42@osvpi_route_phoneaccount-00000023;1"}, - {"content": "", "AccountCode": "", "Uniqueid": "vgua0-dev-1443449049.128", "ChannelStateDesc": "Ring", "CallerIDNum": "", "Exten": "ID42", "Context": "osvpi_route_phoneaccount", "ChannelState": "4", "CallerIDName": "", "Privilege": "call,all", "Event": "Newchannel", "Channel": "Local/ID42@osvpi_route_phoneaccount-00000023;2"}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": "", "CallerIDName": "", "Privilege": "call,all", "Event": "NewCallerid", "CallerIDNum": "+31507001918", "Channel": "Local/ID42@osvpi_route_phoneaccount-00000023;1", "Uniqueid": "vgua0-dev-1443449049.127"}, - {"Context": "osvpi_route_phoneaccount", "Uniqueid1": "vgua0-dev-1443449049.125", "Uniqueid2": "vgua0-dev-1443449049.126", "content": "", "Channel1": "Local/ID12@osvpi_route_phoneaccount-00000022;1", "Channel2": "Local/ID12@osvpi_route_phoneaccount-00000022;2", "LocalOptimization": "Yes", "Event": "LocalBridge", "Privilege": "call,all", "Exten": "ID12"}, - {"content": "", "Dialstring": "ID12@osvpi_route_phoneaccount", "CallerIDNum": "+31501234567", "ConnectedLineName": "", "UniqueID": "vgua0-dev-1443449049.124", "Destination": "Local/ID12@osvpi_route_phoneaccount-00000022;1", "CallerIDName": "", "Privilege": "call,all", "ConnectedLineNum": "", "Event": "Dial", "Channel": "SIP/voipgrid-siproute-dev-00000037", "SubEvent": "Begin", "DestUniqueID": "vgua0-dev-1443449049.125"}, - {"Context": "osvpi_route_phoneaccount", "Uniqueid1": "vgua0-dev-1443449049.127", "Uniqueid2": "vgua0-dev-1443449049.128", "content": "", "Channel1": "Local/ID42@osvpi_route_phoneaccount-00000023;1", "Channel2": "Local/ID42@osvpi_route_phoneaccount-00000023;2", "LocalOptimization": "Yes", "Event": "LocalBridge", "Privilege": "call,all", "Exten": "ID42"}, - {"content": "", "Dialstring": "ID42@osvpi_route_phoneaccount", "CallerIDNum": "+31501234567", "ConnectedLineName": "", "UniqueID": "vgua0-dev-1443449049.124", "Destination": "Local/ID42@osvpi_route_phoneaccount-00000023;1", "CallerIDName": "", "Privilege": "call,all", "ConnectedLineNum": "", "Event": "Dial", "Channel": "SIP/voipgrid-siproute-dev-00000037", "SubEvent": "Begin", "DestUniqueID": "vgua0-dev-1443449049.127"}, - {"CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "content": "", "CallerIDName": "", "Privilege": "call,all", "Event": "NewCallerid", "CallerIDNum": "+31501234567", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000022;2", "Uniqueid": "vgua0-dev-1443449049.126"}, - {"CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "content": "", "CallerIDName": "", "Privilege": "call,all", "Event": "NewCallerid", "CallerIDNum": "+31501234567", "Channel": "Local/ID42@osvpi_route_phoneaccount-00000023;2", "Uniqueid": "vgua0-dev-1443449049.128"}, - {"content": "", "AccountCode": "126680002", "Uniqueid": "vgua0-dev-1443449049.129", "ChannelStateDesc": "Down", "CallerIDNum": "", "Exten": "", "Context": "osvpi_account", "ChannelState": "0", "CallerIDName": "", "Privilege": "call,all", "Event": "Newchannel", "Channel": "SIP/126680002-00000038"}, - {"content": "", "AccountCode": "126680005", "Uniqueid": "vgua0-dev-1443449049.130", "ChannelStateDesc": "Down", "CallerIDNum": "", "Exten": "", "Context": "osvpi_account", "ChannelState": "0", "CallerIDName": "", "Privilege": "call,all", "Event": "Newchannel", "Channel": "SIP/126680005-00000039"}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": "", "CallerIDName": "", "Privilege": "call,all", "Event": "NewCallerid", "CallerIDNum": "+31507001918", "Channel": "SIP/126680002-00000038", "Uniqueid": "vgua0-dev-1443449049.129"}, - {"content": "", "Dialstring": "126680002/126680002/1.2.3.4", "CallerIDNum": "+31501234567", "ConnectedLineName": "", "UniqueID": "vgua0-dev-1443449049.126", "Destination": "SIP/126680002-00000038", "CallerIDName": "", "Privilege": "call,all", "ConnectedLineNum": "+31507001918", "Event": "Dial", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000022;2", "SubEvent": "Begin", "DestUniqueID": "vgua0-dev-1443449049.129"}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": "", "CallerIDName": "", "Privilege": "call,all", "Event": "NewCallerid", "CallerIDNum": "+31507001918", "Channel": "SIP/126680005-00000039", "Uniqueid": "vgua0-dev-1443449049.130"}, - {"content": "", "Dialstring": "126680005/126680005/1.2.3.4", "CallerIDNum": "+31501234567", "ConnectedLineName": "", "UniqueID": "vgua0-dev-1443449049.128", "Destination": "SIP/126680005-00000039", "CallerIDName": "", "Privilege": "call,all", "ConnectedLineNum": "+31507001918", "Event": "Dial", "Channel": "Local/ID42@osvpi_route_phoneaccount-00000023;2", "SubEvent": "Begin", "DestUniqueID": "vgua0-dev-1443449049.130"}, - {"Privilege": "call,all", "ConnectedLineNum": "+31501234567", "content": "", "CallerIDName": "", "Event": "Newstate", "ConnectedLineName": "", "ChannelState": "5", "ChannelStateDesc": "Ringing", "CallerIDNum": "+31507001918", "Channel": "SIP/126680002-00000038", "Uniqueid": "vgua0-dev-1443449049.129"}, - {"Privilege": "call,all", "ConnectedLineNum": "+31501234567", "content": "", "CallerIDName": "", "Event": "Newstate", "ConnectedLineName": "", "ChannelState": "5", "ChannelStateDesc": "Ringing", "CallerIDNum": "+31507001918", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000022;1", "Uniqueid": "vgua0-dev-1443449049.125"}, - {"Privilege": "call,all", "ConnectedLineNum": "+31501234567", "content": "", "CallerIDName": "", "Event": "Newstate", "ConnectedLineName": "", "ChannelState": "5", "ChannelStateDesc": "Ringing", "CallerIDNum": "+31507001918", "Channel": "SIP/126680005-00000039", "Uniqueid": "vgua0-dev-1443449049.130"}, - {"Privilege": "call,all", "ConnectedLineNum": "+31501234567", "content": "", "CallerIDName": "", "Event": "Newstate", "ConnectedLineName": "", "ChannelState": "5", "ChannelStateDesc": "Ringing", "CallerIDNum": "+31507001918", "Channel": "Local/ID42@osvpi_route_phoneaccount-00000023;1", "Uniqueid": "vgua0-dev-1443449049.127"}, - {"Privilege": "call,all", "ConnectedLineNum": "+31501234567", "content": "", "CallerIDName": "", "Event": "Newstate", "ConnectedLineName": "", "ChannelState": "6", "ChannelStateDesc": "Up", "CallerIDNum": "+31507001918", "Channel": "SIP/126680002-00000038", "Uniqueid": "vgua0-dev-1443449049.129"}, - {"Privilege": "call,all", "ConnectedLineNum": "+31507001918", "content": "", "CallerIDName": "", "Event": "Newstate", "ConnectedLineName": "", "ChannelState": "6", "ChannelStateDesc": "Up", "CallerIDNum": "+31501234567", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000022;2", "Uniqueid": "vgua0-dev-1443449049.126"}, - {"Privilege": "call,all", "ConnectedLineNum": "+31501234567", "content": "", "CallerIDName": "", "Event": "Newstate", "ConnectedLineName": "", "ChannelState": "6", "ChannelStateDesc": "Up", "CallerIDNum": "+31507001918", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000022;1", "Uniqueid": "vgua0-dev-1443449049.125"}, - {"content": "", "Cause": "26", "AccountCode": "12668", "Uniqueid": "vgua0-dev-1443449049.127", "CallerIDNum": "+31507001918", "Channel": "Local/ID42@osvpi_route_phoneaccount-00000023;1", "ConnectedLineNum": "+31501234567", "CallerIDName": "", "Privilege": "call,all", "ConnectedLineName": "", "Event": "Hangup", "Cause-txt": "Answered elsewhere"}, - {"content": "", "Cause": "26", "AccountCode": "12668", "Uniqueid": "vgua0-dev-1443449049.130", "CallerIDNum": "+31507001918", "Channel": "SIP/126680005-00000039", "ConnectedLineNum": "+31501234567", "CallerIDName": "", "Privilege": "call,all", "ConnectedLineName": "", "Event": "Hangup", "Cause-txt": "Answered elsewhere"}, - {"UniqueID": "vgua0-dev-1443449049.128", "DialStatus": "CANCEL", "content": "", "Privilege": "call,all", "Event": "Dial", "Channel": "Local/ID42@osvpi_route_phoneaccount-00000023;2", "SubEvent": "End"}, - {"Privilege": "call,all", "ConnectedLineNum": "", "content": "", "CallerIDName": "", "Event": "Newstate", "ConnectedLineName": "", "ChannelState": "6", "ChannelStateDesc": "Up", "CallerIDNum": "+31501234567", "Channel": "SIP/voipgrid-siproute-dev-00000037", "Uniqueid": "vgua0-dev-1443449049.124"}, - {"content": "", "Privilege": "call,all", "AccountCode": "12668", "Event": "NewAccountCode", "OldAccountCode": "12668", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000022;1", "Uniqueid": "vgua0-dev-1443449049.125"}, - {"CallerID2": "+31507001918", "Uniqueid1": "vgua0-dev-1443449049.124", "Bridgestate": "Link", "content": "", "Channel1": "SIP/voipgrid-siproute-dev-00000037", "Uniqueid2": "vgua0-dev-1443449049.125", "Channel2": "Local/ID12@osvpi_route_phoneaccount-00000022;1", "Event": "Bridge", "Privilege": "call,all", "CallerID1": "+31501234567", "Bridgetype": "core"}, - {"content": "", "Cause": "26", "AccountCode": "12668", "Uniqueid": "vgua0-dev-1443449049.128", "CallerIDNum": "+31501234567", "Channel": "Local/ID42@osvpi_route_phoneaccount-00000023;2", "ConnectedLineNum": "+31507001918", "CallerIDName": "", "Privilege": "call,all", "ConnectedLineName": "", "Event": "Hangup", "Cause-txt": "Answered elsewhere"}, - {"content": "", "Privilege": "call,all", "AccountCode": "12668", "Event": "NewAccountCode", "OldAccountCode": "12668", "Channel": "SIP/126680002-00000038", "Uniqueid": "vgua0-dev-1443449049.129"}, - {"CallerID2": "+31507001918", "Uniqueid1": "vgua0-dev-1443449049.126", "Bridgestate": "Link", "content": "", "Channel1": "Local/ID12@osvpi_route_phoneaccount-00000022;2", "Uniqueid2": "vgua0-dev-1443449049.129", "Channel2": "SIP/126680002-00000038", "Event": "Bridge", "Privilege": "call,all", "CallerID1": "+31501234567", "Bridgetype": "core"}, - {"OriginalState": "Up", "Original": "Local/ID12@osvpi_route_phoneaccount-00000022;1", "content": "", "Privilege": "call,all", "Event": "Masquerade", "Clone": "SIP/126680002-00000038", "CloneState": "Up"}, - {"Newname": "SIP/126680002-00000038", "content": "", "Event": "Rename", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1443449049.129", "Channel": "SIP/126680002-00000038"}, - {"Newname": "SIP/126680002-00000038", "content": "", "Event": "Rename", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1443449049.125", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000022;1"}, - {"Newname": "Local/ID12@osvpi_route_phoneaccount-00000022;1", "content": "", "Event": "Rename", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1443449049.129", "Channel": "SIP/126680002-00000038"}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": "", "CallerIDName": "", "Privilege": "call,all", "Event": "NewCallerid", "CallerIDNum": "+31507001918", "Channel": "SIP/126680002-00000038", "Uniqueid": "vgua0-dev-1443449049.125"}, - {"CallerID2": "+31507001918", "Uniqueid1": "vgua0-dev-1443449049.126", "Bridgestate": "Unlink", "content": "", "Channel1": "Local/ID12@osvpi_route_phoneaccount-00000022;2", "Uniqueid2": "vgua0-dev-1443449049.129", "Channel2": "Local/ID12@osvpi_route_phoneaccount-00000022;1", "Event": "Bridge", "Privilege": "call,all", "CallerID1": "+31501234567", "Bridgetype": "core"}, - {"content": "", "Cause": "16", "AccountCode": "12668", "Uniqueid": "vgua0-dev-1443449049.129", "CallerIDNum": "+31507001918", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000022;1", "ConnectedLineNum": "+31501234567", "CallerIDName": "", "Privilege": "call,all", "ConnectedLineName": "", "Event": "Hangup", "Cause-txt": "Normal Clearing"}, - {"UniqueID": "vgua0-dev-1443449049.126", "DialStatus": "ANSWER", "content": "", "Privilege": "call,all", "Event": "Dial", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000022;2", "SubEvent": "End"}, - {"content": "", "Cause": "16", "AccountCode": "12668", "Uniqueid": "vgua0-dev-1443449049.126", "CallerIDNum": "+31501234567", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000022;2", "ConnectedLineNum": "+31507001918", "CallerIDName": "", "Privilege": "call,all", "ConnectedLineName": "", "Event": "Hangup", "Cause-txt": "Normal Clearing"}, - {"TransferMethod": "SIP", "SIP-Callid": "32b5914849f74a272eecc43b76049441@5.5.5.5:5060", "content": "", "TargetUniqueid": "vgua0-dev-1443449049.124", "Uniqueid": "vgua0-dev-1443449049.125", "Privilege": "call,all", "TransferType": "Blind", "TransferContext": "osvpi_account_transfer", "Event": "Transfer", "TransferExten": "205", "Channel": "SIP/126680002-00000038", "TargetChannel": "SIP/voipgrid-siproute-dev-00000037"}, - {"CallerID2": "+31507001918", "Uniqueid1": "vgua0-dev-1443449049.124", "Bridgestate": "Unlink", "content": "", "Channel1": "SIP/voipgrid-siproute-dev-00000037", "Uniqueid2": "vgua0-dev-1443449049.125", "Channel2": "SIP/126680002-00000038", "Event": "Bridge", "Privilege": "call,all", "CallerID1": "+31501234567", "Bridgetype": "core"}, - {"content": "", "Cause": "16", "AccountCode": "12668", "Uniqueid": "vgua0-dev-1443449049.125", "CallerIDNum": "+31507001918", "Channel": "SIP/126680002-00000038", "ConnectedLineNum": "+31501234567", "CallerIDName": "", "Privilege": "call,all", "ConnectedLineName": "", "Event": "Hangup", "Cause-txt": "Normal Clearing"}, - {"UniqueID": "vgua0-dev-1443449049.124", "DialStatus": "ANSWER", "content": "", "Privilege": "call,all", "Event": "Dial", "Channel": "SIP/voipgrid-siproute-dev-00000037", "SubEvent": "End"}, - {"CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "content": "", "CallerIDName": "", "Privilege": "call,all", "Event": "NewCallerid", "CallerIDNum": "+31501234567", "Channel": "SIP/voipgrid-siproute-dev-00000037", "Uniqueid": "vgua0-dev-1443449049.124"}, - {"content": "", "Privilege": "call,all", "AccountCode": "126680002", "Event": "NewAccountCode", "OldAccountCode": "12668", "Channel": "SIP/voipgrid-siproute-dev-00000037", "Uniqueid": "vgua0-dev-1443449049.124"}, - {"content": "", "AccountCode": "", "Uniqueid": "vgua0-dev-1443449060.131", "ChannelStateDesc": "Down", "CallerIDNum": "", "Exten": "ID42", "Context": "osvpi_route_phoneaccount", "ChannelState": "0", "CallerIDName": "", "Privilege": "call,all", "Event": "Newchannel", "Channel": "Local/ID42@osvpi_route_phoneaccount-00000024;1"}, - {"content": "", "AccountCode": "", "Uniqueid": "vgua0-dev-1443449060.132", "ChannelStateDesc": "Ring", "CallerIDNum": "", "Exten": "ID42", "Context": "osvpi_route_phoneaccount", "ChannelState": "4", "CallerIDName": "", "Privilege": "call,all", "Event": "Newchannel", "Channel": "Local/ID42@osvpi_route_phoneaccount-00000024;2"}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": "", "CallerIDName": "", "Privilege": "call,all", "Event": "NewCallerid", "CallerIDNum": "205", "Channel": "Local/ID42@osvpi_route_phoneaccount-00000024;1", "Uniqueid": "vgua0-dev-1443449060.131"}, - {"Context": "osvpi_route_phoneaccount", "Uniqueid1": "vgua0-dev-1443449060.131", "Uniqueid2": "vgua0-dev-1443449060.132", "content": "", "Channel1": "Local/ID42@osvpi_route_phoneaccount-00000024;1", "Channel2": "Local/ID42@osvpi_route_phoneaccount-00000024;2", "LocalOptimization": "Yes", "Event": "LocalBridge", "Privilege": "call,all", "Exten": "ID42"}, - {"content": "", "Dialstring": "ID42@osvpi_route_phoneaccount", "CallerIDNum": "+31501234567", "ConnectedLineName": "", "UniqueID": "vgua0-dev-1443449049.124", "Destination": "Local/ID42@osvpi_route_phoneaccount-00000024;1", "CallerIDName": "", "Privilege": "call,all", "ConnectedLineNum": "", "Event": "Dial", "Channel": "SIP/voipgrid-siproute-dev-00000037", "SubEvent": "Begin", "DestUniqueID": "vgua0-dev-1443449060.131"}, - {"CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "content": "", "CallerIDName": "", "Privilege": "call,all", "Event": "NewCallerid", "CallerIDNum": "+31501234567", "Channel": "Local/ID42@osvpi_route_phoneaccount-00000024;2", "Uniqueid": "vgua0-dev-1443449060.132"}, - {"content": "", "AccountCode": "126680005", "Uniqueid": "vgua0-dev-1443449060.133", "ChannelStateDesc": "Down", "CallerIDNum": "", "Exten": "", "Context": "osvpi_account", "ChannelState": "0", "CallerIDName": "", "Privilege": "call,all", "Event": "Newchannel", "Channel": "SIP/126680005-0000003a"}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": "", "CallerIDName": "", "Privilege": "call,all", "Event": "NewCallerid", "CallerIDNum": "205", "Channel": "SIP/126680005-0000003a", "Uniqueid": "vgua0-dev-1443449060.133"}, - {"content": "", "Dialstring": "126680005/126680005/1.2.3.4", "CallerIDNum": "+31501234567", "ConnectedLineName": "", "UniqueID": "vgua0-dev-1443449060.132", "Destination": "SIP/126680005-0000003a", "CallerIDName": "", "Privilege": "call,all", "ConnectedLineNum": "205", "Event": "Dial", "Channel": "Local/ID42@osvpi_route_phoneaccount-00000024;2", "SubEvent": "Begin", "DestUniqueID": "vgua0-dev-1443449060.133"}, - {"Privilege": "call,all", "ConnectedLineNum": "+31501234567", "content": "", "CallerIDName": "", "Event": "Newstate", "ConnectedLineName": "", "ChannelState": "5", "ChannelStateDesc": "Ringing", "CallerIDNum": "205", "Channel": "SIP/126680005-0000003a", "Uniqueid": "vgua0-dev-1443449060.133"}, - {"Privilege": "call,all", "ConnectedLineNum": "+31501234567", "content": "", "CallerIDName": "", "Event": "Newstate", "ConnectedLineName": "", "ChannelState": "5", "ChannelStateDesc": "Ringing", "CallerIDNum": "205", "Channel": "Local/ID42@osvpi_route_phoneaccount-00000024;1", "Uniqueid": "vgua0-dev-1443449060.131"}, - {"Privilege": "call,all", "ConnectedLineNum": "+31501234567", "content": "", "CallerIDName": "", "Event": "Newstate", "ConnectedLineName": "", "ChannelState": "6", "ChannelStateDesc": "Up", "CallerIDNum": "205", "Channel": "SIP/126680005-0000003a", "Uniqueid": "vgua0-dev-1443449060.133"}, - {"Privilege": "call,all", "ConnectedLineNum": "205", "content": "", "CallerIDName": "", "Event": "Newstate", "ConnectedLineName": "", "ChannelState": "6", "ChannelStateDesc": "Up", "CallerIDNum": "+31501234567", "Channel": "Local/ID42@osvpi_route_phoneaccount-00000024;2", "Uniqueid": "vgua0-dev-1443449060.132"}, - {"Privilege": "call,all", "ConnectedLineNum": "+31501234567", "content": "", "CallerIDName": "", "Event": "Newstate", "ConnectedLineName": "", "ChannelState": "6", "ChannelStateDesc": "Up", "CallerIDNum": "205", "Channel": "Local/ID42@osvpi_route_phoneaccount-00000024;1", "Uniqueid": "vgua0-dev-1443449060.131"}, - {"content": "", "Privilege": "call,all", "AccountCode": "126680002", "Event": "NewAccountCode", "OldAccountCode": "126680002", "Channel": "SIP/126680005-0000003a", "Uniqueid": "vgua0-dev-1443449060.133"}, - {"CallerID2": "205", "Uniqueid1": "vgua0-dev-1443449060.132", "Bridgestate": "Link", "content": "", "Channel1": "Local/ID42@osvpi_route_phoneaccount-00000024;2", "Uniqueid2": "vgua0-dev-1443449060.133", "Channel2": "SIP/126680005-0000003a", "Event": "Bridge", "Privilege": "call,all", "CallerID1": "+31501234567", "Bridgetype": "core"}, - {"content": "", "Privilege": "call,all", "AccountCode": "126680002", "Event": "NewAccountCode", "OldAccountCode": "126680002", "Channel": "Local/ID42@osvpi_route_phoneaccount-00000024;1", "Uniqueid": "vgua0-dev-1443449060.131"}, - {"CallerID2": "205", "Uniqueid1": "vgua0-dev-1443449049.124", "Bridgestate": "Link", "content": "", "Channel1": "SIP/voipgrid-siproute-dev-00000037", "Uniqueid2": "vgua0-dev-1443449060.131", "Channel2": "Local/ID42@osvpi_route_phoneaccount-00000024;1", "Event": "Bridge", "Privilege": "call,all", "CallerID1": "+31501234567", "Bridgetype": "core"}, - {"OriginalState": "Up", "Original": "Local/ID42@osvpi_route_phoneaccount-00000024;1", "content": "", "Privilege": "call,all", "Event": "Masquerade", "Clone": "SIP/126680005-0000003a", "CloneState": "Up"}, - {"Newname": "SIP/126680005-0000003a", "content": "", "Event": "Rename", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1443449060.133", "Channel": "SIP/126680005-0000003a"}, - {"Newname": "SIP/126680005-0000003a", "content": "", "Event": "Rename", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1443449060.131", "Channel": "Local/ID42@osvpi_route_phoneaccount-00000024;1"}, - {"Newname": "Local/ID42@osvpi_route_phoneaccount-00000024;1", "content": "", "Event": "Rename", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1443449060.133", "Channel": "SIP/126680005-0000003a"}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": "", "CallerIDName": "", "Privilege": "call,all", "Event": "NewCallerid", "CallerIDNum": "205", "Channel": "SIP/126680005-0000003a", "Uniqueid": "vgua0-dev-1443449060.131"}, - {"CallerID2": "205", "Uniqueid1": "vgua0-dev-1443449060.132", "Bridgestate": "Unlink", "content": "", "Channel1": "Local/ID42@osvpi_route_phoneaccount-00000024;2", "Uniqueid2": "vgua0-dev-1443449060.133", "Channel2": "Local/ID42@osvpi_route_phoneaccount-00000024;1", "Event": "Bridge", "Privilege": "call,all", "CallerID1": "+31501234567", "Bridgetype": "core"}, - {"content": "", "Cause": "16", "AccountCode": "126680002", "Uniqueid": "vgua0-dev-1443449060.133", "CallerIDNum": "205", "Channel": "Local/ID42@osvpi_route_phoneaccount-00000024;1", "ConnectedLineNum": "+31501234567", "CallerIDName": "", "Privilege": "call,all", "ConnectedLineName": "", "Event": "Hangup", "Cause-txt": "Normal Clearing"}, - {"UniqueID": "vgua0-dev-1443449060.132", "DialStatus": "ANSWER", "content": "", "Privilege": "call,all", "Event": "Dial", "Channel": "Local/ID42@osvpi_route_phoneaccount-00000024;2", "SubEvent": "End"}, - {"content": "", "Cause": "16", "AccountCode": "126680002", "Uniqueid": "vgua0-dev-1443449060.132", "CallerIDNum": "+31501234567", "Channel": "Local/ID42@osvpi_route_phoneaccount-00000024;2", "ConnectedLineNum": "205", "CallerIDName": "", "Privilege": "call,all", "ConnectedLineName": "", "Event": "Hangup", "Cause-txt": "Normal Clearing"}, - {"CallerID2": "205", "Uniqueid1": "vgua0-dev-1443449049.124", "Bridgestate": "Unlink", "content": "", "Channel1": "SIP/voipgrid-siproute-dev-00000037", "Uniqueid2": "vgua0-dev-1443449060.131", "Channel2": "SIP/126680005-0000003a", "Event": "Bridge", "Privilege": "call,all", "CallerID1": "+31501234567", "Bridgetype": "core"}, - {"content": "", "Cause": "16", "AccountCode": "126680002", "Uniqueid": "vgua0-dev-1443449060.131", "CallerIDNum": "205", "Channel": "SIP/126680005-0000003a", "ConnectedLineNum": "+31501234567", "CallerIDName": "", "Privilege": "call,all", "ConnectedLineName": "", "Event": "Hangup", "Cause-txt": "Normal Clearing"}, - {"UniqueID": "vgua0-dev-1443449049.124", "DialStatus": "ANSWER", "content": "", "Privilege": "call,all", "Event": "Dial", "Channel": "SIP/voipgrid-siproute-dev-00000037", "SubEvent": "End"}, - {"content": "", "Cause": "16", "AccountCode": "126680002", "Uniqueid": "vgua0-dev-1443449049.124", "CallerIDNum": "+31501234567", "Channel": "SIP/voipgrid-siproute-dev-00000037", "ConnectedLineNum": "", "CallerIDName": "", "Privilege": "call,all", "ConnectedLineName": "", "Event": "Hangup", "Cause-txt": "Normal Clearing"} -] diff --git a/tests/fixtures/xfer_blind/xfer_blind_a_no_answer.json b/tests/fixtures/xfer_blind/xfer_blind_a_no_answer.json index 963ae40..1403185 100644 --- a/tests/fixtures/xfer_blind/xfer_blind_a_no_answer.json +++ b/tests/fixtures/xfer_blind/xfer_blind_a_no_answer.json @@ -1,594 +1,70 @@ [ - {"Status": "Fully Booted", "content": "", "Privilege": "system,all", "Event": "FullyBooted"}, - {"content": "", "Privilege": "call,all", "ChannelState": "0", "Event": "Newchannel", "Exten": "204", "Context": "osvpi_account", "Channel": "SIP/150010002-00000000", "Uniqueid": "0f00dcaa884f-1509114500.0", "CallerIDName": "Bob", "CallerIDNum": "150010002", "ChannelStateDesc": "Down", "AccountCode": "150010002"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "sip:150010002@10.13.36.116:5061", "Variable": "SIPURI", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "10.13.37.110", "Variable": "SIPDOMAIN", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "29fb247d-6b9cc3fc@10.13.36.116", "Variable": "SIPCALLID", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "15001", "Variable": "__client_id", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "150010002", "Variable": "__account_id", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "no", "Variable": "__record_call", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "31", "Variable": "__intprefix", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "4", "Variable": "__limit_account", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "0", "Variable": "__limit_client", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "1", "Variable": "__hide_ext_cliname", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "osvpi_account_transfer", "Variable": "__TRANSFER_CONTEXT", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "CallerIDNum": "150010002", "ChannelState": "4", "Channel": "SIP/150010002-00000000", "Event": "Newstate", "ConnectedLineName": "", "CallerIDName": "Bob", "Privilege": "call,all", "ChannelStateDesc": "Ring", "ConnectedLineNum": ""}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "ExecIf", "Event": "Newexten", "AppData": "0?GotoIf(0?osvpi_proc_hangup_insecure,204,1)", "Extension": "204", "Priority": "1", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Gosub", "Event": "Newexten", "AppData": "osvpi_proc_check_forwards,s,1", "Extension": "204", "Priority": "2", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "0", "Variable": "LOCAL(ARGC)", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "GotoIf", "Event": "Newexten", "AppData": "0?check,1", "Extension": "s", "Priority": "1", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "LOCAL(tmp)=70", "Extension": "s", "Priority": "2", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "70", "Variable": "LOCAL(tmp)", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "ExecIf", "Event": "Newexten", "AppData": "0?Goto(init,1)", "Extension": "s", "Priority": "3", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "ExecIf", "Event": "Newexten", "AppData": "1?Goto(init,1)", "Extension": "s", "Priority": "4", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "MASTER_CHANNEL(SIP_MAX_FORWARDS)=16", "Extension": "init", "Priority": "1", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "16", "Variable": "SIP_MAX_FORWARDS", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "NoOp", "Event": "Newexten", "AppData": "DEBUG: MaxForwards: initialized to: 16", "Extension": "init", "Priority": "2", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Return", "Event": "Newexten", "AppData": "", "Extension": "init", "Priority": "3", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "GOSUB_RETVAL", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "GotoIf", "Event": "Newexten", "AppData": "0?osvpi_account_transfer,204,1", "Extension": "204", "Priority": "3", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "NoOp", "Event": "Newexten", "AppData": "ENTRY POINT username=150010002,ip=172.20.0.13/172.20.0.13,from=sip:150010002@10.13.37.110,contact=sip:150010002@10.13.36.116:5061,ua=Cisco/SPA504G-7.5.3,name=Bob,num=150010002,pres=allowed_not_screened", "Extension": "204", "Priority": "4", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "is_transfer=0", "Extension": "204", "Priority": "5", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "0", "Variable": "is_transfer", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "CDR(amaflags)=BILLING", "Extension": "204", "Priority": "6", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "user_privacy=0", "Extension": "204", "Priority": "7", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "0", "Variable": "user_privacy", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "ExecIf", "Event": "Newexten", "AppData": "1?Set(__supports_progress=1)", "Extension": "204", "Priority": "8", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "1", "Variable": "__supports_progress", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Gosub", "Event": "Newexten", "AppData": "osvpi_proc_record_call,s-no,1(out,15001,150010002)", "Extension": "204", "Priority": "9", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "out", "Variable": "LOCAL(ARG1)", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "15001", "Variable": "LOCAL(ARG2)", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "150010002", "Variable": "LOCAL(ARG3)", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "3", "Variable": "LOCAL(ARGC)", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Return", "Event": "Newexten", "AppData": "", "Extension": "s-no", "Priority": "1", "Privilege": "dialplan,all", "Context": "osvpi_proc_record_call", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "GOSUB_RETVAL", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "l_tmp=", "Extension": "204", "Priority": "10", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "l_tmp", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "ExecIf", "Event": "Newexten", "AppData": "1?Set(l_tmp=)", "Extension": "204", "Priority": "11", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "l_tmp", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "GotoIf", "Event": "Newexten", "AppData": "1?checkprivacy", "Extension": "204", "Priority": "12", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "ExecIf", "Event": "Newexten", "AppData": "0?Set(CALLERID(pres)=allowed_passed_screen)", "Extension": "204", "Priority": "16", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "ExecIf", "Event": "Newexten", "AppData": "0?Set(CALLERID(pres)=prohib_passed_screen)", "Extension": "204", "Priority": "17", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "ExecIf", "Event": "Newexten", "AppData": "0?Set(CHANNEL(musicclass)=)", "Extension": "204", "Priority": "18", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "GotoIf", "Event": "Newexten", "AppData": "1?continue", "Extension": "204", "Priority": "19", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Gosub", "Event": "Newexten", "AppData": "osvpi_proc_set_i18n_region,31,1", "Extension": "204", "Priority": "22", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "0", "Variable": "LOCAL(ARGC)", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "i18n_region=NL", "Extension": "31", "Priority": "1", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_i18n_region", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "NL", "Variable": "i18n_region", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Return", "Event": "Newexten", "AppData": "", "Extension": "31", "Priority": "2", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_i18n_region", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "GOSUB_RETVAL", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Goto", "Event": "Newexten", "AppData": "osvpi_account_emergency_NL,204,1", "Extension": "204", "Priority": "23", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Goto", "Event": "Newexten", "AppData": "osvpi_account_no_emergency,204,1", "Extension": "204", "Priority": "1", "Privilege": "dialplan,all", "Context": "osvpi_account_emergency_NL", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Goto", "Event": "Newexten", "AppData": "osvpi_account,204,no-emergency", "Extension": "204", "Priority": "1", "Privilege": "dialplan,all", "Context": "osvpi_account_no_emergency", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Goto", "Event": "Newexten", "AppData": "osvpi_account_clean,204,1", "Extension": "204", "Priority": "24", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "return=osvpi_account_clean", "Extension": "204", "Priority": "1", "Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "osvpi_account_clean", "Variable": "return", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Goto", "Event": "Newexten", "AppData": "osvpi_return_to_canonical,31i204,1", "Extension": "204", "Priority": "2", "Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "31i204", "Variable": "INVALID_EXTEN", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Goto", "Event": "Newexten", "AppData": "osvpi_account_clean,204,local", "Extension": "i", "Priority": "1", "Privilege": "dialplan,all", "Context": "osvpi_return_to_canonical", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "GotoIf", "Event": "Newexten", "AppData": "0?extern", "Extension": "204", "Priority": "3", "Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Gosub", "Event": "Newexten", "AppData": "osvpi_proc_set_callerid,204,1(150010002,0,0)", "Extension": "204", "Priority": "4", "Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "150010002", "Variable": "LOCAL(ARG1)", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "0", "Variable": "LOCAL(ARG2)", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "0", "Variable": "LOCAL(ARG3)", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "3", "Variable": "LOCAL(ARGC)", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "GotoIf", "Event": "Newexten", "AppData": "0?done", "Extension": "204", "Priority": "1", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "1", "Variable": "ODBCROWS", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "SUCCESS", "Variable": "ODBCSTATUS", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "set,privacy,name,number_int,number_ext", "Variable": "~ODBCFIELDS~", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "ARRAY(LOCAL(set),LOCAL(privacy),LOCAL(name),LOCAL(number_int),LOCAL(number_ext))=1,0,David Meadows,202,+31150010002", "Extension": "204", "Priority": "2", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "1", "Variable": "LOCAL(set)", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "0", "Variable": "LOCAL(privacy)", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "David Meadows", "Variable": "LOCAL(name)", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "202", "Variable": "LOCAL(number_int)", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "+31150010002", "Variable": "LOCAL(number_ext)", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "GotoIf", "Event": "Newexten", "AppData": "0?presentation", "Extension": "204", "Priority": "3", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "CALLERID(pres)=allowed_passed_screen", "Extension": "204", "Priority": "4", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "CALLERID(name)=David Meadows", "Extension": "204", "Priority": "5", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "CallerIDNum": "150010002", "Channel": "SIP/150010002-00000000", "Event": "NewCallerid", "CallerIDName": "David Meadows", "Privilege": "call,all", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "CALLERID(num)=202", "Extension": "204", "Priority": "6", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000000", "Event": "NewCallerid", "CallerIDName": "David Meadows", "Privilege": "call,all", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "ExecIf", "Event": "Newexten", "AppData": "0?Set(CALLERID(pres)=prohib_passed_screen)", "Extension": "204", "Priority": "7", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "CALLERID(ANI)=202", "Extension": "204", "Priority": "8", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Gosub", "Event": "Newexten", "AppData": "osvpi_proc_set_callerid_internal,204,1", "Extension": "204", "Priority": "9", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "LOCAL(ARG1)", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "LOCAL(ARG2)", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "LOCAL(ARG3)", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "0", "Variable": "LOCAL(ARGC)", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "GotoIf", "Event": "Newexten", "AppData": "1?nop", "Extension": "204", "Priority": "1", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid_internal", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "ExecIf", "Event": "Newexten", "AppData": "0?Set(CALLERID(ANI)=20)", "Extension": "204", "Priority": "5", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid_internal", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Return", "Event": "Newexten", "AppData": "", "Extension": "204", "Priority": "6", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid_internal", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "GOSUB_RETVAL", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Return", "Event": "Newexten", "AppData": "", "Extension": "204", "Priority": "10", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "GOSUB_RETVAL", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "GotoIf", "Event": "Newexten", "AppData": "3?osvpi_account_call_int,204,1:i,1", "Extension": "204", "Priority": "5", "Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Gosub", "Event": "Newexten", "AppData": "osvpi_proc_check_limits,204,1", "Extension": "204", "Priority": "1", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "0", "Variable": "LOCAL(ARGC)", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "NoOp", "Event": "Newexten", "AppData": "DEBUG: call_limit: client 0/0 and account 0/4", "Extension": "204", "Priority": "1", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "GotoIf", "Event": "Newexten", "AppData": "0?osvpi_handle_limit,204,client", "Extension": "204", "Priority": "2", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "GotoIf", "Event": "Newexten", "AppData": "0?osvpi_handle_limit,204,account", "Extension": "204", "Priority": "3", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "GROUP(account_lim)=150010002", "Extension": "204", "Priority": "4", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "GROUP(client_lim)=15001", "Extension": "204", "Priority": "5", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Return", "Event": "Newexten", "AppData": "", "Extension": "204", "Priority": "6", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "GOSUB_RETVAL", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Gosub", "Event": "Newexten", "AppData": "osvpi_proc_check_recurse,204,1(15001)", "Extension": "204", "Priority": "2", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "15001", "Variable": "LOCAL(ARG1)", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "1", "Variable": "LOCAL(ARGC)", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "LOCAL(exten)=15001:204", "Extension": "204", "Priority": "1", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "15001:204", "Variable": "LOCAL(exten)", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "NoOp", "Event": "Newexten", "AppData": "Recursion checking 15001:204 against ", "Extension": "204", "Priority": "2", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "LOCAL(n)=0", "Extension": "204", "Priority": "3", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "0", "Variable": "LOCAL(n)", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "LOCAL(i)=1", "Extension": "204", "Priority": "4", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "1", "Variable": "LOCAL(i)", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "GotoIf", "Event": "Newexten", "AppData": "1?add", "Extension": "204", "Priority": "5", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "__EXTEN_LIST=15001:204 ", "Extension": "204", "Priority": "9", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "15001:204 ", "Variable": "__EXTEN_LIST", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "__EXTEN_LIST_LAST_EDIT_TIME=1509114500", "Extension": "204", "Priority": "10", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "1509114500", "Variable": "__EXTEN_LIST_LAST_EDIT_TIME", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Return", "Event": "Newexten", "AppData": "", "Extension": "204", "Priority": "11", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "GOSUB_RETVAL", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "__ORIG_EXTEN=204", "Extension": "204", "Priority": "3", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "204", "Variable": "__ORIG_EXTEN", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "0", "Variable": "ODBCROWS", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "NODATA", "Variable": "ODBCSTATUS", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "ARRAY(conference_id,user_password,admin_password,conference_language)=", "Extension": "204", "Priority": "4", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "conference_id", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "user_password", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "admin_password", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "conference_language", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "GotoIf", "Event": "Newexten", "AppData": "0?osvpi_route_conference,ID,1", "Extension": "204", "Priority": "5", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "0", "Variable": "ODBCROWS", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "NODATA", "Variable": "ODBCSTATUS", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "ARRAY(route_id,client_timezone)=", "Extension": "204", "Priority": "6", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "route_id", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "client_timezone", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "GotoIf", "Event": "Newexten", "AppData": "0?osvpi_route_root,204,restart", "Extension": "204", "Priority": "7", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "0", "Variable": "ODBCROWS", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "NODATA", "Variable": "ODBCSTATUS", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "ARRAY(all_extensions,limited_extensions,password,account_spy_language)=", "Extension": "204", "Priority": "8", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "all_extensions", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "limited_extensions", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "password", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "account_spy_language", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "GotoIf", "Event": "Newexten", "AppData": "0?osvpi_account_spy,204,1", "Extension": "204", "Priority": "9", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "1", "Variable": "ODBCROWS", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "SUCCESS", "Variable": "ODBCSTATUS", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "interfaces", "Variable": "~ODBCFIELDS~", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "ARRAY(interfaces)=Local/ID690153@osvpi_route_phoneaccount", "Extension": "204", "Priority": "10", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "Local/ID690153@osvpi_route_phoneaccount", "Variable": "interfaces", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "GotoIf", "Event": "Newexten", "AppData": "0?osvpi_handle_unallocated,204,1", "Extension": "204", "Priority": "11", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Dial", "Event": "Newexten", "AppData": "Local/ID690153@osvpi_route_phoneaccount", "Extension": "204", "Priority": "12", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "DIALSTATUS", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "DIALEDPEERNUMBER", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "DIALEDPEERNAME", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "ANSWEREDTIME", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "DIALEDTIME", "Channel": "SIP/150010002-00000000"}, - {"content": "", "Privilege": "call,all", "ChannelState": "0", "Event": "Newchannel", "Exten": "ID690153", "Context": "osvpi_route_phoneaccount", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;1", "Uniqueid": "0f00dcaa884f-1509114500.1", "CallerIDName": "", "CallerIDNum": "", "ChannelStateDesc": "Down", "AccountCode": ""}, - {"content": "", "Privilege": "call,all", "ChannelState": "4", "Event": "Newchannel", "Exten": "ID690153", "Context": "osvpi_route_phoneaccount", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2", "Uniqueid": "0f00dcaa884f-1509114500.2", "CallerIDName": "", "CallerIDNum": "", "ChannelStateDesc": "Ring", "AccountCode": ""}, - {"Uniqueid": "0f00dcaa884f-1509114500.1", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "ID690153@osvpi_route_phoneaccount", "Variable": "DIALEDPEERNUMBER", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;1"}, - {"Uniqueid": "0f00dcaa884f-1509114500.1", "content": "", "CallerIDNum": "204", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;1", "Event": "NewCallerid", "CallerIDName": "", "Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"content": "", "Channel2": "Local/ID690153@osvpi_route_phoneaccount-00000000;2", "Event": "LocalBridge", "LocalOptimization": "Yes", "Exten": "ID690153", "Uniqueid1": "0f00dcaa884f-1509114500.1", "Uniqueid2": "0f00dcaa884f-1509114500.2", "Privilege": "call,all", "Context": "osvpi_route_phoneaccount", "Channel1": "Local/ID690153@osvpi_route_phoneaccount-00000000;1"}, - {"content": "", "Privilege": "call,all", "Event": "Dial", "DestUniqueID": "0f00dcaa884f-1509114500.1", "ConnectedLineName": "", "Channel": "SIP/150010002-00000000", "SubEvent": "Begin", "Dialstring": "ID690153@osvpi_route_phoneaccount", "UniqueID": "0f00dcaa884f-1509114500.0", "Destination": "Local/ID690153@osvpi_route_phoneaccount-00000000;1", "CallerIDName": "David Meadows", "CallerIDNum": "202", "ConnectedLineNum": ""}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "1", "Variable": "ODBCROWS", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "SUCCESS", "Variable": "ODBCSTATUS", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account", "Variable": "~ODBCFIELDS~", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=150010004,accountid,dutch,from,,0", "Extension": "ID690153", "Priority": "1", "Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "150010004", "Variable": "__dst_account_id", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "accountid", "Variable": "l_mangle_did", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "dutch", "Variable": "l_mangle_cli", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "from", "Variable": "l_cli_header", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "l_primary_pickupgroup", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "0", "Variable": "app_account", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Application": "GotoIf", "Event": "Newexten", "AppData": "0?vialer", "Extension": "ID690153", "Priority": "2", "Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "_PICKUPMARK=", "Extension": "ID690153", "Priority": "3", "Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "_PICKUPMARK", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "l_trunk=0", "Extension": "ID690153", "Priority": "4", "Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "0", "Variable": "l_trunk", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Application": "Goto", "Event": "Newexten", "AppData": "osvpi_route_account,ID690153,1", "Extension": "ID690153", "Priority": "5", "Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "1", "Variable": "ODBCROWS", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "SUCCESS", "Variable": "ODBCSTATUS", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "proxy", "Variable": "~ODBCFIELDS~", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "ARRAY(l_proxy)=172.20.0.13", "Extension": "ID690153", "Priority": "1", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "172.20.0.13", "Variable": "l_proxy", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Application": "Gosub", "Event": "Newexten", "AppData": "osvpi_proc_mangle_number,accountid,1(150010004,204)", "Extension": "ID690153", "Priority": "2", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "150010004", "Variable": "LOCAL(ARG1)", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "204", "Variable": "LOCAL(ARG2)", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "2", "Variable": "LOCAL(ARGC)", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "MANGLED_EXTEN=150010004", "Extension": "accountid", "Priority": "1", "Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "150010004", "Variable": "MANGLED_EXTEN", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Application": "Return", "Event": "Newexten", "AppData": "", "Extension": "accountid", "Priority": "2", "Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "GOSUB_RETVAL", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "l_did=150010004", "Extension": "ID690153", "Priority": "3", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "150010004", "Variable": "l_did", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Application": "Gosub", "Event": "Newexten", "AppData": "osvpi_proc_mangle_number,dutch,1(150010004,202)", "Extension": "ID690153", "Priority": "4", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "150010004", "Variable": "LOCAL(ARG1)", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "202", "Variable": "LOCAL(ARG2)", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "2", "Variable": "LOCAL(ARGC)", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Application": "GotoIf", "Event": "Newexten", "AppData": "1?fullzero,1", "Extension": "dutch", "Priority": "1", "Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "MANGLED_EXTEN=202", "Extension": "fullzero", "Priority": "1", "Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "202", "Variable": "MANGLED_EXTEN", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Application": "Return", "Event": "Newexten", "AppData": "", "Extension": "fullzero", "Priority": "2", "Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "GOSUB_RETVAL", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "l_mangle_cli_hdr=from-dutch", "Extension": "ID690153", "Priority": "5", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "from-dutch", "Variable": "l_mangle_cli_hdr", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "l_fromuser=", "Extension": "ID690153", "Priority": "6", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "l_fromuser", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Application": "ExecIf", "Event": "Newexten", "AppData": "1?Set(l_fromuser=202)", "Extension": "ID690153", "Priority": "7", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "202", "Variable": "l_fromuser", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "1", "Variable": "ODBCROWS", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "SUCCESS", "Variable": "ODBCSTATUS", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "IF((SELECT 1 FROM baseaccount_account ba INNER JOIN userdestination_selecteduserdestination udsud ON udsud.phoneaccount_id = ba.id INNER JOIN userdestination_userdestination udud ON udud.id = udsud.userdestination_id INNER JOIN crm_cloudctiuser cccu O", "Variable": "~ODBCFIELDS~", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "ARRAY(cloudcti)=0", "Extension": "ID690153", "Priority": "8", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "0", "Variable": "cloudcti", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Application": "GotoIf", "Event": "Newexten", "AppData": "1?skipcloudcti", "Extension": "ID690153", "Priority": "9", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "1", "Variable": "ODBCROWS", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "SUCCESS", "Variable": "ODBCSTATUS", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "GROUP_CONCAT(DISTINCT(csw.url) SEPARATOR ' '),internal_number,GROUP_CONCAT(DISTINCT(ud.internal_number) SEPARATOR ' ')", "Variable": "~ODBCFIELDS~", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "204", "Variable": "accountinternalnumber", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "userinternalnumbers", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Application": "Goto", "Event": "Newexten", "AppData": "osvpi_proc_proxy_out,204,1", "Extension": "ID690153", "Priority": "13", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Application": "SIPAddHeader", "Event": "Newexten", "AppData": "X-Accountcode: 150010004", "Extension": "204", "Priority": "1", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "X-Accountcode: 150010004", "Variable": "__SIPADDHEADER01", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Application": "SIPAddHeader", "Event": "Newexten", "AppData": "X-Insecure-Protection: geheim", "Extension": "204", "Priority": "2", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "X-Insecure-Protection: geheim", "Variable": "__SIPADDHEADER02", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Application": "SIPAddHeader", "Event": "Newexten", "AppData": "X-Mangle-Cli: from-dutch", "Extension": "204", "Priority": "3", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "X-Mangle-Cli: from-dutch", "Variable": "__SIPADDHEADER03", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "_dial_options_callaccept=", "Extension": "204", "Priority": "4", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "_dial_options_callaccept", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "_dial_options_callnotify=", "Extension": "204", "Priority": "5", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "_dial_options_callnotify", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Application": "ExecIf", "Event": "Newexten", "AppData": "0?Set(l_proxy=opensipsfg)", "Extension": "204", "Priority": "6", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "l_extra_options=", "Extension": "204", "Priority": "7", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "l_extra_options", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Application": "Dial", "Event": "Newexten", "AppData": "SIP/150010004/150010004/172.20.0.13!!202,,", "Extension": "204", "Priority": "8", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "DIALSTATUS", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "DIALEDPEERNUMBER", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "DIALEDPEERNAME", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "ANSWEREDTIME", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "DIALEDTIME", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"content": "", "Privilege": "call,all", "ChannelState": "0", "Event": "Newchannel", "Exten": "", "Context": "osvpi_account", "Channel": "SIP/150010004-00000001", "Uniqueid": "0f00dcaa884f-1509114500.3", "CallerIDName": "", "CallerIDNum": "", "ChannelStateDesc": "Down", "AccountCode": "150010004"}, - {"Uniqueid": "0f00dcaa884f-1509114500.3", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "4b3d20f422e617510710fc7639828bc5@test.voipgrid.nl", "Variable": "SIPCALLID", "Channel": "SIP/150010004-00000001"}, - {"Uniqueid": "0f00dcaa884f-1509114500.3", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "15001", "Variable": "__client_id", "Channel": "SIP/150010004-00000001"}, - {"Uniqueid": "0f00dcaa884f-1509114500.3", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "150010004", "Variable": "__account_id", "Channel": "SIP/150010004-00000001"}, - {"Uniqueid": "0f00dcaa884f-1509114500.3", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "no", "Variable": "__record_call", "Channel": "SIP/150010004-00000001"}, - {"Uniqueid": "0f00dcaa884f-1509114500.3", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "31", "Variable": "__intprefix", "Channel": "SIP/150010004-00000001"}, - {"Uniqueid": "0f00dcaa884f-1509114500.3", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "4", "Variable": "__limit_account", "Channel": "SIP/150010004-00000001"}, - {"Uniqueid": "0f00dcaa884f-1509114500.3", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "0", "Variable": "__limit_client", "Channel": "SIP/150010004-00000001"}, - {"Uniqueid": "0f00dcaa884f-1509114500.3", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "1", "Variable": "__hide_ext_cliname", "Channel": "SIP/150010004-00000001"}, - {"Uniqueid": "0f00dcaa884f-1509114500.3", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "osvpi_account_transfer", "Variable": "__TRANSFER_CONTEXT", "Channel": "SIP/150010004-00000001"}, - {"Uniqueid": "0f00dcaa884f-1509114500.3", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "150010004/150010004/172.20.0.13!!202", "Variable": "DIALEDPEERNUMBER", "Channel": "SIP/150010004-00000001"}, - {"Uniqueid": "0f00dcaa884f-1509114500.3", "content": "", "CallerIDNum": "204", "Channel": "SIP/150010004-00000001", "Event": "NewCallerid", "CallerIDName": "", "Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"content": "", "Privilege": "call,all", "Event": "Dial", "DestUniqueID": "0f00dcaa884f-1509114500.3", "ConnectedLineName": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2", "SubEvent": "Begin", "Dialstring": "150010004/150010004/172.20.0.13!!202", "UniqueID": "0f00dcaa884f-1509114500.2", "Destination": "SIP/150010004-00000001", "CallerIDName": "David Meadows", "CallerIDNum": "202", "ConnectedLineNum": "204"}, - {"Uniqueid": "0f00dcaa884f-1509114500.3", "content": "", "CallerIDNum": "204", "ChannelState": "5", "Channel": "SIP/150010004-00000001", "Event": "Newstate", "ConnectedLineName": "David Meadows", "CallerIDName": "", "Privilege": "call,all", "ChannelStateDesc": "Ringing", "ConnectedLineNum": "202"}, - {"Uniqueid": "0f00dcaa884f-1509114500.1", "content": "", "CallerIDNum": "204", "ChannelState": "5", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;1", "Event": "Newstate", "ConnectedLineName": "David Meadows", "CallerIDName": "", "Privilege": "call,all", "ChannelStateDesc": "Ringing", "ConnectedLineNum": "202"}, - {"Uniqueid": "0f00dcaa884f-1509114500.3", "content": "", "CallerIDNum": "204", "ChannelState": "6", "Channel": "SIP/150010004-00000001", "Event": "Newstate", "ConnectedLineName": "David Meadows", "CallerIDName": "", "Privilege": "call,all", "ChannelStateDesc": "Up", "ConnectedLineNum": "202"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "ANSWER", "Variable": "DIALSTATUS", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "SIP/150010004-00000001", "Variable": "DIALEDPEERNAME", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "150010004/150010004/172.20.0.13!!202", "Variable": "DIALEDPEERNUMBER", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "SIP/150010004-00000001", "Variable": "BRIDGEPEER", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.3", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "Local/ID690153@osvpi_route_phoneaccount-00000000;2", "Variable": "BRIDGEPEER", "Channel": "SIP/150010004-00000001"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "CallerIDNum": "202", "ChannelState": "6", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2", "Event": "Newstate", "ConnectedLineName": "", "CallerIDName": "David Meadows", "Privilege": "call,all", "ChannelStateDesc": "Up", "ConnectedLineNum": "204"}, - {"Uniqueid": "0f00dcaa884f-1509114500.3", "content": "", "Event": "NewAccountCode", "Privilege": "call,all", "OldAccountCode": "150010002", "Channel": "SIP/150010004-00000001", "AccountCode": "150010002"}, - {"CallerID1": "202", "Channel2": "SIP/150010004-00000001", "Event": "Bridge", "CallerID2": "204", "content": "", "Uniqueid1": "0f00dcaa884f-1509114500.2", "Uniqueid2": "0f00dcaa884f-1509114500.3", "Bridgestate": "Link", "Privilege": "call,all", "Bridgetype": "core", "Channel1": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "SIP/150010004-00000001", "Variable": "BRIDGEPEER", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "4b3d20f422e617510710fc7639828bc5@test.voipgrid.nl", "Variable": "BRIDGEPVTCALLID", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.3", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "Local/ID690153@osvpi_route_phoneaccount-00000000;2", "Variable": "BRIDGEPEER", "Channel": "SIP/150010004-00000001"}, - {"Uniqueid": "0f00dcaa884f-1509114500.1", "content": "", "CallerIDNum": "204", "ChannelState": "6", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;1", "Event": "Newstate", "ConnectedLineName": "David Meadows", "CallerIDName": "", "Privilege": "call,all", "ChannelStateDesc": "Up", "ConnectedLineNum": "202"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "SIP/150010004-00000001", "Variable": "BRIDGEPEER", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "4b3d20f422e617510710fc7639828bc5@test.voipgrid.nl", "Variable": "BRIDGEPVTCALLID", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.3", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "Local/ID690153@osvpi_route_phoneaccount-00000000;2", "Variable": "BRIDGEPEER", "Channel": "SIP/150010004-00000001"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "ANSWER", "Variable": "DIALSTATUS", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "Local/ID690153@osvpi_route_phoneaccount-00000000;1", "Variable": "DIALEDPEERNAME", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "ID690153@osvpi_route_phoneaccount", "Variable": "DIALEDPEERNUMBER", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "Local/ID690153@osvpi_route_phoneaccount-00000000;1", "Variable": "BRIDGEPEER", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.1", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "SIP/150010002-00000000", "Variable": "BRIDGEPEER", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;1"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "CallerIDNum": "202", "ChannelState": "6", "Channel": "SIP/150010002-00000000", "Event": "Newstate", "ConnectedLineName": "", "CallerIDName": "David Meadows", "Privilege": "call,all", "ChannelStateDesc": "Up", "ConnectedLineNum": ""}, - {"Uniqueid": "0f00dcaa884f-1509114500.1", "content": "", "Event": "NewAccountCode", "Privilege": "call,all", "OldAccountCode": "150010002", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;1", "AccountCode": "150010002"}, - {"CallerID1": "202", "Channel2": "Local/ID690153@osvpi_route_phoneaccount-00000000;1", "Event": "Bridge", "CallerID2": "204", "content": "", "Uniqueid1": "0f00dcaa884f-1509114500.0", "Uniqueid2": "0f00dcaa884f-1509114500.1", "Bridgestate": "Link", "Privilege": "call,all", "Bridgetype": "core", "Channel1": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "Local/ID690153@osvpi_route_phoneaccount-00000000;1", "Variable": "BRIDGEPEER", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.1", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "SIP/150010002-00000000", "Variable": "BRIDGEPEER", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;1"}, - {"Uniqueid": "0f00dcaa884f-1509114500.1", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "29fb247d-6b9cc3fc@10.13.36.116", "Variable": "BRIDGEPVTCALLID", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;1"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "Local/ID690153@osvpi_route_phoneaccount-00000000;1", "Variable": "BRIDGEPEER", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.1", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "SIP/150010002-00000000", "Variable": "BRIDGEPEER", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;1"}, - {"Uniqueid": "0f00dcaa884f-1509114500.1", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "29fb247d-6b9cc3fc@10.13.36.116", "Variable": "BRIDGEPVTCALLID", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;1"}, - {"content": "", "Privilege": "call,all", "Event": "Masquerade", "CloneState": "Up", "Clone": "SIP/150010004-00000001", "Original": "Local/ID690153@osvpi_route_phoneaccount-00000000;1", "OriginalState": "Up"}, - {"Uniqueid": "0f00dcaa884f-1509114500.3", "content": "", "Event": "Rename", "Newname": "SIP/150010004-00000001", "Privilege": "call,all", "Channel": "SIP/150010004-00000001"}, - {"Uniqueid": "0f00dcaa884f-1509114500.1", "content": "", "Event": "Rename", "Newname": "SIP/150010004-00000001", "Privilege": "call,all", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;1"}, - {"Uniqueid": "0f00dcaa884f-1509114500.3", "content": "", "Event": "Rename", "Newname": "Local/ID690153@osvpi_route_phoneaccount-00000000;1", "Privilege": "call,all", "Channel": "SIP/150010004-00000001"}, - {"Uniqueid": "0f00dcaa884f-1509114500.1", "content": "", "CallerIDNum": "204", "Channel": "SIP/150010004-00000001", "Event": "NewCallerid", "CallerIDName": "", "Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"CallerID1": "202", "Channel2": "Local/ID690153@osvpi_route_phoneaccount-00000000;1", "Event": "Bridge", "CallerID2": "204", "content": "", "Uniqueid1": "0f00dcaa884f-1509114500.2", "Uniqueid2": "0f00dcaa884f-1509114500.3", "Bridgestate": "Unlink", "Privilege": "call,all", "Bridgetype": "core", "Channel1": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "SIP/150010004-00000001", "Variable": "BRIDGEPEER", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "0", "Variable": "ANSWEREDTIME", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "3", "Variable": "DIALEDTIME", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "4b3d20f422e617510710fc7639828bc5@test.voipgrid.nl", "Variable": "BRIDGEPVTCALLID", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.1", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "SIP/150010002-00000000", "Variable": "BRIDGEPEER", "Channel": "SIP/150010004-00000001"}, - {"Uniqueid": "0f00dcaa884f-1509114500.1", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "29fb247d-6b9cc3fc@10.13.36.116", "Variable": "BRIDGEPVTCALLID", "Channel": "SIP/150010004-00000001"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "call,all", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2", "Event": "HangupRequest"}, - {"content": "", "Privilege": "call,all", "Cause": "16", "Event": "Hangup", "ConnectedLineName": "David Meadows", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;1", "Uniqueid": "0f00dcaa884f-1509114500.3", "Cause-txt": "Normal Clearing", "CallerIDName": "", "CallerIDNum": "204", "AccountCode": "150010002", "ConnectedLineNum": "202"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "ANSWER", "Variable": "DIALSTATUS", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"content": "", "UniqueID": "0f00dcaa884f-1509114500.2", "Event": "Dial", "DialStatus": "ANSWER", "Privilege": "call,all", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2", "SubEvent": "End"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Cause": "16", "Event": "SoftHangupRequest", "Privilege": "call,all", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Application": "GotoIf", "Event": "Newexten", "AppData": "1?nosip", "Extension": "onhangup", "Priority": "1", "Privilege": "dialplan,all", "Context": "handlers", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"Uniqueid": "0f00dcaa884f-1509114500.2", "content": "", "Application": "GosubIf", "Event": "Newexten", "AppData": "0?osvpi_proc_httptouch,s,1()", "Extension": "onhangup", "Priority": "3", "Privilege": "dialplan,all", "Context": "handlers", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2"}, - {"content": "", "Privilege": "call,all", "Cause": "16", "Event": "Hangup", "ConnectedLineName": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000000;2", "Uniqueid": "0f00dcaa884f-1509114500.2", "Cause-txt": "Normal Clearing", "CallerIDName": "David Meadows", "CallerIDNum": "202", "AccountCode": "150010002", "ConnectedLineNum": "204"}, - {"content": "", "State": "Start", "UniqueID": "0f00dcaa884f-1509114500.0", "Event": "MusicOnHold", "Class": "default", "Privilege": "call,all", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "osvpi_account", "Variable": "SIPREFERRINGCONTEXT", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "\"Dave\" ", "Variable": "SIPREFERREDBYHDR", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.1", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "SIP/150010002-00000000", "Variable": "BLINDTRANSFER", "Channel": "SIP/150010004-00000001"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "SIP/150010004-00000001", "Variable": "BLINDTRANSFER", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "10.13.37.110", "Variable": "SIPDOMAIN", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "yes", "Variable": "SIPTRANSFER", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "yes", "Variable": "_SIPTRANSFER", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "_SIPTRANSFER_REFERER", "Channel": "SIP/150010002-00000000"}, - {"content": "", "State": "Stop", "Event": "MusicOnHold", "UniqueID": "0f00dcaa884f-1509114500.0", "Privilege": "call,all", "Channel": "SIP/150010002-00000000"}, - {"content": "", "State": "Stop", "Event": "MusicOnHold", "UniqueID": "0f00dcaa884f-1509114500.0", "Privilege": "call,all", "Channel": "SIP/150010002-00000000"}, - {"content": "", "TransferExten": "203", "Event": "Transfer", "TransferMethod": "SIP", "TargetChannel": "SIP/150010002-00000000", "TransferType": "Blind", "Channel": "SIP/150010004-00000001", "Uniqueid": "0f00dcaa884f-1509114500.1", "TransferContext": "osvpi_account_transfer", "SIP-Callid": "4b3d20f422e617510710fc7639828bc5@test.voipgrid.nl", "TargetUniqueid": "0f00dcaa884f-1509114500.0", "Privilege": "call,all"}, - {"CallerID1": "202", "Channel2": "SIP/150010004-00000001", "Event": "Bridge", "CallerID2": "204", "content": "", "Uniqueid1": "0f00dcaa884f-1509114500.0", "Uniqueid2": "0f00dcaa884f-1509114500.1", "Bridgestate": "Unlink", "Privilege": "call,all", "Bridgetype": "core", "Channel1": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "9", "Variable": "ANSWEREDTIME", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "12", "Variable": "DIALEDTIME", "Channel": "SIP/150010002-00000000"}, - {"content": "", "Privilege": "call,all", "Cause": "16", "Event": "Hangup", "ConnectedLineName": "David Meadows", "Channel": "SIP/150010004-00000001", "Uniqueid": "0f00dcaa884f-1509114500.1", "Cause-txt": "Normal Clearing", "CallerIDName": "", "CallerIDNum": "204", "AccountCode": "150010002", "ConnectedLineNum": "202"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "ANSWER", "Variable": "DIALSTATUS", "Channel": "SIP/150010002-00000000"}, - {"content": "", "UniqueID": "0f00dcaa884f-1509114500.0", "Event": "Dial", "DialStatus": "ANSWER", "Privilege": "call,all", "Channel": "SIP/150010002-00000000", "SubEvent": "End"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "NoOp", "Event": "Newexten", "AppData": "DEBUG: XFER: accountcode=150010002 client_id=15001 account_id=150010002", "Extension": "203", "Priority": "1", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "GotoIf", "Event": "Newexten", "AppData": "0?accountinfo", "Extension": "203", "Priority": "2", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "CALLERID(name)=", "Extension": "203", "Priority": "3", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000000", "Event": "NewCallerid", "CallerIDName": "", "Privilege": "call,all", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "CALLERID(num)=202", "Extension": "203", "Priority": "4", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "CALLERID(pres)=allowed_passed_screen", "Extension": "203", "Priority": "5", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "l_changed=1", "Extension": "203", "Priority": "6", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "1", "Variable": "l_changed", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "ForkCDR", "Event": "Newexten", "AppData": "ATe", "Extension": "203", "Priority": "7", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "GotoIf", "Event": "Newexten", "AppData": "1?blindxfer:code302or482", "Extension": "203", "Priority": "8", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "NoOp", "Event": "Newexten", "AppData": "DEBUG: REFER: SIPTRANSFER=yes BLINDTRANSFER=SIP/150010004-00000001 BRIDGEPEER=SIP/150010004-00000001 SIPTRANSFER_REFERER=", "Extension": "203", "Priority": "9", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "seconds_since_last_exten_list_addition=12", "Extension": "203", "Priority": "10", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "12", "Variable": "seconds_since_last_exten_list_addition", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "ExecIf", "Event": "Newexten", "AppData": "1?Set(__EXTEN_LIST=)", "Extension": "203", "Priority": "11", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "__EXTEN_LIST", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "l_tmp=", "Extension": "203", "Priority": "12", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "l_tmp", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "ExecIf", "Event": "Newexten", "AppData": "1?Set(l_tmp=150010004@10.13.37.110)", "Extension": "203", "Priority": "13", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "150010004@10.13.37.110", "Variable": "l_tmp", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "ExecIf", "Event": "Newexten", "AppData": "0?Hangup()", "Extension": "203", "Priority": "14", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "l_tmp=150010004", "Extension": "203", "Priority": "15", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "150010004", "Variable": "l_tmp", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "GotoIf", "Event": "Newexten", "AppData": "0?arefersb", "Extension": "203", "Priority": "16", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "GotoIf", "Event": "Newexten", "AppData": "1?brefersa", "Extension": "203", "Priority": "17", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "NoOp", "Event": "Newexten", "AppData": "New caller is 150010004", "Extension": "203", "Priority": "22", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "CDR(accountcode)=150010004", "Extension": "203", "Priority": "23", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Event": "NewAccountCode", "Privilege": "call,all", "OldAccountCode": "150010002", "Channel": "SIP/150010002-00000000", "AccountCode": "150010004"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "__account_id=150010004", "Extension": "203", "Priority": "24", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "150010004", "Variable": "__account_id", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "__dst_account_id=", "Extension": "203", "Priority": "25", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "__dst_account_id", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Goto", "Event": "Newexten", "AppData": "proceed", "Extension": "203", "Priority": "26", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "__TRANSFER_CONTEXT=osvpi_account_transfer", "Extension": "203", "Priority": "33", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "osvpi_account_transfer", "Variable": "__TRANSFER_CONTEXT", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "user_privacy=0", "Extension": "203", "Priority": "34", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "0", "Variable": "user_privacy", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "is_transfer=1", "Extension": "203", "Priority": "35", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "1", "Variable": "is_transfer", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "1", "Variable": "ODBCROWS", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "SUCCESS", "Variable": "ODBCSTATUS", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "client_id,intprefix,internal_number,limit_account,limit_client", "Variable": "~ODBCFIELDS~", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "ExecIf", "Event": "Newexten", "AppData": "1?Set(ARRAY(__client_id,__intprefix,dummy,__limit_account,__limit_client)=15001,31,204,4,0)", "Extension": "203", "Priority": "36", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "15001", "Variable": "__client_id", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "31", "Variable": "__intprefix", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "204", "Variable": "dummy", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "4", "Variable": "__limit_account", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "0", "Variable": "__limit_client", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "ExecIf", "Event": "Newexten", "AppData": "0?Set(CHANNEL(musicclass)=)", "Extension": "203", "Priority": "37", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "NoOp", "Event": "Newexten", "AppData": "DEBUG: CLI: name=\"\" num=202 ANI=202 presence=allowed_passed_screen", "Extension": "203", "Priority": "38", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Goto", "Event": "Newexten", "AppData": "osvpi_account,203,checkspeeddial", "Extension": "203", "Priority": "39", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "GotoIf", "Event": "Newexten", "AppData": "1?continue", "Extension": "203", "Priority": "19", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Gosub", "Event": "Newexten", "AppData": "osvpi_proc_set_i18n_region,31,1", "Extension": "203", "Priority": "22", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "0", "Variable": "LOCAL(ARGC)", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "i18n_region=NL", "Extension": "31", "Priority": "1", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_i18n_region", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "NL", "Variable": "i18n_region", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Return", "Event": "Newexten", "AppData": "", "Extension": "31", "Priority": "2", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_i18n_region", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "GOSUB_RETVAL", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Goto", "Event": "Newexten", "AppData": "osvpi_account_emergency_NL,203,1", "Extension": "203", "Priority": "23", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Goto", "Event": "Newexten", "AppData": "osvpi_account_no_emergency,203,1", "Extension": "203", "Priority": "1", "Privilege": "dialplan,all", "Context": "osvpi_account_emergency_NL", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Goto", "Event": "Newexten", "AppData": "osvpi_account,203,no-emergency", "Extension": "203", "Priority": "1", "Privilege": "dialplan,all", "Context": "osvpi_account_no_emergency", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Goto", "Event": "Newexten", "AppData": "osvpi_account_clean,203,1", "Extension": "203", "Priority": "24", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "return=osvpi_account_clean", "Extension": "203", "Priority": "1", "Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "osvpi_account_clean", "Variable": "return", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Goto", "Event": "Newexten", "AppData": "osvpi_return_to_canonical,31i203,1", "Extension": "203", "Priority": "2", "Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "31i203", "Variable": "INVALID_EXTEN", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Goto", "Event": "Newexten", "AppData": "osvpi_account_clean,203,local", "Extension": "i", "Priority": "1", "Privilege": "dialplan,all", "Context": "osvpi_return_to_canonical", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "GotoIf", "Event": "Newexten", "AppData": "0?extern", "Extension": "203", "Priority": "3", "Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Gosub", "Event": "Newexten", "AppData": "osvpi_proc_set_callerid,203,1(150010004,0,0)", "Extension": "203", "Priority": "4", "Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "150010004", "Variable": "LOCAL(ARG1)", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "0", "Variable": "LOCAL(ARG2)", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "0", "Variable": "LOCAL(ARG3)", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "3", "Variable": "LOCAL(ARGC)", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "GotoIf", "Event": "Newexten", "AppData": "1?done", "Extension": "203", "Priority": "1", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Return", "Event": "Newexten", "AppData": "", "Extension": "203", "Priority": "10", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "GOSUB_RETVAL", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "GotoIf", "Event": "Newexten", "AppData": "3?osvpi_account_call_int,203,1:i,1", "Extension": "203", "Priority": "5", "Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Gosub", "Event": "Newexten", "AppData": "osvpi_proc_check_limits,203,1", "Extension": "203", "Priority": "1", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "0", "Variable": "LOCAL(ARGC)", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "NoOp", "Event": "Newexten", "AppData": "DEBUG: call_limit: client 1/0 and account 0/4", "Extension": "203", "Priority": "1", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "GotoIf", "Event": "Newexten", "AppData": "0?osvpi_handle_limit,203,client", "Extension": "203", "Priority": "2", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "GotoIf", "Event": "Newexten", "AppData": "0?osvpi_handle_limit,203,account", "Extension": "203", "Priority": "3", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "GROUP(account_lim)=150010004", "Extension": "203", "Priority": "4", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "GROUP(client_lim)=15001", "Extension": "203", "Priority": "5", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Return", "Event": "Newexten", "AppData": "", "Extension": "203", "Priority": "6", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "GOSUB_RETVAL", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Gosub", "Event": "Newexten", "AppData": "osvpi_proc_check_recurse,203,1(15001)", "Extension": "203", "Priority": "2", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "15001", "Variable": "LOCAL(ARG1)", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "1", "Variable": "LOCAL(ARGC)", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "LOCAL(exten)=15001:203", "Extension": "203", "Priority": "1", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "15001:203", "Variable": "LOCAL(exten)", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "NoOp", "Event": "Newexten", "AppData": "Recursion checking 15001:203 against ", "Extension": "203", "Priority": "2", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "LOCAL(n)=0", "Extension": "203", "Priority": "3", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "0", "Variable": "LOCAL(n)", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "LOCAL(i)=1", "Extension": "203", "Priority": "4", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "1", "Variable": "LOCAL(i)", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "GotoIf", "Event": "Newexten", "AppData": "1?add", "Extension": "203", "Priority": "5", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "__EXTEN_LIST=15001:203 ", "Extension": "203", "Priority": "9", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "15001:203 ", "Variable": "__EXTEN_LIST", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "__EXTEN_LIST_LAST_EDIT_TIME=1509114512", "Extension": "203", "Priority": "10", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "1509114512", "Variable": "__EXTEN_LIST_LAST_EDIT_TIME", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Return", "Event": "Newexten", "AppData": "", "Extension": "203", "Priority": "11", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "GOSUB_RETVAL", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "__ORIG_EXTEN=203", "Extension": "203", "Priority": "3", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "203", "Variable": "__ORIG_EXTEN", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "0", "Variable": "ODBCROWS", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "NODATA", "Variable": "ODBCSTATUS", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "ARRAY(conference_id,user_password,admin_password,conference_language)=", "Extension": "203", "Priority": "4", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "conference_id", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "user_password", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "admin_password", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "conference_language", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "GotoIf", "Event": "Newexten", "AppData": "0?osvpi_route_conference,ID,1", "Extension": "203", "Priority": "5", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "0", "Variable": "ODBCROWS", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "NODATA", "Variable": "ODBCSTATUS", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "ARRAY(route_id,client_timezone)=", "Extension": "203", "Priority": "6", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "route_id", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "client_timezone", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "GotoIf", "Event": "Newexten", "AppData": "0?osvpi_route_root,203,restart", "Extension": "203", "Priority": "7", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "0", "Variable": "ODBCROWS", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "NODATA", "Variable": "ODBCSTATUS", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "ARRAY(all_extensions,limited_extensions,password,account_spy_language)=", "Extension": "203", "Priority": "8", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "all_extensions", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "limited_extensions", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "password", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "account_spy_language", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "GotoIf", "Event": "Newexten", "AppData": "0?osvpi_account_spy,203,1", "Extension": "203", "Priority": "9", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "1", "Variable": "ODBCROWS", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "SUCCESS", "Variable": "ODBCSTATUS", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "interfaces", "Variable": "~ODBCFIELDS~", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "ARRAY(interfaces)=Local/ID690152@osvpi_route_phoneaccount", "Extension": "203", "Priority": "10", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "Local/ID690152@osvpi_route_phoneaccount", "Variable": "interfaces", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "GotoIf", "Event": "Newexten", "AppData": "0?osvpi_handle_unallocated,203,1", "Extension": "203", "Priority": "11", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Dial", "Event": "Newexten", "AppData": "Local/ID690152@osvpi_route_phoneaccount", "Extension": "203", "Priority": "12", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "DIALSTATUS", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "DIALEDPEERNUMBER", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "DIALEDPEERNAME", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "ANSWEREDTIME", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "DIALEDTIME", "Channel": "SIP/150010002-00000000"}, - {"content": "", "Privilege": "call,all", "ChannelState": "0", "Event": "Newchannel", "Exten": "ID690152", "Context": "osvpi_route_phoneaccount", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;1", "Uniqueid": "0f00dcaa884f-1509114512.4", "CallerIDName": "", "CallerIDNum": "", "ChannelStateDesc": "Down", "AccountCode": ""}, - {"content": "", "Privilege": "call,all", "ChannelState": "4", "Event": "Newchannel", "Exten": "ID690152", "Context": "osvpi_route_phoneaccount", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2", "Uniqueid": "0f00dcaa884f-1509114512.5", "CallerIDName": "", "CallerIDNum": "", "ChannelStateDesc": "Ring", "AccountCode": ""}, - {"Uniqueid": "0f00dcaa884f-1509114512.4", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "ID690152@osvpi_route_phoneaccount", "Variable": "DIALEDPEERNUMBER", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;1"}, - {"Uniqueid": "0f00dcaa884f-1509114512.4", "content": "", "CallerIDNum": "203", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;1", "Event": "NewCallerid", "CallerIDName": "", "Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"content": "", "Channel2": "Local/ID690152@osvpi_route_phoneaccount-00000001;2", "Event": "LocalBridge", "LocalOptimization": "Yes", "Exten": "ID690152", "Uniqueid1": "0f00dcaa884f-1509114512.4", "Uniqueid2": "0f00dcaa884f-1509114512.5", "Privilege": "call,all", "Context": "osvpi_route_phoneaccount", "Channel1": "Local/ID690152@osvpi_route_phoneaccount-00000001;1"}, - {"content": "", "Privilege": "call,all", "Event": "Dial", "DestUniqueID": "0f00dcaa884f-1509114512.4", "ConnectedLineName": "", "Channel": "SIP/150010002-00000000", "SubEvent": "Begin", "Dialstring": "ID690152@osvpi_route_phoneaccount", "UniqueID": "0f00dcaa884f-1509114500.0", "Destination": "Local/ID690152@osvpi_route_phoneaccount-00000001;1", "CallerIDName": "", "CallerIDNum": "202", "ConnectedLineNum": ""}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "1", "Variable": "ODBCROWS", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "SUCCESS", "Variable": "ODBCSTATUS", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account", "Variable": "~ODBCFIELDS~", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=150010003,accountid,dutch,from,,0", "Extension": "ID690152", "Priority": "1", "Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "150010003", "Variable": "__dst_account_id", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "accountid", "Variable": "l_mangle_did", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "dutch", "Variable": "l_mangle_cli", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "from", "Variable": "l_cli_header", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "l_primary_pickupgroup", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "0", "Variable": "app_account", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Application": "GotoIf", "Event": "Newexten", "AppData": "0?vialer", "Extension": "ID690152", "Priority": "2", "Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "_PICKUPMARK=", "Extension": "ID690152", "Priority": "3", "Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "_PICKUPMARK", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "l_trunk=0", "Extension": "ID690152", "Priority": "4", "Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "0", "Variable": "l_trunk", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Application": "Goto", "Event": "Newexten", "AppData": "osvpi_route_account,ID690152,1", "Extension": "ID690152", "Priority": "5", "Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "0", "Variable": "ODBCROWS", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "NODATA", "Variable": "ODBCSTATUS", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "ARRAY(l_proxy)=", "Extension": "ID690152", "Priority": "1", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "l_proxy", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Application": "Gosub", "Event": "Newexten", "AppData": "osvpi_proc_mangle_number,accountid,1(150010003,203)", "Extension": "ID690152", "Priority": "2", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "150010003", "Variable": "LOCAL(ARG1)", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "203", "Variable": "LOCAL(ARG2)", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "2", "Variable": "LOCAL(ARGC)", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "MANGLED_EXTEN=150010003", "Extension": "accountid", "Priority": "1", "Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "150010003", "Variable": "MANGLED_EXTEN", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Application": "Return", "Event": "Newexten", "AppData": "", "Extension": "accountid", "Priority": "2", "Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "GOSUB_RETVAL", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "l_did=150010003", "Extension": "ID690152", "Priority": "3", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "150010003", "Variable": "l_did", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Application": "Gosub", "Event": "Newexten", "AppData": "osvpi_proc_mangle_number,dutch,1(150010003,202)", "Extension": "ID690152", "Priority": "4", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "150010003", "Variable": "LOCAL(ARG1)", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "202", "Variable": "LOCAL(ARG2)", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "2", "Variable": "LOCAL(ARGC)", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Application": "GotoIf", "Event": "Newexten", "AppData": "1?fullzero,1", "Extension": "dutch", "Priority": "1", "Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "MANGLED_EXTEN=202", "Extension": "fullzero", "Priority": "1", "Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "202", "Variable": "MANGLED_EXTEN", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Application": "Return", "Event": "Newexten", "AppData": "", "Extension": "fullzero", "Priority": "2", "Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "GOSUB_RETVAL", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "l_mangle_cli_hdr=from-dutch", "Extension": "ID690152", "Priority": "5", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "from-dutch", "Variable": "l_mangle_cli_hdr", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "l_fromuser=", "Extension": "ID690152", "Priority": "6", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "l_fromuser", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Application": "ExecIf", "Event": "Newexten", "AppData": "1?Set(l_fromuser=202)", "Extension": "ID690152", "Priority": "7", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "202", "Variable": "l_fromuser", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "1", "Variable": "ODBCROWS", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "SUCCESS", "Variable": "ODBCSTATUS", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "IF((SELECT 1 FROM baseaccount_account ba INNER JOIN userdestination_selecteduserdestination udsud ON udsud.phoneaccount_id = ba.id INNER JOIN userdestination_userdestination udud ON udud.id = udsud.userdestination_id INNER JOIN crm_cloudctiuser cccu O", "Variable": "~ODBCFIELDS~", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "ARRAY(cloudcti)=0", "Extension": "ID690152", "Priority": "8", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "0", "Variable": "cloudcti", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Application": "GotoIf", "Event": "Newexten", "AppData": "1?skipcloudcti", "Extension": "ID690152", "Priority": "9", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "1", "Variable": "ODBCROWS", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "SUCCESS", "Variable": "ODBCSTATUS", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "GROUP_CONCAT(DISTINCT(csw.url) SEPARATOR ' '),internal_number,GROUP_CONCAT(DISTINCT(ud.internal_number) SEPARATOR ' ')", "Variable": "~ODBCFIELDS~", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "203", "Variable": "accountinternalnumber", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "603", "Variable": "userinternalnumbers", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Application": "Goto", "Event": "Newexten", "AppData": "osvpi_proc_proxy_out,203,1", "Extension": "ID690152", "Priority": "13", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Application": "SIPAddHeader", "Event": "Newexten", "AppData": "X-Accountcode: 150010003", "Extension": "203", "Priority": "1", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "X-Accountcode: 150010003", "Variable": "__SIPADDHEADER01", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Application": "SIPAddHeader", "Event": "Newexten", "AppData": "X-Insecure-Protection: geheim", "Extension": "203", "Priority": "2", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "X-Insecure-Protection: geheim", "Variable": "__SIPADDHEADER02", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Application": "SIPAddHeader", "Event": "Newexten", "AppData": "X-Mangle-Cli: from-dutch", "Extension": "203", "Priority": "3", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "X-Mangle-Cli: from-dutch", "Variable": "__SIPADDHEADER03", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "_dial_options_callaccept=", "Extension": "203", "Priority": "4", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "_dial_options_callaccept", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "_dial_options_callnotify=", "Extension": "203", "Priority": "5", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "_dial_options_callnotify", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Application": "ExecIf", "Event": "Newexten", "AppData": "1?Set(l_proxy=opensipsfg)", "Extension": "203", "Priority": "6", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "opensipsfg", "Variable": "l_proxy", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Application": "Set", "Event": "Newexten", "AppData": "l_extra_options=", "Extension": "203", "Priority": "7", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "l_extra_options", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Application": "Dial", "Event": "Newexten", "AppData": "SIP/150010003/150010003/opensipsfg!!202,,", "Extension": "203", "Priority": "8", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "DIALSTATUS", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "DIALEDPEERNUMBER", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "DIALEDPEERNAME", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "ANSWEREDTIME", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "", "Variable": "DIALEDTIME", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"content": "", "Privilege": "call,all", "ChannelState": "0", "Event": "Newchannel", "Exten": "", "Context": "osvpi_account", "Channel": "SIP/150010003-00000002", "Uniqueid": "0f00dcaa884f-1509114512.6", "CallerIDName": "", "CallerIDNum": "", "ChannelStateDesc": "Down", "AccountCode": "150010003"}, - {"Uniqueid": "0f00dcaa884f-1509114512.6", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "26e832b65675771053a845fa24ad508e@test.voipgrid.nl", "Variable": "SIPCALLID", "Channel": "SIP/150010003-00000002"}, - {"Uniqueid": "0f00dcaa884f-1509114512.6", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "15001", "Variable": "__client_id", "Channel": "SIP/150010003-00000002"}, - {"Uniqueid": "0f00dcaa884f-1509114512.6", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "150010003", "Variable": "__account_id", "Channel": "SIP/150010003-00000002"}, - {"Uniqueid": "0f00dcaa884f-1509114512.6", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "no", "Variable": "__record_call", "Channel": "SIP/150010003-00000002"}, - {"Uniqueid": "0f00dcaa884f-1509114512.6", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "31", "Variable": "__intprefix", "Channel": "SIP/150010003-00000002"}, - {"Uniqueid": "0f00dcaa884f-1509114512.6", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "4", "Variable": "__limit_account", "Channel": "SIP/150010003-00000002"}, - {"Uniqueid": "0f00dcaa884f-1509114512.6", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "0", "Variable": "__limit_client", "Channel": "SIP/150010003-00000002"}, - {"Uniqueid": "0f00dcaa884f-1509114512.6", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "1", "Variable": "__hide_ext_cliname", "Channel": "SIP/150010003-00000002"}, - {"Uniqueid": "0f00dcaa884f-1509114512.6", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "osvpi_account_transfer", "Variable": "__TRANSFER_CONTEXT", "Channel": "SIP/150010003-00000002"}, - {"Uniqueid": "0f00dcaa884f-1509114512.6", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "150010003/150010003/opensipsfg!!202", "Variable": "DIALEDPEERNUMBER", "Channel": "SIP/150010003-00000002"}, - {"Uniqueid": "0f00dcaa884f-1509114512.6", "content": "", "CallerIDNum": "203", "Channel": "SIP/150010003-00000002", "Event": "NewCallerid", "CallerIDName": "", "Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"content": "", "Privilege": "call,all", "Event": "Dial", "DestUniqueID": "0f00dcaa884f-1509114512.6", "ConnectedLineName": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2", "SubEvent": "Begin", "Dialstring": "150010003/150010003/opensipsfg!!202", "UniqueID": "0f00dcaa884f-1509114512.5", "Destination": "SIP/150010003-00000002", "CallerIDName": "", "CallerIDNum": "202", "ConnectedLineNum": "203"}, - {"content": "", "Privilege": "call,all", "Cause": "19", "Event": "Hangup", "ConnectedLineName": "", "Channel": "SIP/150010003-00000002", "Uniqueid": "0f00dcaa884f-1509114512.6", "Cause-txt": "User alerting, no answer", "CallerIDName": "", "CallerIDNum": "203", "AccountCode": "150010004", "ConnectedLineNum": "202"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "CONGESTION", "Variable": "DIALSTATUS", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"content": "", "UniqueID": "0f00dcaa884f-1509114512.5", "Event": "Dial", "DialStatus": "CONGESTION", "Privilege": "call,all", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2", "SubEvent": "End"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Application": "GotoIf", "Event": "Newexten", "AppData": "1?falloff", "Extension": "203", "Priority": "9", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Application": "NoOp", "Event": "Newexten", "AppData": "Got hangupcause 19 from peer 150010003 (did=150010003, cli=202, pres=allowed_passed_screen, status=CONGESTION, proxy=opensipsfg)", "Extension": "203", "Priority": "12", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Application": "ExecIf", "Event": "Newexten", "AppData": "0?Hangup(USER_BUSY)", "Extension": "203", "Priority": "13", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Application": "Hangup", "Event": "Newexten", "AppData": "NO_ANSWER", "Extension": "203", "Priority": "14", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Cause": "16", "Event": "SoftHangupRequest", "Privilege": "call,all", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Application": "GotoIf", "Event": "Newexten", "AppData": "1?nosip", "Extension": "onhangup", "Priority": "1", "Privilege": "dialplan,all", "Context": "handlers", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.5", "content": "", "Application": "GosubIf", "Event": "Newexten", "AppData": "0?osvpi_proc_httptouch,s,1()", "Extension": "onhangup", "Priority": "3", "Privilege": "dialplan,all", "Context": "handlers", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2"}, - {"Uniqueid": "0f00dcaa884f-1509114512.4", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "CONGESTION", "Variable": "CHANLOCALSTATUS", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;1"}, - {"content": "", "Privilege": "call,all", "Cause": "19", "Event": "Hangup", "ConnectedLineName": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;2", "Uniqueid": "0f00dcaa884f-1509114512.5", "Cause-txt": "User alerting, no answer", "CallerIDName": "", "CallerIDNum": "202", "AccountCode": "150010004", "ConnectedLineNum": "203"}, - {"content": "", "Privilege": "call,all", "Cause": "19", "Event": "Hangup", "ConnectedLineName": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000001;1", "Uniqueid": "0f00dcaa884f-1509114512.4", "Cause-txt": "User alerting, no answer", "CallerIDName": "", "CallerIDNum": "203", "AccountCode": "150010004", "ConnectedLineNum": "202"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "NOANSWER", "Variable": "DIALSTATUS", "Channel": "SIP/150010002-00000000"}, - {"content": "", "UniqueID": "0f00dcaa884f-1509114500.0", "Event": "Dial", "DialStatus": "NOANSWER", "Privilege": "call,all", "Channel": "SIP/150010002-00000000", "SubEvent": "End"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "GotoIf", "Event": "Newexten", "AppData": "1?osvpi_proc_hangup,203,1", "Extension": "203", "Priority": "13", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "Hangup", "Event": "Newexten", "AppData": "19", "Extension": "203", "Priority": "1", "Privilege": "dialplan,all", "Context": "osvpi_proc_hangup", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Cause": "16", "Event": "SoftHangupRequest", "Privilege": "call,all", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "GotoIf", "Event": "Newexten", "AppData": "0?nosip", "Extension": "onhangup", "Priority": "1", "Privilege": "dialplan,all", "Context": "handlers", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "NoOp", "Event": "Newexten", "AppData": "LOG: rtpqos: caller=172.20.0.254:38846;asterisk=0.0.0.0:14166;ssrc=353749174;themssrc=442498165;lp=0;rxjitter=0.000000;rxcount=223;txjitter=0.000136;txcount=221;rlp=0;rtt=0.000000;billsec=0", "Extension": "onhangup", "Priority": "2", "Privilege": "dialplan,all", "Context": "handlers", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Application": "GosubIf", "Event": "Newexten", "AppData": "0?osvpi_proc_httptouch,s,1()", "Extension": "onhangup", "Priority": "3", "Privilege": "dialplan,all", "Context": "handlers", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "ssrc=353749174;themssrc=442498165;lp=0;rxjitter=0.000000;rxcount=223;txjitter=0.000136;txcount=221;rlp=0;rtt=0.000000", "Variable": "RTPAUDIOQOS", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Variable": "RTPAUDIOQOSJITTER", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Variable": "RTPAUDIOQOSLOSS", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Variable": "RTPAUDIOQOSRTT", "Channel": "SIP/150010002-00000000"}, - {"Uniqueid": "0f00dcaa884f-1509114500.0", "content": "", "Privilege": "dialplan,all", "Event": "VarSet", "Value": "ssrc=353749174;themssrc=442498165;lp=0;rxjitter=0.000000;rxcount=223;txjitter=0.000136;txcount=221;rlp=0;rtt=0.000000", "Variable": "RTPAUDIOQOS", "Channel": "SIP/150010002-00000000"}, - {"content": "", "Privilege": "call,all", "Cause": "19", "Event": "Hangup", "ConnectedLineName": "", "Channel": "SIP/150010002-00000000", "Uniqueid": "0f00dcaa884f-1509114500.0", "Cause-txt": "User alerting, no answer", "CallerIDName": "", "CallerIDNum": "202", "AccountCode": "150010004", "ConnectedLineNum": ""} -] + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000012", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1530000279.351", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000279.351", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000012", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1530000279.351", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000279.351", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000012", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1530000279.351", "Priority": "5", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000279.351", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000012", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1530000279.351", "Priority": "6", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000279.351", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000c;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "07b796be1962-1530000279.351", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000279.354", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "07b796be1962-1530000279.351", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000279.356", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000c;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1530000279.351", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000279.354", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000c;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1530000279.351", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000279.354", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000c;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1530000279.351", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000279.354", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730151", "Language": "en", "Linkedid": "07b796be1962-1530000279.351", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000279.356", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730151", "Language": "en", "Linkedid": "07b796be1962-1530000279.351", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000279.356", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730151", "Language": "en", "Linkedid": "07b796be1962-1530000279.351", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000279.356", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730151", "LocalOneAccountCode": "150010001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "202", "LocalOneChannel": "Local/ID730151@osvpi_route_phoneaccount-0000000c;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Andrew Garza", "LocalOneConnectedLineNum": "201", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "202", "LocalOneLanguage": "en", "LocalOneLinkedid": "07b796be1962-1530000279.351", "LocalOnePriority": "1", "LocalOneUniqueid": "07b796be1962-1530000279.354", "LocalOptimization": "Yes", "LocalTwoAccountCode": "150010001", "LocalTwoCallerIDName": "Andrew Garza", "LocalTwoCallerIDNum": "201", "LocalTwoChannel": "Local/ID730151@osvpi_route_phoneaccount-0000000c;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "202", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730151", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "07b796be1962-1530000279.351", "LocalTwoPriority": "1", "LocalTwoUniqueid": "07b796be1962-1530000279.356", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000012", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-0000000c;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "202", "DestLanguage": "en", "DestLinkedid": "07b796be1962-1530000279.351", "DestPriority": "1", "DestUniqueid": "07b796be1962-1530000279.354", "DialString": "ID730151@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1530000279.351", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000279.351", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010002-00000013", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "07b796be1962-1530000279.351", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000279.359", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000013", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1530000279.351", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000279.359", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000013", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1530000279.351", "OldAccountCode": "150010002", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000279.359", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000013", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1530000279.351", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000279.359", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "SIP/150010002-00000013", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "202", "DestLanguage": "nl", "DestLinkedid": "07b796be1962-1530000279.351", "DestPriority": "1", "DestUniqueid": "07b796be1962-1530000279.359", "DialString": "150010002/150010002/172.20.0.13!!201", "Event": "DialBegin", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1530000279.351", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000279.356", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000013", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1530000279.351", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000279.359", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000c;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1530000279.351", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000279.354", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000013", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1530000279.351", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000279.359", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "SIP/150010002-00000013", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "07b796be1962-1530000279.351", "DestPriority": "1", "DestUniqueid": "07b796be1962-1530000279.359", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1530000279.351", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000279.356", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000c;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1530000279.351", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000279.356", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000c;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1530000279.351", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000279.354", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "b8bf2e2e-8f41-4461-9e49-fff3c74e786b", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000012", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-0000000c;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "07b796be1962-1530000279.351", "DestPriority": "1", "DestUniqueid": "07b796be1962-1530000279.354", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1530000279.351", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000279.351", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000012", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1530000279.351", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000279.351", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "fa690e56-4e75-45f5-87ca-b56e526ecbbd", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "b8bf2e2e-8f41-4461-9e49-fff3c74e786b", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000013", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "07b796be1962-1530000279.351", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000279.359", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "fa690e56-4e75-45f5-87ca-b56e526ecbbd", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000c;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "07b796be1962-1530000279.351", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000279.354", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "b8bf2e2e-8f41-4461-9e49-fff3c74e786b", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000c;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1530000279.351", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000279.356", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "fa690e56-4e75-45f5-87ca-b56e526ecbbd", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000012", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1530000279.351", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000279.351", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "b8bf2e2e-8f41-4461-9e49-fff3c74e786b", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000013", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "07b796be1962-1530000279.351", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000279.359", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "fa690e56-4e75-45f5-87ca-b56e526ecbbd", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000c;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "07b796be1962-1530000279.351", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000279.354", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "fa690e56-4e75-45f5-87ca-b56e526ecbbd", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000013", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "07b796be1962-1530000279.351", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "07b796be1962-1530000279.354", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000279.359", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "b8bf2e2e-8f41-4461-9e49-fff3c74e786b", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000c;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1530000279.351", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000279.356", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000c;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "07b796be1962-1530000279.351", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000279.354", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "b8bf2e2e-8f41-4461-9e49-fff3c74e786b", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000c;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "07b796be1962-1530000279.351", "Priority": "4", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000279.356", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "fa690e56-4e75-45f5-87ca-b56e526ecbbd", "BridgeVideoSourceMode": "none", "Context": "osvpi_account_transfer", "Event": "BlindTransfer", "Extension": "203", "IsExternal": "Yes", "Privilege": "call,all", "Result": "Success", "SystemName": "07b796be1962", "TransfereeAccountCode": "150010001", "TransfereeCallerIDName": "", "TransfereeCallerIDNum": "202", "TransfereeChannel": "SIP/150010002-00000013", "TransfereeChannelState": "6", "TransfereeChannelStateDesc": "Up", "TransfereeConnectedLineName": "Andrew Garza", "TransfereeConnectedLineNum": "201", "TransfereeContext": "osvpi_account", "TransfereeExten": "", "TransfereeLanguage": "nl", "TransfereeLinkedid": "07b796be1962-1530000279.351", "TransfereePriority": "1", "TransfereeUniqueid": "07b796be1962-1530000279.359", "TransfererAccountCode": "150010001", "TransfererCallerIDName": "Andrew Garza", "TransfererCallerIDNum": "201", "TransfererChannel": "SIP/150010001-00000012", "TransfererChannelState": "6", "TransfererChannelStateDesc": "Up", "TransfererConnectedLineName": "", "TransfererConnectedLineNum": "", "TransfererContext": "osvpi_account_call_int", "TransfererExten": "202", "TransfererLanguage": "nl", "TransfererLinkedid": "07b796be1962-1530000279.351", "TransfererPriority": "12", "TransfererUniqueid": "07b796be1962-1530000279.351", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "fa690e56-4e75-45f5-87ca-b56e526ecbbd", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000012", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1530000279.351", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000279.351", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "fa690e56-4e75-45f5-87ca-b56e526ecbbd", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000013", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account_transfer", "Event": "BridgeLeave", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1530000279.351", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000279.359", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "fa690e56-4e75-45f5-87ca-b56e526ecbbd", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010001-00000012", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "07b796be1962-1530000279.351", "Priority": "4", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000279.351", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730152", "Language": "en", "Linkedid": "07b796be1962-1530000279.351", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000285.385", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730152", "Language": "en", "Linkedid": "07b796be1962-1530000279.351", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000285.387", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "Andrew Garza", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1530000279.351", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000285.385", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1530000279.351", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000285.385", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1530000279.351", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000285.385", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "203", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730152", "Language": "en", "Linkedid": "07b796be1962-1530000279.351", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000285.387", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "203", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730152", "Language": "en", "Linkedid": "07b796be1962-1530000279.351", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000285.387", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "203", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730152", "Language": "en", "Linkedid": "07b796be1962-1530000279.351", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000285.387", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730152", "LocalOneAccountCode": "150010001", "LocalOneCallerIDName": "Andrew Garza", "LocalOneCallerIDNum": "203", "LocalOneChannel": "Local/ID730152@osvpi_route_phoneaccount-0000000d;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "202", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "203", "LocalOneLanguage": "en", "LocalOneLinkedid": "07b796be1962-1530000279.351", "LocalOnePriority": "1", "LocalOneUniqueid": "07b796be1962-1530000285.385", "LocalOptimization": "Yes", "LocalTwoAccountCode": "150010001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "202", "LocalTwoChannel": "Local/ID730152@osvpi_route_phoneaccount-0000000d;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "Andrew Garza", "LocalTwoConnectedLineNum": "203", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730152", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "07b796be1962-1530000279.351", "LocalTwoPriority": "1", "LocalTwoUniqueid": "07b796be1962-1530000285.387", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000013", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "Andrew Garza", "DestCallerIDNum": "203", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-0000000d;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "202", "DestContext": "osvpi_route_phoneaccount", "DestExten": "203", "DestLanguage": "en", "DestLinkedid": "07b796be1962-1530000279.351", "DestPriority": "1", "DestUniqueid": "07b796be1962-1530000285.385", "DialString": "ID730152@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1530000279.351", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000279.359", "content": ""}, + {"AccountCode": "150010003", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010003-00000014", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "07b796be1962-1530000279.351", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000285.390", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "Andrew Garza", "CallerIDNum": "203", "Channel": "SIP/150010003-00000014", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1530000279.351", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000285.390", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "203", "Channel": "SIP/150010003-00000014", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1530000279.351", "OldAccountCode": "150010003", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000285.390", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "203", "Channel": "SIP/150010003-00000014", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1530000279.351", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000285.390", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "203", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "Andrew Garza", "DestCallerIDNum": "203", "DestChannel": "SIP/150010003-00000014", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "202", "DestContext": "osvpi_account", "DestExten": "203", "DestLanguage": "nl", "DestLinkedid": "07b796be1962-1530000279.351", "DestPriority": "1", "DestUniqueid": "07b796be1962-1530000285.390", "DialString": "150010003/150010003/opensipsfg!!202", "Event": "DialBegin", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1530000279.351", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000285.387", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "203", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "Andrew Garza", "DestCallerIDNum": "203", "DestChannel": "SIP/150010003-00000014", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "202", "DestContext": "osvpi_account", "DestExten": "203", "DestLanguage": "nl", "DestLinkedid": "07b796be1962-1530000279.351", "DestPriority": "1", "DestUniqueid": "07b796be1962-1530000285.390", "DialStatus": "BUSY", "Event": "DialEnd", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1530000279.351", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000285.387", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "203", "Cause": "19", "Cause-txt": "User alerting, no answer", "Channel": "SIP/150010003-00000014", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_account", "Event": "Hangup", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1530000279.351", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000285.390", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Cause": "19", "Cause-txt": "User alerting, no answer", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "203", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "07b796be1962-1530000279.351", "Priority": "4", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000285.387", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000013", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "Andrew Garza", "DestCallerIDNum": "203", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-0000000d;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "202", "DestContext": "osvpi_route_phoneaccount", "DestExten": "203", "DestLanguage": "en", "DestLinkedid": "07b796be1962-1530000279.351", "DestPriority": "1", "DestUniqueid": "07b796be1962-1530000285.385", "DialStatus": "NOANSWER", "Event": "DialEnd", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1530000279.351", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000279.359", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "203", "Cause": "19", "Cause-txt": "User alerting, no answer", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1530000279.351", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000285.385", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Cause": "19", "Cause-txt": "User alerting, no answer", "Channel": "SIP/150010002-00000013", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "07b796be1962-1530000279.351", "Priority": "4", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000279.359", "content": ""} +] \ No newline at end of file diff --git a/tests/fixtures/xfer_blind/xfer_blind_abacbc.json b/tests/fixtures/xfer_blind/xfer_blind_abacbc.json index 99a1431..368bc06 100644 --- a/tests/fixtures/xfer_blind/xfer_blind_abacbc.json +++ b/tests/fixtures/xfer_blind/xfer_blind_abacbc.json @@ -1,647 +1,89 @@ [ - {"Status": "Fully Booted", "Privilege": "system,all", "Event": "FullyBooted", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "CallerIDNum": "150010002", "ChannelStateDesc": "Down", "CallerIDName": "Docker", "Context": "osvpi_account", "ChannelState": "0", "Exten": "203", "Privilege": "call,all", "AccountCode": "150010002", "Channel": "SIP/150010002-00000012", "content": "", "Event": "Newchannel"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "SIPURI", "Channel": "SIP/150010002-00000012", "Value": "sip:150010002@10.13.36.116:5060", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "SIPDOMAIN", "Channel": "SIP/150010002-00000012", "Value": "10.13.37.110", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "SIPCALLID", "Channel": "SIP/150010002-00000012", "Value": "c3eec155-8f3813d7@10.13.36.116", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "__client_id", "Channel": "SIP/150010002-00000012", "Value": "15001", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "__account_id", "Channel": "SIP/150010002-00000012", "Value": "150010002", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "__record_call", "Channel": "SIP/150010002-00000012", "Value": "no", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "__intprefix", "Channel": "SIP/150010002-00000012", "Value": "31", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "__limit_account", "Channel": "SIP/150010002-00000012", "Value": "4", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "__limit_client", "Channel": "SIP/150010002-00000012", "Value": "0", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "__hide_ext_cliname", "Channel": "SIP/150010002-00000012", "Value": "1", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "__TRANSFER_CONTEXT", "Channel": "SIP/150010002-00000012", "Value": "osvpi_account_transfer", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "CallerIDNum": "150010002", "Privilege": "call,all", "Event": "Newstate", "CallerIDName": "Docker", "Channel": "SIP/150010002-00000012", "ConnectedLineName": "", "content": "", "ChannelState": "4", "ConnectedLineNum": "", "ChannelStateDesc": "Ring"}, - {"AppData": "0?GotoIf(0?osvpi_proc_hangup_insecure,203,1)", "Priority": "1", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010002-00000012", "content": "", "Application": "ExecIf", "Event": "Newexten", "Extension": "203"}, - {"AppData": "osvpi_proc_check_forwards,s,1", "Priority": "2", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Gosub", "Event": "Newexten", "Extension": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "LOCAL(ARGC)", "Channel": "SIP/150010002-00000012", "Value": "0", "Event": "VarSet", "content": ""}, - {"AppData": "0?check,1", "Priority": "1", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Channel": "SIP/150010002-00000012", "content": "", "Application": "GotoIf", "Event": "Newexten", "Extension": "s"}, - {"AppData": "LOCAL(tmp)=70", "Priority": "2", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "s"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "LOCAL(tmp)", "Channel": "SIP/150010002-00000012", "Value": "70", "Event": "VarSet", "content": ""}, - {"AppData": "0?Goto(init,1)", "Priority": "3", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Channel": "SIP/150010002-00000012", "content": "", "Application": "ExecIf", "Event": "Newexten", "Extension": "s"}, - {"AppData": "1?Goto(init,1)", "Priority": "4", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Channel": "SIP/150010002-00000012", "content": "", "Application": "ExecIf", "Event": "Newexten", "Extension": "s"}, - {"AppData": "MASTER_CHANNEL(SIP_MAX_FORWARDS)=16", "Priority": "1", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "init"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "SIP_MAX_FORWARDS", "Channel": "SIP/150010002-00000012", "Value": "16", "Event": "VarSet", "content": ""}, - {"AppData": "DEBUG: MaxForwards: initialized to: 16", "Priority": "2", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Channel": "SIP/150010002-00000012", "content": "", "Application": "NoOp", "Event": "Newexten", "Extension": "init"}, - {"AppData": "", "Priority": "3", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Return", "Event": "Newexten", "Extension": "init"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "GOSUB_RETVAL", "Channel": "SIP/150010002-00000012", "Value": "", "Event": "VarSet", "content": ""}, - {"AppData": "0?osvpi_account_transfer,203,1", "Priority": "3", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010002-00000012", "content": "", "Application": "GotoIf", "Event": "Newexten", "Extension": "203"}, - {"AppData": "ENTRY POINT username=150010002,ip=172.20.0.13/172.20.0.13,from=sip:150010002@10.13.37.110,contact=sip:150010002@10.13.36.116:5060,ua=Cisco/SPA504G-7.5.2b,name=Docker,num=150010002,pres=allowed_not_screened", "Priority": "4", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010002-00000012", "content": "", "Application": "NoOp", "Event": "Newexten", "Extension": "203"}, - {"AppData": "is_transfer=0", "Priority": "5", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "is_transfer", "Channel": "SIP/150010002-00000012", "Value": "0", "Event": "VarSet", "content": ""}, - {"AppData": "CDR(amaflags)=BILLING", "Priority": "6", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "203"}, - {"AppData": "user_privacy=0", "Priority": "7", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "user_privacy", "Channel": "SIP/150010002-00000012", "Value": "0", "Event": "VarSet", "content": ""}, - {"AppData": "1?Set(__supports_progress=1)", "Priority": "8", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010002-00000012", "content": "", "Application": "ExecIf", "Event": "Newexten", "Extension": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "__supports_progress", "Channel": "SIP/150010002-00000012", "Value": "1", "Event": "VarSet", "content": ""}, - {"AppData": "osvpi_proc_record_call,s-no,1(out,15001,150010002)", "Priority": "9", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Gosub", "Event": "Newexten", "Extension": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG1)", "Channel": "SIP/150010002-00000012", "Value": "out", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG2)", "Channel": "SIP/150010002-00000012", "Value": "15001", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG3)", "Channel": "SIP/150010002-00000012", "Value": "150010002", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "LOCAL(ARGC)", "Channel": "SIP/150010002-00000012", "Value": "3", "Event": "VarSet", "content": ""}, - {"AppData": "", "Priority": "1", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_proc_record_call", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Return", "Event": "Newexten", "Extension": "s-no"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "GOSUB_RETVAL", "Channel": "SIP/150010002-00000012", "Value": "", "Event": "VarSet", "content": ""}, - {"AppData": "l_tmp=", "Priority": "10", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "l_tmp", "Channel": "SIP/150010002-00000012", "Value": "", "Event": "VarSet", "content": ""}, - {"AppData": "1?Set(l_tmp=)", "Priority": "11", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010002-00000012", "content": "", "Application": "ExecIf", "Event": "Newexten", "Extension": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "l_tmp", "Channel": "SIP/150010002-00000012", "Value": "", "Event": "VarSet", "content": ""}, - {"AppData": "1?checkprivacy", "Priority": "12", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010002-00000012", "content": "", "Application": "GotoIf", "Event": "Newexten", "Extension": "203"}, - {"AppData": "0?Set(CALLERID(pres)=allowed_passed_screen)", "Priority": "16", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010002-00000012", "content": "", "Application": "ExecIf", "Event": "Newexten", "Extension": "203"}, - {"AppData": "0?Set(CALLERID(pres)=prohib_passed_screen)", "Priority": "17", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010002-00000012", "content": "", "Application": "ExecIf", "Event": "Newexten", "Extension": "203"}, - {"AppData": "0?Set(CHANNEL(musicclass)=)", "Priority": "18", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010002-00000012", "content": "", "Application": "ExecIf", "Event": "Newexten", "Extension": "203"}, - {"AppData": "1?continue", "Priority": "19", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010002-00000012", "content": "", "Application": "GotoIf", "Event": "Newexten", "Extension": "203"}, - {"AppData": "osvpi_proc_set_i18n_region,31,1", "Priority": "22", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Gosub", "Event": "Newexten", "Extension": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "LOCAL(ARGC)", "Channel": "SIP/150010002-00000012", "Value": "0", "Event": "VarSet", "content": ""}, - {"AppData": "i18n_region=NL", "Priority": "1", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_i18n_region", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "31"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "i18n_region", "Channel": "SIP/150010002-00000012", "Value": "NL", "Event": "VarSet", "content": ""}, - {"AppData": "", "Priority": "2", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_i18n_region", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Return", "Event": "Newexten", "Extension": "31"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "GOSUB_RETVAL", "Channel": "SIP/150010002-00000012", "Value": "", "Event": "VarSet", "content": ""}, - {"AppData": "osvpi_account_emergency_NL,203,1", "Priority": "23", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Goto", "Event": "Newexten", "Extension": "203"}, - {"AppData": "osvpi_account_no_emergency,203,1", "Priority": "1", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_account_emergency_NL", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Goto", "Event": "Newexten", "Extension": "203"}, - {"AppData": "osvpi_account,203,no-emergency", "Priority": "1", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_account_no_emergency", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Goto", "Event": "Newexten", "Extension": "203"}, - {"AppData": "osvpi_account_clean,203,1", "Priority": "24", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Goto", "Event": "Newexten", "Extension": "203"}, - {"AppData": "return=osvpi_account_clean", "Priority": "1", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "return", "Channel": "SIP/150010002-00000012", "Value": "osvpi_account_clean", "Event": "VarSet", "content": ""}, - {"AppData": "osvpi_return_to_canonical,31i203,1", "Priority": "2", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Goto", "Event": "Newexten", "Extension": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "INVALID_EXTEN", "Channel": "SIP/150010002-00000012", "Value": "31i203", "Event": "VarSet", "content": ""}, - {"AppData": "osvpi_account_clean,203,local", "Priority": "1", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_return_to_canonical", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Goto", "Event": "Newexten", "Extension": "i"}, - {"AppData": "0?extern", "Priority": "3", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Channel": "SIP/150010002-00000012", "content": "", "Application": "GotoIf", "Event": "Newexten", "Extension": "203"}, - {"AppData": "osvpi_proc_set_callerid,203,1(150010002,0,0)", "Priority": "4", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Gosub", "Event": "Newexten", "Extension": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG1)", "Channel": "SIP/150010002-00000012", "Value": "150010002", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG2)", "Channel": "SIP/150010002-00000012", "Value": "0", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG3)", "Channel": "SIP/150010002-00000012", "Value": "0", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "LOCAL(ARGC)", "Channel": "SIP/150010002-00000012", "Value": "3", "Event": "VarSet", "content": ""}, - {"AppData": "0?done", "Priority": "1", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010002-00000012", "content": "", "Application": "GotoIf", "Event": "Newexten", "Extension": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "ODBCROWS", "Channel": "SIP/150010002-00000012", "Value": "1", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "ODBCSTATUS", "Channel": "SIP/150010002-00000012", "Value": "SUCCESS", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "~ODBCFIELDS~", "Channel": "SIP/150010002-00000012", "Value": "set,privacy,name,number_int,number_ext", "Event": "VarSet", "content": ""}, - {"AppData": "ARRAY(LOCAL(set),LOCAL(privacy),LOCAL(name),LOCAL(number_int),LOCAL(number_ext))=1,0,Robert Murray,202,+31150010001", "Priority": "2", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "LOCAL(set)", "Channel": "SIP/150010002-00000012", "Value": "1", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "LOCAL(privacy)", "Channel": "SIP/150010002-00000012", "Value": "0", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "LOCAL(name)", "Channel": "SIP/150010002-00000012", "Value": "Robert Murray", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "LOCAL(number_int)", "Channel": "SIP/150010002-00000012", "Value": "202", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "LOCAL(number_ext)", "Channel": "SIP/150010002-00000012", "Value": "+31150010001", "Event": "VarSet", "content": ""}, - {"AppData": "0?presentation", "Priority": "3", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010002-00000012", "content": "", "Application": "GotoIf", "Event": "Newexten", "Extension": "203"}, - {"AppData": "CALLERID(pres)=allowed_passed_screen", "Priority": "4", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "203"}, - {"AppData": "CALLERID(name)=Robert Murray", "Priority": "5", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "203"}, - {"CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "Uniqueid": "63f2f9ce924a-1501834972.41", "CallerIDNum": "150010002", "Privilege": "call,all", "CallerIDName": "Robert Murray", "Channel": "SIP/150010002-00000012", "Event": "NewCallerid", "content": ""}, - {"AppData": "CALLERID(num)=202", "Priority": "6", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "203"}, - {"CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "Uniqueid": "63f2f9ce924a-1501834972.41", "CallerIDNum": "202", "Privilege": "call,all", "CallerIDName": "Robert Murray", "Channel": "SIP/150010002-00000012", "Event": "NewCallerid", "content": ""}, - {"AppData": "0?Set(CALLERID(pres)=prohib_passed_screen)", "Priority": "7", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010002-00000012", "content": "", "Application": "ExecIf", "Event": "Newexten", "Extension": "203"}, - {"AppData": "CALLERID(ANI)=202", "Priority": "8", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "203"}, - {"AppData": "osvpi_proc_set_callerid_internal,203,1", "Priority": "9", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Gosub", "Event": "Newexten", "Extension": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG1)", "Channel": "SIP/150010002-00000012", "Value": "", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG2)", "Channel": "SIP/150010002-00000012", "Value": "", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG3)", "Channel": "SIP/150010002-00000012", "Value": "", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "LOCAL(ARGC)", "Channel": "SIP/150010002-00000012", "Value": "0", "Event": "VarSet", "content": ""}, - {"AppData": "1?nop", "Priority": "1", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid_internal", "Channel": "SIP/150010002-00000012", "content": "", "Application": "GotoIf", "Event": "Newexten", "Extension": "203"}, - {"AppData": "0?Set(CALLERID(ANI)=20)", "Priority": "5", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid_internal", "Channel": "SIP/150010002-00000012", "content": "", "Application": "ExecIf", "Event": "Newexten", "Extension": "203"}, - {"AppData": "", "Priority": "6", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid_internal", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Return", "Event": "Newexten", "Extension": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "GOSUB_RETVAL", "Channel": "SIP/150010002-00000012", "Value": "", "Event": "VarSet", "content": ""}, - {"AppData": "", "Priority": "10", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Return", "Event": "Newexten", "Extension": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "GOSUB_RETVAL", "Channel": "SIP/150010002-00000012", "Value": "", "Event": "VarSet", "content": ""}, - {"AppData": "3?osvpi_account_call_int,203,1:i,1", "Priority": "5", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Channel": "SIP/150010002-00000012", "content": "", "Application": "GotoIf", "Event": "Newexten", "Extension": "203"}, - {"AppData": "osvpi_proc_check_limits,203,1", "Priority": "1", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Gosub", "Event": "Newexten", "Extension": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "LOCAL(ARGC)", "Channel": "SIP/150010002-00000012", "Value": "0", "Event": "VarSet", "content": ""}, - {"AppData": "DEBUG: call_limit: client 0/0 and account 0/4", "Priority": "1", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Channel": "SIP/150010002-00000012", "content": "", "Application": "NoOp", "Event": "Newexten", "Extension": "203"}, - {"AppData": "0?osvpi_handle_limit,203,client", "Priority": "2", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Channel": "SIP/150010002-00000012", "content": "", "Application": "GotoIf", "Event": "Newexten", "Extension": "203"}, - {"AppData": "0?osvpi_handle_limit,203,account", "Priority": "3", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Channel": "SIP/150010002-00000012", "content": "", "Application": "GotoIf", "Event": "Newexten", "Extension": "203"}, - {"AppData": "GROUP(account_lim)=150010002", "Priority": "4", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "203"}, - {"AppData": "GROUP(client_lim)=15001", "Priority": "5", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "203"}, - {"AppData": "", "Priority": "6", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Return", "Event": "Newexten", "Extension": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "GOSUB_RETVAL", "Channel": "SIP/150010002-00000012", "Value": "", "Event": "VarSet", "content": ""}, - {"AppData": "osvpi_proc_check_recurse,203,1(15001)", "Priority": "2", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Gosub", "Event": "Newexten", "Extension": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG1)", "Channel": "SIP/150010002-00000012", "Value": "15001", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "LOCAL(ARGC)", "Channel": "SIP/150010002-00000012", "Value": "1", "Event": "VarSet", "content": ""}, - {"AppData": "LOCAL(exten)=15001:203", "Priority": "1", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "LOCAL(exten)", "Channel": "SIP/150010002-00000012", "Value": "15001:203", "Event": "VarSet", "content": ""}, - {"AppData": "Recursion checking 15001:203 against ", "Priority": "2", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010002-00000012", "content": "", "Application": "NoOp", "Event": "Newexten", "Extension": "203"}, - {"AppData": "LOCAL(n)=0", "Priority": "3", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "LOCAL(n)", "Channel": "SIP/150010002-00000012", "Value": "0", "Event": "VarSet", "content": ""}, - {"AppData": "LOCAL(i)=1", "Priority": "4", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "LOCAL(i)", "Channel": "SIP/150010002-00000012", "Value": "1", "Event": "VarSet", "content": ""}, - {"AppData": "1?add", "Priority": "5", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010002-00000012", "content": "", "Application": "GotoIf", "Event": "Newexten", "Extension": "203"}, - {"AppData": "__EXTEN_LIST=15001:203 ", "Priority": "9", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "__EXTEN_LIST", "Channel": "SIP/150010002-00000012", "Value": "15001:203 ", "Event": "VarSet", "content": ""}, - {"AppData": "__EXTEN_LIST_LAST_EDIT_TIME=1501834972", "Priority": "10", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "__EXTEN_LIST_LAST_EDIT_TIME", "Channel": "SIP/150010002-00000012", "Value": "1501834972", "Event": "VarSet", "content": ""}, - {"AppData": "", "Priority": "11", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Return", "Event": "Newexten", "Extension": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "GOSUB_RETVAL", "Channel": "SIP/150010002-00000012", "Value": "", "Event": "VarSet", "content": ""}, - {"AppData": "__ORIG_EXTEN=203", "Priority": "3", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "__ORIG_EXTEN", "Channel": "SIP/150010002-00000012", "Value": "203", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "ODBCROWS", "Channel": "SIP/150010002-00000012", "Value": "0", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "ODBCSTATUS", "Channel": "SIP/150010002-00000012", "Value": "NODATA", "Event": "VarSet", "content": ""}, - {"AppData": "ARRAY(conference_id,user_password,admin_password,conference_language)=", "Priority": "4", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "conference_id", "Channel": "SIP/150010002-00000012", "Value": "", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "user_password", "Channel": "SIP/150010002-00000012", "Value": "", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "admin_password", "Channel": "SIP/150010002-00000012", "Value": "", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "conference_language", "Channel": "SIP/150010002-00000012", "Value": "", "Event": "VarSet", "content": ""}, - {"AppData": "0?osvpi_route_conference,ID,1", "Priority": "5", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-00000012", "content": "", "Application": "GotoIf", "Event": "Newexten", "Extension": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "ODBCROWS", "Channel": "SIP/150010002-00000012", "Value": "0", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "ODBCSTATUS", "Channel": "SIP/150010002-00000012", "Value": "NODATA", "Event": "VarSet", "content": ""}, - {"AppData": "ARRAY(route_id,client_timezone)=", "Priority": "6", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "route_id", "Channel": "SIP/150010002-00000012", "Value": "", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "client_timezone", "Channel": "SIP/150010002-00000012", "Value": "", "Event": "VarSet", "content": ""}, - {"AppData": "0?osvpi_route_root,203,restart", "Priority": "7", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-00000012", "content": "", "Application": "GotoIf", "Event": "Newexten", "Extension": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "ODBCROWS", "Channel": "SIP/150010002-00000012", "Value": "0", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "ODBCSTATUS", "Channel": "SIP/150010002-00000012", "Value": "NODATA", "Event": "VarSet", "content": ""}, - {"AppData": "ARRAY(all_extensions,limited_extensions,password,account_spy_language)=", "Priority": "8", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "all_extensions", "Channel": "SIP/150010002-00000012", "Value": "", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "limited_extensions", "Channel": "SIP/150010002-00000012", "Value": "", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "password", "Channel": "SIP/150010002-00000012", "Value": "", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "account_spy_language", "Channel": "SIP/150010002-00000012", "Value": "", "Event": "VarSet", "content": ""}, - {"AppData": "0?osvpi_account_spy,203,1", "Priority": "9", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-00000012", "content": "", "Application": "GotoIf", "Event": "Newexten", "Extension": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "ODBCROWS", "Channel": "SIP/150010002-00000012", "Value": "1", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "ODBCSTATUS", "Channel": "SIP/150010002-00000012", "Value": "SUCCESS", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "~ODBCFIELDS~", "Channel": "SIP/150010002-00000012", "Value": "interfaces", "Event": "VarSet", "content": ""}, - {"AppData": "ARRAY(interfaces)=Local/ID710152@osvpi_route_phoneaccount", "Priority": "10", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "interfaces", "Channel": "SIP/150010002-00000012", "Value": "Local/ID710152@osvpi_route_phoneaccount", "Event": "VarSet", "content": ""}, - {"AppData": "0?osvpi_handle_unallocated,203,1", "Priority": "11", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-00000012", "content": "", "Application": "GotoIf", "Event": "Newexten", "Extension": "203"}, - {"AppData": "Local/ID710152@osvpi_route_phoneaccount", "Priority": "12", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-00000012", "content": "", "Application": "Dial", "Event": "Newexten", "Extension": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "DIALSTATUS", "Channel": "SIP/150010002-00000012", "Value": "", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "DIALEDPEERNUMBER", "Channel": "SIP/150010002-00000012", "Value": "", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "DIALEDPEERNAME", "Channel": "SIP/150010002-00000012", "Value": "", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "ANSWEREDTIME", "Channel": "SIP/150010002-00000012", "Value": "", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "DIALEDTIME", "Channel": "SIP/150010002-00000012", "Value": "", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.42", "CallerIDNum": "", "ChannelStateDesc": "Down", "CallerIDName": "", "Context": "osvpi_route_phoneaccount", "ChannelState": "0", "Exten": "ID710152", "Privilege": "call,all", "AccountCode": "", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;1", "content": "", "Event": "Newchannel"}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "CallerIDNum": "", "ChannelStateDesc": "Ring", "CallerIDName": "", "Context": "osvpi_route_phoneaccount", "ChannelState": "4", "Exten": "ID710152", "Privilege": "call,all", "AccountCode": "", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "content": "", "Event": "Newchannel"}, - {"Uniqueid": "63f2f9ce924a-1501834972.42", "Privilege": "dialplan,all", "Variable": "DIALEDPEERNUMBER", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;1", "Value": "ID710152@osvpi_route_phoneaccount", "Event": "VarSet", "content": ""}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Uniqueid": "63f2f9ce924a-1501834972.42", "CallerIDNum": "203", "Privilege": "call,all", "CallerIDName": "", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;1", "Event": "NewCallerid", "content": ""}, - {"LocalOptimization": "Yes", "Uniqueid2": "63f2f9ce924a-1501834972.43", "Privilege": "call,all", "content": "", "Channel1": "Local/ID710152@osvpi_route_phoneaccount-0000000b;1", "Uniqueid1": "63f2f9ce924a-1501834972.42", "Channel2": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID710152"}, - {"CallerIDNum": "202", "Event": "Dial", "CallerIDName": "Robert Murray", "UniqueID": "63f2f9ce924a-1501834972.41", "ConnectedLineName": "", "Privilege": "call,all", "Dialstring": "ID710152@osvpi_route_phoneaccount", "DestUniqueID": "63f2f9ce924a-1501834972.42", "Channel": "SIP/150010002-00000012", "SubEvent": "Begin", "content": "", "ConnectedLineNum": "", "Destination": "Local/ID710152@osvpi_route_phoneaccount-0000000b;1"}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "ODBCROWS", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "1", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "ODBCSTATUS", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "SUCCESS", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "~ODBCFIELDS~", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account", "Event": "VarSet", "content": ""}, - {"AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=150010003,accountid,dutch,from,,0", "Priority": "1", "Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "ID710152"}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "__dst_account_id", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "150010003", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "l_mangle_did", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "accountid", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "l_mangle_cli", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "dutch", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "l_cli_header", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "from", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "l_primary_pickupgroup", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "app_account", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "0", "Event": "VarSet", "content": ""}, - {"AppData": "0?vialer", "Priority": "2", "Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "content": "", "Application": "GotoIf", "Event": "Newexten", "Extension": "ID710152"}, - {"AppData": "_PICKUPMARK=", "Priority": "3", "Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "ID710152"}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "_PICKUPMARK", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "", "Event": "VarSet", "content": ""}, - {"AppData": "l_trunk=0", "Priority": "4", "Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "ID710152"}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "l_trunk", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "0", "Event": "VarSet", "content": ""}, - {"AppData": "osvpi_route_account,ID710152,1", "Priority": "5", "Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "content": "", "Application": "Goto", "Event": "Newexten", "Extension": "ID710152"}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "ODBCROWS", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "1", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "ODBCSTATUS", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "SUCCESS", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "~ODBCFIELDS~", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "proxy", "Event": "VarSet", "content": ""}, - {"AppData": "ARRAY(l_proxy)=172.20.0.13", "Priority": "1", "Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "ID710152"}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "l_proxy", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "172.20.0.13", "Event": "VarSet", "content": ""}, - {"AppData": "osvpi_proc_mangle_number,accountid,1(150010003,203)", "Priority": "2", "Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "content": "", "Application": "Gosub", "Event": "Newexten", "Extension": "ID710152"}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG1)", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "150010003", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG2)", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "203", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "LOCAL(ARGC)", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "2", "Event": "VarSet", "content": ""}, - {"AppData": "MANGLED_EXTEN=150010003", "Priority": "1", "Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "accountid"}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "MANGLED_EXTEN", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "150010003", "Event": "VarSet", "content": ""}, - {"AppData": "", "Priority": "2", "Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "content": "", "Application": "Return", "Event": "Newexten", "Extension": "accountid"}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "GOSUB_RETVAL", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "", "Event": "VarSet", "content": ""}, - {"AppData": "l_did=150010003", "Priority": "3", "Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "ID710152"}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "l_did", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "150010003", "Event": "VarSet", "content": ""}, - {"AppData": "osvpi_proc_mangle_number,dutch,1(150010003,202)", "Priority": "4", "Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "content": "", "Application": "Gosub", "Event": "Newexten", "Extension": "ID710152"}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG1)", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "150010003", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG2)", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "202", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "LOCAL(ARGC)", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "2", "Event": "VarSet", "content": ""}, - {"AppData": "1?fullzero,1", "Priority": "1", "Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "content": "", "Application": "GotoIf", "Event": "Newexten", "Extension": "dutch"}, - {"AppData": "MANGLED_EXTEN=202", "Priority": "1", "Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "fullzero"}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "MANGLED_EXTEN", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "202", "Event": "VarSet", "content": ""}, - {"AppData": "", "Priority": "2", "Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "content": "", "Application": "Return", "Event": "Newexten", "Extension": "fullzero"}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "GOSUB_RETVAL", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "", "Event": "VarSet", "content": ""}, - {"AppData": "l_mangle_cli_hdr=from-dutch", "Priority": "5", "Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "ID710152"}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "l_mangle_cli_hdr", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "from-dutch", "Event": "VarSet", "content": ""}, - {"AppData": "l_fromuser=", "Priority": "6", "Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "ID710152"}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "l_fromuser", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "", "Event": "VarSet", "content": ""}, - {"AppData": "1?Set(l_fromuser=202)", "Priority": "7", "Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "content": "", "Application": "ExecIf", "Event": "Newexten", "Extension": "ID710152"}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "l_fromuser", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "202", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "ODBCROWS", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "1", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "ODBCSTATUS", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "SUCCESS", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "~ODBCFIELDS~", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "IF((SELECT 1 FROM baseaccount_account ba INNER JOIN userdestination_selecteduserdestination udsud ON udsud.phoneaccount_id = ba.id INNER JOIN userdestination_userdestination udud ON udud.id = udsud.userdestination_id INNER JOIN crm_cloudctiuser cccu O", "Event": "VarSet", "content": ""}, - {"AppData": "ARRAY(cloudcti)=0", "Priority": "8", "Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "ID710152"}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "cloudcti", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "0", "Event": "VarSet", "content": ""}, - {"AppData": "1?skipcloudcti", "Priority": "9", "Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "content": "", "Application": "GotoIf", "Event": "Newexten", "Extension": "ID710152"}, - {"AppData": "osvpi_proc_proxy_out,203,1", "Priority": "11", "Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "content": "", "Application": "Goto", "Event": "Newexten", "Extension": "ID710152"}, - {"AppData": "X-Accountcode: 150010003", "Priority": "1", "Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "content": "", "Application": "SIPAddHeader", "Event": "Newexten", "Extension": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "__SIPADDHEADER01", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "X-Accountcode: 150010003", "Event": "VarSet", "content": ""}, - {"AppData": "X-Insecure-Protection: geheim", "Priority": "2", "Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "content": "", "Application": "SIPAddHeader", "Event": "Newexten", "Extension": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "__SIPADDHEADER02", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "X-Insecure-Protection: geheim", "Event": "VarSet", "content": ""}, - {"AppData": "X-Mangle-Cli: from-dutch", "Priority": "3", "Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "content": "", "Application": "SIPAddHeader", "Event": "Newexten", "Extension": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "__SIPADDHEADER03", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "X-Mangle-Cli: from-dutch", "Event": "VarSet", "content": ""}, - {"AppData": "_dial_options_callaccept=", "Priority": "4", "Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "_dial_options_callaccept", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "", "Event": "VarSet", "content": ""}, - {"AppData": "_dial_options_callnotify=", "Priority": "5", "Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "_dial_options_callnotify", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "", "Event": "VarSet", "content": ""}, - {"AppData": "0?Set(l_proxy=opensipsfg)", "Priority": "6", "Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "content": "", "Application": "ExecIf", "Event": "Newexten", "Extension": "203"}, - {"AppData": "l_extra_options=", "Priority": "7", "Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "l_extra_options", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "", "Event": "VarSet", "content": ""}, - {"AppData": "SIP/150010003/150010003/172.20.0.13!!202,,", "Priority": "8", "Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "content": "", "Application": "Dial", "Event": "Newexten", "Extension": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "DIALSTATUS", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "DIALEDPEERNUMBER", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "DIALEDPEERNAME", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "ANSWEREDTIME", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "DIALEDTIME", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.44", "CallerIDNum": "", "ChannelStateDesc": "Down", "CallerIDName": "", "Context": "osvpi_account", "ChannelState": "0", "Exten": "", "Privilege": "call,all", "AccountCode": "150010003", "Channel": "SIP/150010003-00000013", "content": "", "Event": "Newchannel"}, - {"Uniqueid": "63f2f9ce924a-1501834972.44", "Privilege": "dialplan,all", "Variable": "SIPCALLID", "Channel": "SIP/150010003-00000013", "Value": "4c6a7ff3053c41f901f8c79003bc410c@test.voipgrid.nl", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.44", "Privilege": "dialplan,all", "Variable": "__client_id", "Channel": "SIP/150010003-00000013", "Value": "15001", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.44", "Privilege": "dialplan,all", "Variable": "__account_id", "Channel": "SIP/150010003-00000013", "Value": "150010003", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.44", "Privilege": "dialplan,all", "Variable": "__record_call", "Channel": "SIP/150010003-00000013", "Value": "no", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.44", "Privilege": "dialplan,all", "Variable": "__intprefix", "Channel": "SIP/150010003-00000013", "Value": "31", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.44", "Privilege": "dialplan,all", "Variable": "__limit_account", "Channel": "SIP/150010003-00000013", "Value": "4", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.44", "Privilege": "dialplan,all", "Variable": "__limit_client", "Channel": "SIP/150010003-00000013", "Value": "0", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.44", "Privilege": "dialplan,all", "Variable": "__hide_ext_cliname", "Channel": "SIP/150010003-00000013", "Value": "1", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.44", "Privilege": "dialplan,all", "Variable": "__TRANSFER_CONTEXT", "Channel": "SIP/150010003-00000013", "Value": "osvpi_account_transfer", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.44", "Privilege": "dialplan,all", "Variable": "DIALEDPEERNUMBER", "Channel": "SIP/150010003-00000013", "Value": "150010003/150010003/172.20.0.13!!202", "Event": "VarSet", "content": ""}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Uniqueid": "63f2f9ce924a-1501834972.44", "CallerIDNum": "203", "Privilege": "call,all", "CallerIDName": "", "Channel": "SIP/150010003-00000013", "Event": "NewCallerid", "content": ""}, - {"CallerIDNum": "202", "Event": "Dial", "CallerIDName": "Robert Murray", "UniqueID": "63f2f9ce924a-1501834972.43", "ConnectedLineName": "", "Privilege": "call,all", "Dialstring": "150010003/150010003/172.20.0.13!!202", "DestUniqueID": "63f2f9ce924a-1501834972.44", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "SubEvent": "Begin", "content": "", "ConnectedLineNum": "203", "Destination": "SIP/150010003-00000013"}, - {"Uniqueid": "63f2f9ce924a-1501834972.44", "CallerIDNum": "203", "Privilege": "call,all", "Event": "Newstate", "CallerIDName": "", "Channel": "SIP/150010003-00000013", "ConnectedLineName": "Robert Murray", "content": "", "ChannelState": "5", "ConnectedLineNum": "202", "ChannelStateDesc": "Ringing"}, - {"Uniqueid": "63f2f9ce924a-1501834972.42", "CallerIDNum": "203", "Privilege": "call,all", "Event": "Newstate", "CallerIDName": "", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;1", "ConnectedLineName": "Robert Murray", "content": "", "ChannelState": "5", "ConnectedLineNum": "202", "ChannelStateDesc": "Ringing"}, - {"Uniqueid": "63f2f9ce924a-1501834972.44", "CallerIDNum": "203", "Privilege": "call,all", "Event": "Newstate", "CallerIDName": "", "Channel": "SIP/150010003-00000013", "ConnectedLineName": "Robert Murray", "content": "", "ChannelState": "6", "ConnectedLineNum": "202", "ChannelStateDesc": "Up"}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "DIALSTATUS", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "ANSWER", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "DIALEDPEERNAME", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "SIP/150010003-00000013", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "DIALEDPEERNUMBER", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "150010003/150010003/172.20.0.13!!202", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "SIP/150010003-00000013", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.44", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "Channel": "SIP/150010003-00000013", "Value": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "CallerIDNum": "202", "Privilege": "call,all", "Event": "Newstate", "CallerIDName": "Robert Murray", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "ConnectedLineName": "", "content": "", "ChannelState": "6", "ConnectedLineNum": "203", "ChannelStateDesc": "Up"}, - {"Uniqueid": "63f2f9ce924a-1501834972.42", "CallerIDNum": "203", "Privilege": "call,all", "Event": "Newstate", "CallerIDName": "", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;1", "ConnectedLineName": "Robert Murray", "content": "", "ChannelState": "6", "ConnectedLineNum": "202", "ChannelStateDesc": "Up"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "DIALSTATUS", "Channel": "SIP/150010002-00000012", "Value": "ANSWER", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "DIALEDPEERNAME", "Channel": "SIP/150010002-00000012", "Value": "Local/ID710152@osvpi_route_phoneaccount-0000000b;1", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "DIALEDPEERNUMBER", "Channel": "SIP/150010002-00000012", "Value": "ID710152@osvpi_route_phoneaccount", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "Channel": "SIP/150010002-00000012", "Value": "Local/ID710152@osvpi_route_phoneaccount-0000000b;1", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.42", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;1", "Value": "SIP/150010002-00000012", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "CallerIDNum": "202", "Privilege": "call,all", "Event": "Newstate", "CallerIDName": "Robert Murray", "Channel": "SIP/150010002-00000012", "ConnectedLineName": "", "content": "", "ChannelState": "6", "ConnectedLineNum": "", "ChannelStateDesc": "Up"}, - {"Uniqueid": "63f2f9ce924a-1501834972.44", "Privilege": "call,all", "OldAccountCode": "150010002", "AccountCode": "150010002", "Channel": "SIP/150010003-00000013", "Event": "NewAccountCode", "content": ""}, - {"Uniqueid2": "63f2f9ce924a-1501834972.44", "Bridgetype": "core", "Bridgestate": "Link", "Privilege": "call,all", "CallerID1": "202", "Channel1": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Uniqueid1": "63f2f9ce924a-1501834972.43", "Channel2": "SIP/150010003-00000013", "CallerID2": "203", "Event": "Bridge", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "SIP/150010003-00000013", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "BRIDGEPVTCALLID", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "4c6a7ff3053c41f901f8c79003bc410c@test.voipgrid.nl", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.44", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "Channel": "SIP/150010003-00000013", "Value": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "SIP/150010003-00000013", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "BRIDGEPVTCALLID", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "4c6a7ff3053c41f901f8c79003bc410c@test.voipgrid.nl", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.44", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "Channel": "SIP/150010003-00000013", "Value": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.42", "Privilege": "call,all", "OldAccountCode": "150010002", "AccountCode": "150010002", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;1", "Event": "NewAccountCode", "content": ""}, - {"Uniqueid2": "63f2f9ce924a-1501834972.42", "Bridgetype": "core", "Bridgestate": "Link", "Privilege": "call,all", "CallerID1": "202", "Channel1": "SIP/150010002-00000012", "Uniqueid1": "63f2f9ce924a-1501834972.41", "Channel2": "Local/ID710152@osvpi_route_phoneaccount-0000000b;1", "CallerID2": "203", "Event": "Bridge", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "Channel": "SIP/150010002-00000012", "Value": "Local/ID710152@osvpi_route_phoneaccount-0000000b;1", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.42", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;1", "Value": "SIP/150010002-00000012", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.42", "Privilege": "dialplan,all", "Variable": "BRIDGEPVTCALLID", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;1", "Value": "c3eec155-8f3813d7@10.13.36.116", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "Channel": "SIP/150010002-00000012", "Value": "Local/ID710152@osvpi_route_phoneaccount-0000000b;1", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.42", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;1", "Value": "SIP/150010002-00000012", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.42", "Privilege": "dialplan,all", "Variable": "BRIDGEPVTCALLID", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;1", "Value": "c3eec155-8f3813d7@10.13.36.116", "Event": "VarSet", "content": ""}, - {"OriginalState": "Up", "Privilege": "call,all", "Clone": "SIP/150010003-00000013", "CloneState": "Up", "Original": "Local/ID710152@osvpi_route_phoneaccount-0000000b;1", "Event": "Masquerade", "content": ""}, - {"Newname": "SIP/150010003-00000013", "Uniqueid": "63f2f9ce924a-1501834972.44", "Privilege": "call,all", "Channel": "SIP/150010003-00000013", "Event": "Rename", "content": ""}, - {"Newname": "SIP/150010003-00000013", "Uniqueid": "63f2f9ce924a-1501834972.42", "Privilege": "call,all", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;1", "Event": "Rename", "content": ""}, - {"Newname": "Local/ID710152@osvpi_route_phoneaccount-0000000b;1", "Uniqueid": "63f2f9ce924a-1501834972.44", "Privilege": "call,all", "Channel": "SIP/150010003-00000013", "Event": "Rename", "content": ""}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Uniqueid": "63f2f9ce924a-1501834972.42", "CallerIDNum": "203", "Privilege": "call,all", "CallerIDName": "", "Channel": "SIP/150010003-00000013", "Event": "NewCallerid", "content": ""}, - {"Uniqueid2": "63f2f9ce924a-1501834972.44", "Bridgetype": "core", "Bridgestate": "Unlink", "Privilege": "call,all", "CallerID1": "202", "Channel1": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Uniqueid1": "63f2f9ce924a-1501834972.43", "Channel2": "Local/ID710152@osvpi_route_phoneaccount-0000000b;1", "CallerID2": "203", "Event": "Bridge", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "ANSWEREDTIME", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "0", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "Channel": "SIP/150010002-00000012", "Value": "SIP/150010003-00000013", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "DIALEDTIME", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "3", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "BRIDGEPVTCALLID", "Channel": "SIP/150010002-00000012", "Value": "4c6a7ff3053c41f901f8c79003bc410c@test.voipgrid.nl", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.42", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "Channel": "SIP/150010003-00000013", "Value": "SIP/150010002-00000012", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.42", "Privilege": "dialplan,all", "Variable": "BRIDGEPVTCALLID", "Channel": "SIP/150010003-00000013", "Value": "c3eec155-8f3813d7@10.13.36.116", "Event": "VarSet", "content": ""}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "call,all", "Event": "HangupRequest", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.44", "CallerIDNum": "203", "Event": "Hangup", "CallerIDName": "", "Cause": "16", "content": "", "Privilege": "call,all", "ConnectedLineName": "Robert Murray", "AccountCode": "150010002", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;1", "Cause-txt": "Normal Clearing", "ConnectedLineNum": "202"}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Variable": "DIALSTATUS", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Value": "ANSWER", "Event": "VarSet", "content": ""}, - {"DialStatus": "ANSWER", "Privilege": "call,all", "Event": "Dial", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "SubEvent": "End", "UniqueID": "63f2f9ce924a-1501834972.43", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "call,all", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Cause": "16", "Event": "SoftHangupRequest", "content": ""}, - {"AppData": "1?nosip", "Priority": "1", "Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Context": "handlers", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "content": "", "Application": "GotoIf", "Event": "Newexten", "Extension": "onhangup"}, - {"AppData": "0?osvpi_proc_httptouch,s,1()", "Priority": "3", "Uniqueid": "63f2f9ce924a-1501834972.43", "Privilege": "dialplan,all", "Context": "handlers", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "content": "", "Application": "GosubIf", "Event": "Newexten", "Extension": "onhangup"}, - {"Uniqueid": "63f2f9ce924a-1501834972.43", "CallerIDNum": "202", "Event": "Hangup", "CallerIDName": "Robert Murray", "Cause": "16", "content": "", "Privilege": "call,all", "ConnectedLineName": "", "AccountCode": "150010002", "Channel": "Local/ID710152@osvpi_route_phoneaccount-0000000b;2", "Cause-txt": "Normal Clearing", "ConnectedLineNum": "203"}, - {"DLSR": "0.0000(sec)", "IAJitter": "0", "SenderSSRC": "0", "PT": "200(Sender Report)", "ReceptionReports": "1", "HighestSequence": "16253", "FractionLost": "0", "From": "172.20.0.254:47517", "PacketsLost": "0", "Privilege": "reporting,all", "content": "", "LastSR": "0.0000000000", "SequenceNumberCycles": "0", "Event": "RTCPReceived"}, - {"Privilege": "call,all", "State": "Start", "Event": "MusicOnHold", "Channel": "SIP/150010003-00000013", "Class": "default", "UniqueID": "63f2f9ce924a-1501834972.42", "content": ""}, - {"DLSR": "2.5060 (sec)", "OurSSRC": "1299877197", "IAJitter": "0.0004", "SentNTP": "1501834980.1494552576", "SentPackets": "122", "SentOctets": "19520", "content": "", "CumulativeLoss": "127", "FractionLost": "130", "Privilege": "reporting,all", "To": "172.20.0.254:47517", "TheirLastSR": "2909035865", "Event": "RTCPSent", "SentRTP": "19520"}, - {"DLSR": "0.0000(sec)", "IAJitter": "22", "SenderSSRC": "4179755167", "PT": "200(Sender Report)", "ReceptionReports": "1", "HighestSequence": "25331", "FractionLost": "159", "From": "172.20.0.254:47517", "PacketsLost": "8953", "Privilege": "reporting,all", "content": "", "LastSR": "0.0000000000", "SequenceNumberCycles": "0", "Event": "RTCPReceived"}, - {"Uniqueid": "63f2f9ce924a-1501834972.42", "Privilege": "dialplan,all", "Variable": "SIPREFERRINGCONTEXT", "Channel": "SIP/150010003-00000013", "Value": "osvpi_account", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.42", "Privilege": "dialplan,all", "Variable": "SIPREFERREDBYHDR", "Channel": "SIP/150010003-00000013", "Value": "\"Docker\" ", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "BLINDTRANSFER", "Channel": "SIP/150010002-00000012", "Value": "SIP/150010003-00000013", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.42", "Privilege": "dialplan,all", "Variable": "BLINDTRANSFER", "Channel": "SIP/150010003-00000013", "Value": "SIP/150010002-00000012", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.42", "Privilege": "dialplan,all", "Variable": "SIPDOMAIN", "Channel": "SIP/150010003-00000013", "Value": "10.13.37.110", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.42", "Privilege": "dialplan,all", "Variable": "SIPTRANSFER", "Channel": "SIP/150010003-00000013", "Value": "yes", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.42", "Privilege": "dialplan,all", "Variable": "_SIPTRANSFER", "Channel": "SIP/150010003-00000013", "Value": "yes", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.42", "Privilege": "dialplan,all", "Variable": "_SIPTRANSFER_REFERER", "Channel": "SIP/150010003-00000013", "Value": "", "Event": "VarSet", "content": ""}, - {"Privilege": "call,all", "State": "Stop", "Event": "MusicOnHold", "Channel": "SIP/150010003-00000013", "UniqueID": "63f2f9ce924a-1501834972.42", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "CallerIDNum": "", "ChannelStateDesc": "Up", "CallerIDName": "", "Context": "osvpi_route_phoneaccount", "ChannelState": "6", "Exten": "", "Privilege": "call,all", "AccountCode": "150010002", "Channel": "AsyncGoto/SIP/150010003-00000013", "content": "", "Event": "Newchannel"}, - {"OriginalState": "Up", "Privilege": "call,all", "Clone": "SIP/150010003-00000013", "CloneState": "Up", "Original": "AsyncGoto/SIP/150010003-00000013", "Event": "Masquerade", "content": ""}, - {"Newname": "SIP/150010003-00000013", "Uniqueid": "63f2f9ce924a-1501834972.42", "Privilege": "call,all", "Channel": "SIP/150010003-00000013", "Event": "Rename", "content": ""}, - {"Newname": "SIP/150010003-00000013", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "call,all", "Channel": "AsyncGoto/SIP/150010003-00000013", "Event": "Rename", "content": ""}, - {"Newname": "AsyncGoto/SIP/150010003-00000013", "Uniqueid": "63f2f9ce924a-1501834972.42", "Privilege": "call,all", "Channel": "SIP/150010003-00000013", "Event": "Rename", "content": ""}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Uniqueid": "63f2f9ce924a-1501834980.45", "CallerIDNum": "203", "Privilege": "call,all", "CallerIDName": "", "Channel": "SIP/150010003-00000013", "Event": "NewCallerid", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "TransferType": "Blind", "TransferMethod": "SIP", "TransferContext": "osvpi_account_transfer", "TargetUniqueid": "63f2f9ce924a-1501834972.42", "SIP-Callid": "c3eec155-8f3813d7@10.13.36.116", "content": "", "Privilege": "call,all", "TargetChannel": "AsyncGoto/SIP/150010003-00000013", "Channel": "SIP/150010002-00000012", "Event": "Transfer", "TransferExten": "201"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "Channel": "SIP/150010002-00000012", "Value": "AsyncGoto/SIP/150010003-00000013", "Event": "VarSet", "content": ""}, - {"AppData": "DEBUG: XFER: accountcode=150010002 client_id=15001 account_id=150010002", "Priority": "1", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010003-00000013", "content": "", "Application": "NoOp", "Event": "Newexten", "Extension": "201"}, - {"Uniqueid": "63f2f9ce924a-1501834972.42", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "Channel": "AsyncGoto/SIP/150010003-00000013", "Value": "SIP/150010002-00000012", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.42", "Privilege": "dialplan,all", "Variable": "BRIDGEPVTCALLID", "Channel": "AsyncGoto/SIP/150010003-00000013", "Value": "c3eec155-8f3813d7@10.13.36.116", "Event": "VarSet", "content": ""}, - {"AppData": "1?accountinfo", "Priority": "2", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010003-00000013", "content": "", "Application": "GotoIf", "Event": "Newexten", "Extension": "201"}, - {"AppData": "l_changed=1", "Priority": "6", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010003-00000013", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "201"}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "l_changed", "Channel": "SIP/150010003-00000013", "Value": "1", "Event": "VarSet", "content": ""}, - {"AppData": "ATe", "Priority": "7", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010003-00000013", "content": "", "Application": "ForkCDR", "Event": "Newexten", "Extension": "201"}, - {"AppData": "1?blindxfer:code302or482", "Priority": "8", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010003-00000013", "content": "", "Application": "GotoIf", "Event": "Newexten", "Extension": "201"}, - {"AppData": "DEBUG: REFER: SIPTRANSFER=yes BLINDTRANSFER=SIP/150010002-00000012 BRIDGEPEER=SIP/150010002-00000012 SIPTRANSFER_REFERER=", "Priority": "9", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010003-00000013", "content": "", "Application": "NoOp", "Event": "Newexten", "Extension": "201"}, - {"AppData": "seconds_since_last_exten_list_addition=8", "Priority": "10", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010003-00000013", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "201"}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "seconds_since_last_exten_list_addition", "Channel": "SIP/150010003-00000013", "Value": "8", "Event": "VarSet", "content": ""}, - {"AppData": "1?Set(__EXTEN_LIST=)", "Priority": "11", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010003-00000013", "content": "", "Application": "ExecIf", "Event": "Newexten", "Extension": "201"}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "__EXTEN_LIST", "Channel": "SIP/150010003-00000013", "Value": "", "Event": "VarSet", "content": ""}, - {"AppData": "l_tmp=", "Priority": "12", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010003-00000013", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "201"}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "l_tmp", "Channel": "SIP/150010003-00000013", "Value": "", "Event": "VarSet", "content": ""}, - {"AppData": "1?Set(l_tmp=150010002@10.13.37.110)", "Priority": "13", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010003-00000013", "content": "", "Application": "ExecIf", "Event": "Newexten", "Extension": "201"}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "l_tmp", "Channel": "SIP/150010003-00000013", "Value": "150010002@10.13.37.110", "Event": "VarSet", "content": ""}, - {"AppData": "0?Hangup()", "Priority": "14", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010003-00000013", "content": "", "Application": "ExecIf", "Event": "Newexten", "Extension": "201"}, - {"AppData": "l_tmp=150010002", "Priority": "15", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010003-00000013", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "201"}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "l_tmp", "Channel": "SIP/150010003-00000013", "Value": "150010002", "Event": "VarSet", "content": ""}, - {"AppData": "1?arefersb", "Priority": "16", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010003-00000013", "content": "", "Application": "GotoIf", "Event": "Newexten", "Extension": "201"}, - {"AppData": "New caller is 150010002 (unchanged)", "Priority": "19", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010003-00000013", "content": "", "Application": "NoOp", "Event": "Newexten", "Extension": "201"}, - {"AppData": "l_changed=0", "Priority": "20", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010003-00000013", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "201"}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "l_changed", "Channel": "SIP/150010003-00000013", "Value": "0", "Event": "VarSet", "content": ""}, - {"AppData": "proceed", "Priority": "21", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010003-00000013", "content": "", "Application": "Goto", "Event": "Newexten", "Extension": "201"}, - {"AppData": "__TRANSFER_CONTEXT=osvpi_account_transfer", "Priority": "33", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010003-00000013", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "201"}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "__TRANSFER_CONTEXT", "Channel": "SIP/150010003-00000013", "Value": "osvpi_account_transfer", "Event": "VarSet", "content": ""}, - {"AppData": "user_privacy=0", "Priority": "34", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010003-00000013", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "201"}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "user_privacy", "Channel": "SIP/150010003-00000013", "Value": "0", "Event": "VarSet", "content": ""}, - {"AppData": "is_transfer=1", "Priority": "35", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010003-00000013", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "201"}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "is_transfer", "Channel": "SIP/150010003-00000013", "Value": "1", "Event": "VarSet", "content": ""}, - {"Uniqueid2": "63f2f9ce924a-1501834972.42", "Bridgetype": "core", "Bridgestate": "Unlink", "Privilege": "call,all", "Event": "Bridge", "Channel1": "SIP/150010002-00000012", "Uniqueid1": "63f2f9ce924a-1501834972.41", "Channel2": "AsyncGoto/SIP/150010003-00000013", "CallerID1": "202", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "ANSWEREDTIME", "Channel": "SIP/150010002-00000012", "Value": "5", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "DIALEDTIME", "Channel": "SIP/150010002-00000012", "Value": "8", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.42", "CallerIDNum": "", "Event": "Hangup", "CallerIDName": "", "Cause": "16", "content": "", "Privilege": "call,all", "ConnectedLineName": "", "AccountCode": "150010002", "Channel": "AsyncGoto/SIP/150010003-00000013", "Cause-txt": "Normal Clearing", "ConnectedLineNum": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "ODBCROWS", "Channel": "SIP/150010003-00000013", "Value": "1", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "ODBCSTATUS", "Channel": "SIP/150010003-00000013", "Value": "SUCCESS", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "~ODBCFIELDS~", "Channel": "SIP/150010003-00000013", "Value": "client_id,intprefix,internal_number,limit_account,limit_client", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Variable": "DIALSTATUS", "Channel": "SIP/150010002-00000012", "Value": "ANSWER", "Event": "VarSet", "content": ""}, - {"DialStatus": "ANSWER", "Privilege": "call,all", "Event": "Dial", "Channel": "SIP/150010002-00000012", "SubEvent": "End", "UniqueID": "63f2f9ce924a-1501834972.41", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "call,all", "Channel": "SIP/150010002-00000012", "Cause": "16", "Event": "SoftHangupRequest", "content": ""}, - {"AppData": "0?nosip", "Priority": "1", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "handlers", "Channel": "SIP/150010002-00000012", "content": "", "Application": "GotoIf", "Event": "Newexten", "Extension": "onhangup"}, - {"AppData": "LOG: rtpqos: caller=(null);asterisk=0.0.0.0:10162;ssrc=2100715305;themssrc=0;lp=0;rxjitter=0.000000;rxcount=0;txjitter=0.000000;txcount=0;rlp=0;rtt=0.000000;billsec=0", "Priority": "2", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "handlers", "Channel": "SIP/150010002-00000012", "content": "", "Application": "NoOp", "Event": "Newexten", "Extension": "onhangup"}, - {"AppData": "0?osvpi_proc_httptouch,s,1()", "Priority": "3", "Uniqueid": "63f2f9ce924a-1501834972.41", "Privilege": "dialplan,all", "Context": "handlers", "Channel": "SIP/150010002-00000012", "content": "", "Application": "GosubIf", "Event": "Newexten", "Extension": "onhangup"}, - {"Uniqueid": "63f2f9ce924a-1501834972.41", "CallerIDNum": "202", "Event": "Hangup", "CallerIDName": "Robert Murray", "Cause": "16", "content": "", "Privilege": "call,all", "ConnectedLineName": "", "AccountCode": "150010002", "Channel": "SIP/150010002-00000012", "Cause-txt": "Normal Clearing", "ConnectedLineNum": ""}, - {"AppData": "0?Set(ARRAY(__client_id,__intprefix,dummy,__limit_account,__limit_client)=15001,31,202,4,0)", "Priority": "36", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010003-00000013", "content": "", "Application": "ExecIf", "Event": "Newexten", "Extension": "201"}, - {"AppData": "0?Set(CHANNEL(musicclass)=)", "Priority": "37", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010003-00000013", "content": "", "Application": "ExecIf", "Event": "Newexten", "Extension": "201"}, - {"AppData": "DEBUG: CLI: name=\"\" num=203 ANI= presence=allowed_not_screened", "Priority": "38", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010003-00000013", "content": "", "Application": "NoOp", "Event": "Newexten", "Extension": "201"}, - {"AppData": "osvpi_account,201,checkspeeddial", "Priority": "39", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Channel": "SIP/150010003-00000013", "content": "", "Application": "Goto", "Event": "Newexten", "Extension": "201"}, - {"AppData": "1?continue", "Priority": "19", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010003-00000013", "content": "", "Application": "GotoIf", "Event": "Newexten", "Extension": "201"}, - {"AppData": "osvpi_proc_set_i18n_region,31,1", "Priority": "22", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010003-00000013", "content": "", "Application": "Gosub", "Event": "Newexten", "Extension": "201"}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "LOCAL(ARGC)", "Channel": "SIP/150010003-00000013", "Value": "0", "Event": "VarSet", "content": ""}, - {"AppData": "i18n_region=NL", "Priority": "1", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_i18n_region", "Channel": "SIP/150010003-00000013", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "31"}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "i18n_region", "Channel": "SIP/150010003-00000013", "Value": "NL", "Event": "VarSet", "content": ""}, - {"AppData": "", "Priority": "2", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_i18n_region", "Channel": "SIP/150010003-00000013", "content": "", "Application": "Return", "Event": "Newexten", "Extension": "31"}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "GOSUB_RETVAL", "Channel": "SIP/150010003-00000013", "Value": "", "Event": "VarSet", "content": ""}, - {"AppData": "osvpi_account_emergency_NL,201,1", "Priority": "23", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010003-00000013", "content": "", "Application": "Goto", "Event": "Newexten", "Extension": "201"}, - {"AppData": "osvpi_account_no_emergency,201,1", "Priority": "1", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account_emergency_NL", "Channel": "SIP/150010003-00000013", "content": "", "Application": "Goto", "Event": "Newexten", "Extension": "201"}, - {"AppData": "osvpi_account,201,no-emergency", "Priority": "1", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account_no_emergency", "Channel": "SIP/150010003-00000013", "content": "", "Application": "Goto", "Event": "Newexten", "Extension": "201"}, - {"AppData": "osvpi_account_clean,201,1", "Priority": "24", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account", "Channel": "SIP/150010003-00000013", "content": "", "Application": "Goto", "Event": "Newexten", "Extension": "201"}, - {"AppData": "return=osvpi_account_clean", "Priority": "1", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Channel": "SIP/150010003-00000013", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "201"}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "return", "Channel": "SIP/150010003-00000013", "Value": "osvpi_account_clean", "Event": "VarSet", "content": ""}, - {"AppData": "osvpi_return_to_canonical,31i201,1", "Priority": "2", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Channel": "SIP/150010003-00000013", "content": "", "Application": "Goto", "Event": "Newexten", "Extension": "201"}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "INVALID_EXTEN", "Channel": "SIP/150010003-00000013", "Value": "31i201", "Event": "VarSet", "content": ""}, - {"AppData": "osvpi_account_clean,201,local", "Priority": "1", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_return_to_canonical", "Channel": "SIP/150010003-00000013", "content": "", "Application": "Goto", "Event": "Newexten", "Extension": "i"}, - {"AppData": "0?extern", "Priority": "3", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Channel": "SIP/150010003-00000013", "content": "", "Application": "GotoIf", "Event": "Newexten", "Extension": "201"}, - {"AppData": "osvpi_proc_set_callerid,201,1(150010002,0,0)", "Priority": "4", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Channel": "SIP/150010003-00000013", "content": "", "Application": "Gosub", "Event": "Newexten", "Extension": "201"}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG1)", "Channel": "SIP/150010003-00000013", "Value": "150010002", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG2)", "Channel": "SIP/150010003-00000013", "Value": "0", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG3)", "Channel": "SIP/150010003-00000013", "Value": "0", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "LOCAL(ARGC)", "Channel": "SIP/150010003-00000013", "Value": "3", "Event": "VarSet", "content": ""}, - {"AppData": "1?done", "Priority": "1", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010003-00000013", "content": "", "Application": "GotoIf", "Event": "Newexten", "Extension": "201"}, - {"AppData": "", "Priority": "10", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010003-00000013", "content": "", "Application": "Return", "Event": "Newexten", "Extension": "201"}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "GOSUB_RETVAL", "Channel": "SIP/150010003-00000013", "Value": "", "Event": "VarSet", "content": ""}, - {"AppData": "3?osvpi_account_call_int,201,1:i,1", "Priority": "5", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Channel": "SIP/150010003-00000013", "content": "", "Application": "GotoIf", "Event": "Newexten", "Extension": "201"}, - {"AppData": "osvpi_proc_check_limits,201,1", "Priority": "1", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010003-00000013", "content": "", "Application": "Gosub", "Event": "Newexten", "Extension": "201"}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "LOCAL(ARGC)", "Channel": "SIP/150010003-00000013", "Value": "0", "Event": "VarSet", "content": ""}, - {"AppData": "DEBUG: call_limit: client 0/0 and account 0/4", "Priority": "1", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Channel": "SIP/150010003-00000013", "content": "", "Application": "NoOp", "Event": "Newexten", "Extension": "201"}, - {"AppData": "0?osvpi_handle_limit,201,client", "Priority": "2", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Channel": "SIP/150010003-00000013", "content": "", "Application": "GotoIf", "Event": "Newexten", "Extension": "201"}, - {"AppData": "0?osvpi_handle_limit,201,account", "Priority": "3", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Channel": "SIP/150010003-00000013", "content": "", "Application": "GotoIf", "Event": "Newexten", "Extension": "201"}, - {"AppData": "GROUP(account_lim)=150010002", "Priority": "4", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Channel": "SIP/150010003-00000013", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "201"}, - {"AppData": "GROUP(client_lim)=15001", "Priority": "5", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Channel": "SIP/150010003-00000013", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "201"}, - {"AppData": "", "Priority": "6", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Channel": "SIP/150010003-00000013", "content": "", "Application": "Return", "Event": "Newexten", "Extension": "201"}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "GOSUB_RETVAL", "Channel": "SIP/150010003-00000013", "Value": "", "Event": "VarSet", "content": ""}, - {"AppData": "osvpi_proc_check_recurse,201,1(15001)", "Priority": "2", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010003-00000013", "content": "", "Application": "Gosub", "Event": "Newexten", "Extension": "201"}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG1)", "Channel": "SIP/150010003-00000013", "Value": "15001", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "LOCAL(ARGC)", "Channel": "SIP/150010003-00000013", "Value": "1", "Event": "VarSet", "content": ""}, - {"AppData": "LOCAL(exten)=15001:201", "Priority": "1", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010003-00000013", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "201"}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "LOCAL(exten)", "Channel": "SIP/150010003-00000013", "Value": "15001:201", "Event": "VarSet", "content": ""}, - {"AppData": "Recursion checking 15001:201 against ", "Priority": "2", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010003-00000013", "content": "", "Application": "NoOp", "Event": "Newexten", "Extension": "201"}, - {"AppData": "LOCAL(n)=0", "Priority": "3", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010003-00000013", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "201"}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "LOCAL(n)", "Channel": "SIP/150010003-00000013", "Value": "0", "Event": "VarSet", "content": ""}, - {"AppData": "LOCAL(i)=1", "Priority": "4", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010003-00000013", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "201"}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "LOCAL(i)", "Channel": "SIP/150010003-00000013", "Value": "1", "Event": "VarSet", "content": ""}, - {"AppData": "1?add", "Priority": "5", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010003-00000013", "content": "", "Application": "GotoIf", "Event": "Newexten", "Extension": "201"}, - {"AppData": "__EXTEN_LIST=15001:201 ", "Priority": "9", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010003-00000013", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "201"}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "__EXTEN_LIST", "Channel": "SIP/150010003-00000013", "Value": "15001:201 ", "Event": "VarSet", "content": ""}, - {"AppData": "__EXTEN_LIST_LAST_EDIT_TIME=1501834980", "Priority": "10", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010003-00000013", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "201"}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "__EXTEN_LIST_LAST_EDIT_TIME", "Channel": "SIP/150010003-00000013", "Value": "1501834980", "Event": "VarSet", "content": ""}, - {"AppData": "", "Priority": "11", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010003-00000013", "content": "", "Application": "Return", "Event": "Newexten", "Extension": "201"}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "GOSUB_RETVAL", "Channel": "SIP/150010003-00000013", "Value": "", "Event": "VarSet", "content": ""}, - {"AppData": "__ORIG_EXTEN=201", "Priority": "3", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010003-00000013", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "201"}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "__ORIG_EXTEN", "Channel": "SIP/150010003-00000013", "Value": "201", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "ODBCROWS", "Channel": "SIP/150010003-00000013", "Value": "0", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "ODBCSTATUS", "Channel": "SIP/150010003-00000013", "Value": "NODATA", "Event": "VarSet", "content": ""}, - {"AppData": "ARRAY(conference_id,user_password,admin_password,conference_language)=", "Priority": "4", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010003-00000013", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "201"}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "conference_id", "Channel": "SIP/150010003-00000013", "Value": "", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "user_password", "Channel": "SIP/150010003-00000013", "Value": "", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "admin_password", "Channel": "SIP/150010003-00000013", "Value": "", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "conference_language", "Channel": "SIP/150010003-00000013", "Value": "", "Event": "VarSet", "content": ""}, - {"AppData": "0?osvpi_route_conference,ID,1", "Priority": "5", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010003-00000013", "content": "", "Application": "GotoIf", "Event": "Newexten", "Extension": "201"}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "ODBCROWS", "Channel": "SIP/150010003-00000013", "Value": "0", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "ODBCSTATUS", "Channel": "SIP/150010003-00000013", "Value": "NODATA", "Event": "VarSet", "content": ""}, - {"AppData": "ARRAY(route_id,client_timezone)=", "Priority": "6", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010003-00000013", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "201"}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "route_id", "Channel": "SIP/150010003-00000013", "Value": "", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "client_timezone", "Channel": "SIP/150010003-00000013", "Value": "", "Event": "VarSet", "content": ""}, - {"AppData": "0?osvpi_route_root,201,restart", "Priority": "7", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010003-00000013", "content": "", "Application": "GotoIf", "Event": "Newexten", "Extension": "201"}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "ODBCROWS", "Channel": "SIP/150010003-00000013", "Value": "0", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "ODBCSTATUS", "Channel": "SIP/150010003-00000013", "Value": "NODATA", "Event": "VarSet", "content": ""}, - {"AppData": "ARRAY(all_extensions,limited_extensions,password,account_spy_language)=", "Priority": "8", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010003-00000013", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "201"}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "all_extensions", "Channel": "SIP/150010003-00000013", "Value": "", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "limited_extensions", "Channel": "SIP/150010003-00000013", "Value": "", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "password", "Channel": "SIP/150010003-00000013", "Value": "", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "account_spy_language", "Channel": "SIP/150010003-00000013", "Value": "", "Event": "VarSet", "content": ""}, - {"AppData": "0?osvpi_account_spy,201,1", "Priority": "9", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010003-00000013", "content": "", "Application": "GotoIf", "Event": "Newexten", "Extension": "201"}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "ODBCROWS", "Channel": "SIP/150010003-00000013", "Value": "1", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "ODBCSTATUS", "Channel": "SIP/150010003-00000013", "Value": "SUCCESS", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "~ODBCFIELDS~", "Channel": "SIP/150010003-00000013", "Value": "interfaces", "Event": "VarSet", "content": ""}, - {"AppData": "ARRAY(interfaces)=Local/ID710150@osvpi_route_phoneaccount", "Priority": "10", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010003-00000013", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "201"}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "interfaces", "Channel": "SIP/150010003-00000013", "Value": "Local/ID710150@osvpi_route_phoneaccount", "Event": "VarSet", "content": ""}, - {"AppData": "0?osvpi_handle_unallocated,201,1", "Priority": "11", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010003-00000013", "content": "", "Application": "GotoIf", "Event": "Newexten", "Extension": "201"}, - {"AppData": "Local/ID710150@osvpi_route_phoneaccount", "Priority": "12", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Channel": "SIP/150010003-00000013", "content": "", "Application": "Dial", "Event": "Newexten", "Extension": "201"}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "DIALSTATUS", "Channel": "SIP/150010003-00000013", "Value": "", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "DIALEDPEERNUMBER", "Channel": "SIP/150010003-00000013", "Value": "", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "DIALEDPEERNAME", "Channel": "SIP/150010003-00000013", "Value": "", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "ANSWEREDTIME", "Channel": "SIP/150010003-00000013", "Value": "", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "DIALEDTIME", "Channel": "SIP/150010003-00000013", "Value": "", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.46", "CallerIDNum": "", "ChannelStateDesc": "Down", "CallerIDName": "", "Context": "osvpi_route_phoneaccount", "ChannelState": "0", "Exten": "ID710150", "Privilege": "call,all", "AccountCode": "", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;1", "content": "", "Event": "Newchannel"}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "CallerIDNum": "", "ChannelStateDesc": "Ring", "CallerIDName": "", "Context": "osvpi_route_phoneaccount", "ChannelState": "4", "Exten": "ID710150", "Privilege": "call,all", "AccountCode": "", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "content": "", "Event": "Newchannel"}, - {"Uniqueid": "63f2f9ce924a-1501834980.46", "Privilege": "dialplan,all", "Variable": "DIALEDPEERNUMBER", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;1", "Value": "ID710150@osvpi_route_phoneaccount", "Event": "VarSet", "content": ""}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Uniqueid": "63f2f9ce924a-1501834980.46", "CallerIDNum": "201", "Privilege": "call,all", "CallerIDName": "Robert Murray", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;1", "Event": "NewCallerid", "content": ""}, - {"LocalOptimization": "Yes", "Uniqueid2": "63f2f9ce924a-1501834980.47", "Privilege": "call,all", "content": "", "Channel1": "Local/ID710150@osvpi_route_phoneaccount-0000000c;1", "Uniqueid1": "63f2f9ce924a-1501834980.46", "Channel2": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID710150"}, - {"CallerIDNum": "203", "Event": "Dial", "CallerIDName": "", "UniqueID": "63f2f9ce924a-1501834980.45", "ConnectedLineName": "Robert Murray", "Privilege": "call,all", "Dialstring": "ID710150@osvpi_route_phoneaccount", "DestUniqueID": "63f2f9ce924a-1501834980.46", "Channel": "SIP/150010003-00000013", "SubEvent": "Begin", "content": "", "ConnectedLineNum": "202", "Destination": "Local/ID710150@osvpi_route_phoneaccount-0000000c;1"}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "ODBCROWS", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "1", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "ODBCSTATUS", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "SUCCESS", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "~ODBCFIELDS~", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account", "Event": "VarSet", "content": ""}, - {"AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=150010001,accountid,dutch,from,,0", "Priority": "1", "Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "ID710150"}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "__dst_account_id", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "150010001", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "l_mangle_did", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "accountid", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "l_mangle_cli", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "dutch", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "l_cli_header", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "from", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "l_primary_pickupgroup", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "app_account", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "0", "Event": "VarSet", "content": ""}, - {"AppData": "0?vialer", "Priority": "2", "Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "content": "", "Application": "GotoIf", "Event": "Newexten", "Extension": "ID710150"}, - {"AppData": "_PICKUPMARK=", "Priority": "3", "Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "ID710150"}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "_PICKUPMARK", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "", "Event": "VarSet", "content": ""}, - {"AppData": "l_trunk=0", "Priority": "4", "Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "ID710150"}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "l_trunk", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "0", "Event": "VarSet", "content": ""}, - {"AppData": "osvpi_route_account,ID710150,1", "Priority": "5", "Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "content": "", "Application": "Goto", "Event": "Newexten", "Extension": "ID710150"}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "ODBCROWS", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "1", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "ODBCSTATUS", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "SUCCESS", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "~ODBCFIELDS~", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "proxy", "Event": "VarSet", "content": ""}, - {"AppData": "ARRAY(l_proxy)=172.20.0.13", "Priority": "1", "Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "ID710150"}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "l_proxy", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "172.20.0.13", "Event": "VarSet", "content": ""}, - {"AppData": "osvpi_proc_mangle_number,accountid,1(150010001,201)", "Priority": "2", "Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "content": "", "Application": "Gosub", "Event": "Newexten", "Extension": "ID710150"}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG1)", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "150010001", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG2)", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "201", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "LOCAL(ARGC)", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "2", "Event": "VarSet", "content": ""}, - {"AppData": "MANGLED_EXTEN=150010001", "Priority": "1", "Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "accountid"}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "MANGLED_EXTEN", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "150010001", "Event": "VarSet", "content": ""}, - {"AppData": "", "Priority": "2", "Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "content": "", "Application": "Return", "Event": "Newexten", "Extension": "accountid"}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "GOSUB_RETVAL", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "", "Event": "VarSet", "content": ""}, - {"AppData": "l_did=150010001", "Priority": "3", "Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "ID710150"}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "l_did", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "150010001", "Event": "VarSet", "content": ""}, - {"AppData": "osvpi_proc_mangle_number,dutch,1(150010001,203)", "Priority": "4", "Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "content": "", "Application": "Gosub", "Event": "Newexten", "Extension": "ID710150"}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG1)", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "150010001", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG2)", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "203", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "LOCAL(ARGC)", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "2", "Event": "VarSet", "content": ""}, - {"AppData": "1?fullzero,1", "Priority": "1", "Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "content": "", "Application": "GotoIf", "Event": "Newexten", "Extension": "dutch"}, - {"AppData": "MANGLED_EXTEN=203", "Priority": "1", "Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "fullzero"}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "MANGLED_EXTEN", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "203", "Event": "VarSet", "content": ""}, - {"AppData": "", "Priority": "2", "Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "content": "", "Application": "Return", "Event": "Newexten", "Extension": "fullzero"}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "GOSUB_RETVAL", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "", "Event": "VarSet", "content": ""}, - {"AppData": "l_mangle_cli_hdr=from-dutch", "Priority": "5", "Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "ID710150"}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "l_mangle_cli_hdr", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "from-dutch", "Event": "VarSet", "content": ""}, - {"AppData": "l_fromuser=", "Priority": "6", "Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "ID710150"}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "l_fromuser", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "", "Event": "VarSet", "content": ""}, - {"AppData": "1?Set(l_fromuser=203)", "Priority": "7", "Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "content": "", "Application": "ExecIf", "Event": "Newexten", "Extension": "ID710150"}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "l_fromuser", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "203", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "ODBCROWS", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "1", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "ODBCSTATUS", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "SUCCESS", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "~ODBCFIELDS~", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "IF((SELECT 1 FROM baseaccount_account ba INNER JOIN userdestination_selecteduserdestination udsud ON udsud.phoneaccount_id = ba.id INNER JOIN userdestination_userdestination udud ON udud.id = udsud.userdestination_id INNER JOIN crm_cloudctiuser cccu O", "Event": "VarSet", "content": ""}, - {"AppData": "ARRAY(cloudcti)=0", "Priority": "8", "Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "ID710150"}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "cloudcti", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "0", "Event": "VarSet", "content": ""}, - {"AppData": "1?skipcloudcti", "Priority": "9", "Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "content": "", "Application": "GotoIf", "Event": "Newexten", "Extension": "ID710150"}, - {"AppData": "osvpi_proc_proxy_out,201,1", "Priority": "11", "Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "content": "", "Application": "Goto", "Event": "Newexten", "Extension": "ID710150"}, - {"AppData": "X-Accountcode: 150010001", "Priority": "1", "Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "content": "", "Application": "SIPAddHeader", "Event": "Newexten", "Extension": "201"}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "__SIPADDHEADER04", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "X-Accountcode: 150010001", "Event": "VarSet", "content": ""}, - {"AppData": "X-Insecure-Protection: geheim", "Priority": "2", "Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "content": "", "Application": "SIPAddHeader", "Event": "Newexten", "Extension": "201"}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "__SIPADDHEADER05", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "X-Insecure-Protection: geheim", "Event": "VarSet", "content": ""}, - {"AppData": "X-Mangle-Cli: from-dutch", "Priority": "3", "Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "content": "", "Application": "SIPAddHeader", "Event": "Newexten", "Extension": "201"}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "__SIPADDHEADER06", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "X-Mangle-Cli: from-dutch", "Event": "VarSet", "content": ""}, - {"AppData": "_dial_options_callaccept=", "Priority": "4", "Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "201"}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "_dial_options_callaccept", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "", "Event": "VarSet", "content": ""}, - {"AppData": "_dial_options_callnotify=", "Priority": "5", "Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "201"}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "_dial_options_callnotify", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "", "Event": "VarSet", "content": ""}, - {"AppData": "0?Set(l_proxy=opensipsfg)", "Priority": "6", "Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "content": "", "Application": "ExecIf", "Event": "Newexten", "Extension": "201"}, - {"AppData": "l_extra_options=", "Priority": "7", "Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "content": "", "Application": "Set", "Event": "Newexten", "Extension": "201"}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "l_extra_options", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "", "Event": "VarSet", "content": ""}, - {"AppData": "SIP/150010001/150010001/172.20.0.13!!203,,", "Priority": "8", "Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "content": "", "Application": "Dial", "Event": "Newexten", "Extension": "201"}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "DIALSTATUS", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "DIALEDPEERNUMBER", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "DIALEDPEERNAME", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "ANSWEREDTIME", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "DIALEDTIME", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.48", "CallerIDNum": "", "ChannelStateDesc": "Down", "CallerIDName": "", "Context": "osvpi_account", "ChannelState": "0", "Exten": "", "Privilege": "call,all", "AccountCode": "150010001", "Channel": "SIP/150010001-00000014", "content": "", "Event": "Newchannel"}, - {"Uniqueid": "63f2f9ce924a-1501834980.48", "Privilege": "dialplan,all", "Variable": "SIPCALLID", "Channel": "SIP/150010001-00000014", "Value": "45cb309128f9ff310b2d0fcd5caccd2c@test.voipgrid.nl", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.48", "Privilege": "dialplan,all", "Variable": "__client_id", "Channel": "SIP/150010001-00000014", "Value": "15001", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.48", "Privilege": "dialplan,all", "Variable": "__account_id", "Channel": "SIP/150010001-00000014", "Value": "150010001", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.48", "Privilege": "dialplan,all", "Variable": "__record_call", "Channel": "SIP/150010001-00000014", "Value": "no", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.48", "Privilege": "dialplan,all", "Variable": "__intprefix", "Channel": "SIP/150010001-00000014", "Value": "31", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.48", "Privilege": "dialplan,all", "Variable": "__limit_account", "Channel": "SIP/150010001-00000014", "Value": "4", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.48", "Privilege": "dialplan,all", "Variable": "__limit_client", "Channel": "SIP/150010001-00000014", "Value": "0", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.48", "Privilege": "dialplan,all", "Variable": "__hide_ext_cliname", "Channel": "SIP/150010001-00000014", "Value": "1", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.48", "Privilege": "dialplan,all", "Variable": "__TRANSFER_CONTEXT", "Channel": "SIP/150010001-00000014", "Value": "osvpi_account_transfer", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.48", "Privilege": "dialplan,all", "Variable": "DIALEDPEERNUMBER", "Channel": "SIP/150010001-00000014", "Value": "150010001/150010001/172.20.0.13!!203", "Event": "VarSet", "content": ""}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Uniqueid": "63f2f9ce924a-1501834980.48", "CallerIDNum": "201", "Privilege": "call,all", "CallerIDName": "Robert Murray", "Channel": "SIP/150010001-00000014", "Event": "NewCallerid", "content": ""}, - {"CallerIDNum": "203", "Event": "Dial", "CallerIDName": "", "UniqueID": "63f2f9ce924a-1501834980.47", "ConnectedLineName": "Robert Murray", "Privilege": "call,all", "Dialstring": "150010001/150010001/172.20.0.13!!203", "DestUniqueID": "63f2f9ce924a-1501834980.48", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "SubEvent": "Begin", "content": "", "ConnectedLineNum": "201", "Destination": "SIP/150010001-00000014"}, - {"Uniqueid": "63f2f9ce924a-1501834980.48", "CallerIDNum": "201", "Privilege": "call,all", "Event": "Newstate", "CallerIDName": "Robert Murray", "Channel": "SIP/150010001-00000014", "ConnectedLineName": "", "content": "", "ChannelState": "5", "ConnectedLineNum": "203", "ChannelStateDesc": "Ringing"}, - {"Uniqueid": "63f2f9ce924a-1501834980.46", "CallerIDNum": "201", "Privilege": "call,all", "Event": "Newstate", "CallerIDName": "Robert Murray", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;1", "ConnectedLineName": "", "content": "", "ChannelState": "5", "ConnectedLineNum": "203", "ChannelStateDesc": "Ringing"}, - {"Uniqueid": "63f2f9ce924a-1501834980.48", "CallerIDNum": "201", "Privilege": "call,all", "Event": "Newstate", "CallerIDName": "Robert Murray", "Channel": "SIP/150010001-00000014", "ConnectedLineName": "", "content": "", "ChannelState": "6", "ConnectedLineNum": "203", "ChannelStateDesc": "Up"}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "DIALSTATUS", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "ANSWER", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "DIALEDPEERNAME", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "SIP/150010001-00000014", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "DIALEDPEERNUMBER", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "150010001/150010001/172.20.0.13!!203", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "SIP/150010001-00000014", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.48", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "Channel": "SIP/150010001-00000014", "Value": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "CallerIDNum": "203", "Privilege": "call,all", "Event": "Newstate", "CallerIDName": "", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "ConnectedLineName": "Robert Murray", "content": "", "ChannelState": "6", "ConnectedLineNum": "201", "ChannelStateDesc": "Up"}, - {"Uniqueid": "63f2f9ce924a-1501834980.48", "Privilege": "call,all", "OldAccountCode": "150010002", "AccountCode": "150010002", "Channel": "SIP/150010001-00000014", "Event": "NewAccountCode", "content": ""}, - {"Uniqueid2": "63f2f9ce924a-1501834980.48", "Bridgetype": "core", "Bridgestate": "Link", "Privilege": "call,all", "CallerID1": "203", "Channel1": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Uniqueid1": "63f2f9ce924a-1501834980.47", "Channel2": "SIP/150010001-00000014", "CallerID2": "201", "Event": "Bridge", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "SIP/150010001-00000014", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "BRIDGEPVTCALLID", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "45cb309128f9ff310b2d0fcd5caccd2c@test.voipgrid.nl", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.48", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "Channel": "SIP/150010001-00000014", "Value": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "SIP/150010001-00000014", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "BRIDGEPVTCALLID", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "45cb309128f9ff310b2d0fcd5caccd2c@test.voipgrid.nl", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.48", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "Channel": "SIP/150010001-00000014", "Value": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.46", "CallerIDNum": "201", "Privilege": "call,all", "Event": "Newstate", "CallerIDName": "Robert Murray", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;1", "ConnectedLineName": "", "content": "", "ChannelState": "6", "ConnectedLineNum": "203", "ChannelStateDesc": "Up"}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "DIALSTATUS", "Channel": "SIP/150010003-00000013", "Value": "ANSWER", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "DIALEDPEERNAME", "Channel": "SIP/150010003-00000013", "Value": "Local/ID710150@osvpi_route_phoneaccount-0000000c;1", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "DIALEDPEERNUMBER", "Channel": "SIP/150010003-00000013", "Value": "ID710150@osvpi_route_phoneaccount", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "Channel": "SIP/150010003-00000013", "Value": "Local/ID710150@osvpi_route_phoneaccount-0000000c;1", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.46", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;1", "Value": "SIP/150010003-00000013", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.46", "Privilege": "call,all", "OldAccountCode": "150010002", "AccountCode": "150010002", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;1", "Event": "NewAccountCode", "content": ""}, - {"Uniqueid2": "63f2f9ce924a-1501834980.46", "Bridgetype": "core", "Bridgestate": "Link", "Privilege": "call,all", "CallerID1": "203", "Channel1": "SIP/150010003-00000013", "Uniqueid1": "63f2f9ce924a-1501834980.45", "Channel2": "Local/ID710150@osvpi_route_phoneaccount-0000000c;1", "CallerID2": "201", "Event": "Bridge", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "Channel": "SIP/150010003-00000013", "Value": "Local/ID710150@osvpi_route_phoneaccount-0000000c;1", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.46", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;1", "Value": "SIP/150010003-00000013", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.46", "Privilege": "dialplan,all", "Variable": "BRIDGEPVTCALLID", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;1", "Value": "4c6a7ff3053c41f901f8c79003bc410c@test.voipgrid.nl", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "Channel": "SIP/150010003-00000013", "Value": "Local/ID710150@osvpi_route_phoneaccount-0000000c;1", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.46", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;1", "Value": "SIP/150010003-00000013", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.46", "Privilege": "dialplan,all", "Variable": "BRIDGEPVTCALLID", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;1", "Value": "4c6a7ff3053c41f901f8c79003bc410c@test.voipgrid.nl", "Event": "VarSet", "content": ""}, - {"DLSR": "2.4998(sec)", "IAJitter": "0", "SenderSSRC": "4179755008", "RTT": "9(sec)", "PT": "200(Sender Report)", "content": "", "HighestSequence": "25443", "FractionLost": "0", "From": "172.20.0.254:47517", "PacketsLost": "8953", "Privilege": "reporting,all", "ReceptionReports": "1", "LastSR": "44388.780888372968161280", "SequenceNumberCycles": "0", "Event": "RTCPReceived"}, - {"OriginalState": "Up", "Privilege": "call,all", "Clone": "SIP/150010001-00000014", "CloneState": "Up", "Original": "Local/ID710150@osvpi_route_phoneaccount-0000000c;1", "Event": "Masquerade", "content": ""}, - {"Newname": "SIP/150010001-00000014", "Uniqueid": "63f2f9ce924a-1501834980.48", "Privilege": "call,all", "Channel": "SIP/150010001-00000014", "Event": "Rename", "content": ""}, - {"Newname": "SIP/150010001-00000014", "Uniqueid": "63f2f9ce924a-1501834980.46", "Privilege": "call,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;1", "Event": "Rename", "content": ""}, - {"Newname": "Local/ID710150@osvpi_route_phoneaccount-0000000c;1", "Uniqueid": "63f2f9ce924a-1501834980.48", "Privilege": "call,all", "Channel": "SIP/150010001-00000014", "Event": "Rename", "content": ""}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Uniqueid": "63f2f9ce924a-1501834980.46", "CallerIDNum": "201", "Privilege": "call,all", "CallerIDName": "Robert Murray", "Channel": "SIP/150010001-00000014", "Event": "NewCallerid", "content": ""}, - {"Uniqueid2": "63f2f9ce924a-1501834980.48", "Bridgetype": "core", "Bridgestate": "Unlink", "Privilege": "call,all", "CallerID1": "203", "Channel1": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Uniqueid1": "63f2f9ce924a-1501834980.47", "Channel2": "Local/ID710150@osvpi_route_phoneaccount-0000000c;1", "CallerID2": "201", "Event": "Bridge", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "Channel": "SIP/150010003-00000013", "Value": "SIP/150010001-00000014", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "BRIDGEPVTCALLID", "Channel": "SIP/150010003-00000013", "Value": "45cb309128f9ff310b2d0fcd5caccd2c@test.voipgrid.nl", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "ANSWEREDTIME", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "0", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.46", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "Channel": "SIP/150010001-00000014", "Value": "SIP/150010003-00000013", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "DIALEDTIME", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "2", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.46", "Privilege": "dialplan,all", "Variable": "BRIDGEPVTCALLID", "Channel": "SIP/150010001-00000014", "Value": "4c6a7ff3053c41f901f8c79003bc410c@test.voipgrid.nl", "Event": "VarSet", "content": ""}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "call,all", "Event": "HangupRequest", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.48", "CallerIDNum": "201", "Event": "Hangup", "CallerIDName": "Robert Murray", "Cause": "16", "content": "", "Privilege": "call,all", "ConnectedLineName": "", "AccountCode": "150010002", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;1", "Cause-txt": "Normal Clearing", "ConnectedLineNum": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Variable": "DIALSTATUS", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Value": "ANSWER", "Event": "VarSet", "content": ""}, - {"DialStatus": "ANSWER", "Privilege": "call,all", "Event": "Dial", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "SubEvent": "End", "UniqueID": "63f2f9ce924a-1501834980.47", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "call,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Cause": "16", "Event": "SoftHangupRequest", "content": ""}, - {"AppData": "1?nosip", "Priority": "1", "Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Context": "handlers", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "content": "", "Application": "GotoIf", "Event": "Newexten", "Extension": "onhangup"}, - {"AppData": "0?osvpi_proc_httptouch,s,1()", "Priority": "3", "Uniqueid": "63f2f9ce924a-1501834980.47", "Privilege": "dialplan,all", "Context": "handlers", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "content": "", "Application": "GosubIf", "Event": "Newexten", "Extension": "onhangup"}, - {"Uniqueid": "63f2f9ce924a-1501834980.47", "CallerIDNum": "203", "Event": "Hangup", "CallerIDName": "", "Cause": "16", "content": "", "Privilege": "call,all", "ConnectedLineName": "Robert Murray", "AccountCode": "150010002", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000c;2", "Cause-txt": "Normal Clearing", "ConnectedLineNum": "201"}, - {"DLSR": "32768.0000(sec)", "IAJitter": "33", "SenderSSRC": "0", "PT": "200(Sender Report)", "ReceptionReports": "1", "HighestSequence": "358", "FractionLost": "0", "From": "172.20.0.254:48209", "PacketsLost": "0", "Privilege": "reporting,all", "content": "", "LastSR": "0.0000000000", "SequenceNumberCycles": "0", "Event": "RTCPReceived"}, - {"DLSR": "2.4900 (sec)", "OurSSRC": "247859418", "IAJitter": "0.0020", "SentNTP": "1501834985.1494261760", "SentPackets": "234", "SentOctets": "37440", "content": "", "CumulativeLoss": "127", "FractionLost": "0", "Privilege": "reporting,all", "To": "172.20.0.254:47517", "TheirLastSR": "2909200309", "Event": "RTCPSent", "SentRTP": "37440"}, - {"DLSR": "0.0000(sec)", "IAJitter": "15", "SenderSSRC": "3601924294", "PT": "200(Sender Report)", "ReceptionReports": "1", "HighestSequence": "62136", "FractionLost": "198", "From": "172.20.0.254:47517", "PacketsLost": "45526", "Privilege": "reporting,all", "content": "", "LastSR": "0.0000000000", "SequenceNumberCycles": "0", "Event": "RTCPReceived"}, - {"Uniqueid": "63f2f9ce924a-1501834980.46", "Privilege": "dialplan,all", "Variable": "RTPAUDIOQOS", "Channel": "SIP/150010001-00000014", "Value": "ssrc=929640408;themssrc=982978916;lp=0;rxjitter=0.000000;rxcount=1;txjitter=0.000000;txcount=16;rlp=0;rtt=0.000000", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "RTPAUDIOQOSBRIDGED", "Channel": "SIP/150010003-00000013", "Value": "ssrc=929640408;themssrc=982978916;lp=0;rxjitter=0.000000;rxcount=1;txjitter=0.000000;txcount=16;rlp=0;rtt=0.000000", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.46", "Privilege": "dialplan,all", "Variable": "RTPAUDIOQOSJITTER", "Channel": "SIP/150010001-00000014", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "RTPAUDIOQOSJITTERBRIDGED", "Channel": "SIP/150010003-00000013", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.46", "Privilege": "dialplan,all", "Variable": "RTPAUDIOQOSLOSS", "Channel": "SIP/150010001-00000014", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "RTPAUDIOQOSLOSSBRIDGED", "Channel": "SIP/150010003-00000013", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.46", "Privilege": "dialplan,all", "Variable": "RTPAUDIOQOSRTT", "Channel": "SIP/150010001-00000014", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "RTPAUDIOQOSRTTBRIDGED", "Channel": "SIP/150010003-00000013", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "RTPAUDIOQOS", "Channel": "SIP/150010003-00000013", "Value": "ssrc=247859418;themssrc=924081150;lp=127;rxjitter=0.000000;rxcount=189;txjitter=0.002047;txcount=234;rlp=45526;rtt=0.009000", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.46", "Privilege": "dialplan,all", "Variable": "RTPAUDIOQOSBRIDGED", "Channel": "SIP/150010001-00000014", "Value": "ssrc=247859418;themssrc=924081150;lp=127;rxjitter=0.000000;rxcount=189;txjitter=0.002047;txcount=234;rlp=45526;rtt=0.009000", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "RTPAUDIOQOSJITTER", "Channel": "SIP/150010003-00000013", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.46", "Privilege": "dialplan,all", "Variable": "RTPAUDIOQOSJITTERBRIDGED", "Channel": "SIP/150010001-00000014", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "RTPAUDIOQOSLOSS", "Channel": "SIP/150010003-00000013", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.46", "Privilege": "dialplan,all", "Variable": "RTPAUDIOQOSLOSSBRIDGED", "Channel": "SIP/150010001-00000014", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "RTPAUDIOQOSRTT", "Channel": "SIP/150010003-00000013", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.46", "Privilege": "dialplan,all", "Variable": "RTPAUDIOQOSRTTBRIDGED", "Channel": "SIP/150010001-00000014", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Event": "VarSet", "content": ""}, - {"Channel": "SIP/150010001-00000014", "Uniqueid": "63f2f9ce924a-1501834980.46", "Privilege": "call,all", "Event": "HangupRequest", "content": ""}, - {"Uniqueid2": "63f2f9ce924a-1501834980.46", "Bridgetype": "core", "Bridgestate": "Unlink", "Privilege": "call,all", "CallerID1": "203", "Channel1": "SIP/150010003-00000013", "Uniqueid1": "63f2f9ce924a-1501834980.45", "Channel2": "SIP/150010001-00000014", "CallerID2": "201", "Event": "Bridge", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "ANSWEREDTIME", "Channel": "SIP/150010003-00000013", "Value": "11", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "DIALEDTIME", "Channel": "SIP/150010003-00000013", "Value": "14", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.46", "CallerIDNum": "201", "Event": "Hangup", "CallerIDName": "Robert Murray", "Cause": "16", "content": "", "Privilege": "call,all", "ConnectedLineName": "", "AccountCode": "150010002", "Channel": "SIP/150010001-00000014", "Cause-txt": "Normal Clearing", "ConnectedLineNum": "203"}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "DIALSTATUS", "Channel": "SIP/150010003-00000013", "Value": "ANSWER", "Event": "VarSet", "content": ""}, - {"DialStatus": "ANSWER", "Privilege": "call,all", "Event": "Dial", "Channel": "SIP/150010003-00000013", "SubEvent": "End", "UniqueID": "63f2f9ce924a-1501834980.45", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "call,all", "Channel": "SIP/150010003-00000013", "Cause": "16", "Event": "SoftHangupRequest", "content": ""}, - {"AppData": "0?nosip", "Priority": "1", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "handlers", "Channel": "SIP/150010003-00000013", "content": "", "Application": "GotoIf", "Event": "Newexten", "Extension": "onhangup"}, - {"AppData": "LOG: rtpqos: caller=172.20.0.254:47516;asterisk=0.0.0.0:13614;ssrc=247859418;themssrc=924081150;lp=127;rxjitter=0.000000;rxcount=190;txjitter=0.002848;txcount=234;rlp=45526;rtt=0.009000;billsec=0", "Priority": "2", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "handlers", "Channel": "SIP/150010003-00000013", "content": "", "Application": "NoOp", "Event": "Newexten", "Extension": "onhangup"}, - {"AppData": "0?osvpi_proc_httptouch,s,1()", "Priority": "3", "Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Context": "handlers", "Channel": "SIP/150010003-00000013", "content": "", "Application": "GosubIf", "Event": "Newexten", "Extension": "onhangup"}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "RTPAUDIOQOS", "Channel": "SIP/150010003-00000013", "Value": "ssrc=247859418;themssrc=924081150;lp=127;rxjitter=0.000000;rxcount=190;txjitter=0.002848;txcount=234;rlp=45526;rtt=0.009000", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "RTPAUDIOQOSJITTER", "Channel": "SIP/150010003-00000013", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "RTPAUDIOQOSLOSS", "Channel": "SIP/150010003-00000013", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "RTPAUDIOQOSRTT", "Channel": "SIP/150010003-00000013", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "Privilege": "dialplan,all", "Variable": "RTPAUDIOQOS", "Channel": "SIP/150010003-00000013", "Value": "ssrc=247859418;themssrc=924081150;lp=127;rxjitter=0.000000;rxcount=190;txjitter=0.002848;txcount=234;rlp=45526;rtt=0.009000", "Event": "VarSet", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1501834980.45", "CallerIDNum": "203", "Event": "Hangup", "CallerIDName": "", "Cause": "16", "content": "", "Privilege": "call,all", "ConnectedLineName": "Robert Murray", "AccountCode": "150010002", "Channel": "SIP/150010003-00000013", "Cause-txt": "Normal Clearing", "ConnectedLineNum": "202"} -] + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000006", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.130", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000006", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.130", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000006", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1529998985.130", "Priority": "5", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.130", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000006", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1529998985.130", "Priority": "6", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.130", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000004;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.133", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000004;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.135", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000004;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.133", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000004;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.133", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000004;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.133", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000004;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730151", "Language": "en", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.135", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000004;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730151", "Language": "en", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.135", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000004;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730151", "Language": "en", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.135", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730151", "LocalOneAccountCode": "150010001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "202", "LocalOneChannel": "Local/ID730151@osvpi_route_phoneaccount-00000004;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Andrew Garza", "LocalOneConnectedLineNum": "201", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "202", "LocalOneLanguage": "en", "LocalOneLinkedid": "07b796be1962-1529998985.130", "LocalOnePriority": "1", "LocalOneUniqueid": "07b796be1962-1529998985.133", "LocalOptimization": "Yes", "LocalTwoAccountCode": "150010001", "LocalTwoCallerIDName": "Andrew Garza", "LocalTwoCallerIDNum": "201", "LocalTwoChannel": "Local/ID730151@osvpi_route_phoneaccount-00000004;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "202", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730151", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "07b796be1962-1529998985.130", "LocalTwoPriority": "1", "LocalTwoUniqueid": "07b796be1962-1529998985.135", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000006", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-00000004;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "202", "DestLanguage": "en", "DestLinkedid": "07b796be1962-1529998985.130", "DestPriority": "1", "DestUniqueid": "07b796be1962-1529998985.133", "DialString": "ID730151@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1529998985.130", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.130", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010002-00000007", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.138", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000007", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.138", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000007", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1529998985.130", "OldAccountCode": "150010002", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.138", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000007", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.138", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000004;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "SIP/150010002-00000007", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "202", "DestLanguage": "nl", "DestLinkedid": "07b796be1962-1529998985.130", "DestPriority": "1", "DestUniqueid": "07b796be1962-1529998985.138", "DialString": "150010002/150010002/172.20.0.13!!201", "Event": "DialBegin", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1529998985.130", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.135", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000007", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.138", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000004;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.133", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000007", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.138", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000004;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "SIP/150010002-00000007", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "07b796be1962-1529998985.130", "DestPriority": "1", "DestUniqueid": "07b796be1962-1529998985.138", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1529998985.130", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.135", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000004;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1529998985.130", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.135", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000004;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.133", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1ca04597-b03f-49d0-be9a-e3aec39162f5", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000006", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-00000004;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "07b796be1962-1529998985.130", "DestPriority": "1", "DestUniqueid": "07b796be1962-1529998985.133", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1529998985.130", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.130", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000006", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1529998985.130", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.130", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1ca04597-b03f-49d0-be9a-e3aec39162f5", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000007", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.138", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1ca04597-b03f-49d0-be9a-e3aec39162f5", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000004;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1529998985.130", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.135", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4a4f3f0d-4210-4117-97e0-a8d54aea9c8d", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4a4f3f0d-4210-4117-97e0-a8d54aea9c8d", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000004;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.133", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4a4f3f0d-4210-4117-97e0-a8d54aea9c8d", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000006", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1529998985.130", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.130", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1ca04597-b03f-49d0-be9a-e3aec39162f5", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000007", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.138", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4a4f3f0d-4210-4117-97e0-a8d54aea9c8d", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000004;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.133", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4a4f3f0d-4210-4117-97e0-a8d54aea9c8d", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000007", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "07b796be1962-1529998985.133", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.138", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1ca04597-b03f-49d0-be9a-e3aec39162f5", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000004;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1529998985.130", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.135", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1ca04597-b03f-49d0-be9a-e3aec39162f5", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000004;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.133", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000004;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "07b796be1962-1529998985.130", "Priority": "4", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.135", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4a4f3f0d-4210-4117-97e0-a8d54aea9c8d", "BridgeVideoSourceMode": "none", "Context": "osvpi_account_transfer", "Event": "BlindTransfer", "Extension": "203", "IsExternal": "Yes", "Privilege": "call,all", "Result": "Success", "SystemName": "07b796be1962", "TransfereeAccountCode": "150010001", "TransfereeCallerIDName": "", "TransfereeCallerIDNum": "202", "TransfereeChannel": "SIP/150010002-00000007", "TransfereeChannelState": "6", "TransfereeChannelStateDesc": "Up", "TransfereeConnectedLineName": "Andrew Garza", "TransfereeConnectedLineNum": "201", "TransfereeContext": "osvpi_account", "TransfereeExten": "", "TransfereeLanguage": "nl", "TransfereeLinkedid": "07b796be1962-1529998985.130", "TransfereePriority": "1", "TransfereeUniqueid": "07b796be1962-1529998985.138", "TransfererAccountCode": "150010001", "TransfererCallerIDName": "Andrew Garza", "TransfererCallerIDNum": "201", "TransfererChannel": "SIP/150010001-00000006", "TransfererChannelState": "6", "TransfererChannelStateDesc": "Up", "TransfererConnectedLineName": "", "TransfererConnectedLineNum": "", "TransfererContext": "osvpi_account_call_int", "TransfererExten": "202", "TransfererLanguage": "nl", "TransfererLinkedid": "07b796be1962-1529998985.130", "TransfererPriority": "12", "TransfererUniqueid": "07b796be1962-1529998985.130", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4a4f3f0d-4210-4117-97e0-a8d54aea9c8d", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000006", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1529998985.130", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.130", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4a4f3f0d-4210-4117-97e0-a8d54aea9c8d", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000007", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account_transfer", "Event": "BridgeLeave", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.138", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010001-00000006", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "07b796be1962-1529998985.130", "Priority": "4", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.130", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4a4f3f0d-4210-4117-97e0-a8d54aea9c8d", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000005;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730152", "Language": "en", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998993.164", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000005;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730152", "Language": "en", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998993.166", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "Andrew Garza", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000005;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998993.164", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000005;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998993.164", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000005;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998993.164", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000005;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "203", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730152", "Language": "en", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998993.166", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000005;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "203", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730152", "Language": "en", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998993.166", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000005;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "203", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730152", "Language": "en", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998993.166", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730152", "LocalOneAccountCode": "150010001", "LocalOneCallerIDName": "Andrew Garza", "LocalOneCallerIDNum": "203", "LocalOneChannel": "Local/ID730152@osvpi_route_phoneaccount-00000005;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "202", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "203", "LocalOneLanguage": "en", "LocalOneLinkedid": "07b796be1962-1529998985.130", "LocalOnePriority": "1", "LocalOneUniqueid": "07b796be1962-1529998993.164", "LocalOptimization": "Yes", "LocalTwoAccountCode": "150010001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "202", "LocalTwoChannel": "Local/ID730152@osvpi_route_phoneaccount-00000005;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "Andrew Garza", "LocalTwoConnectedLineNum": "203", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730152", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "07b796be1962-1529998985.130", "LocalTwoPriority": "1", "LocalTwoUniqueid": "07b796be1962-1529998993.166", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000007", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "Andrew Garza", "DestCallerIDNum": "203", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-00000005;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "202", "DestContext": "osvpi_route_phoneaccount", "DestExten": "203", "DestLanguage": "en", "DestLinkedid": "07b796be1962-1529998985.130", "DestPriority": "1", "DestUniqueid": "07b796be1962-1529998993.164", "DialString": "ID730152@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1529998985.130", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.138", "content": ""}, + {"AccountCode": "150010003", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010003-00000008", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998993.169", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "Andrew Garza", "CallerIDNum": "203", "Channel": "SIP/150010003-00000008", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998993.169", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "203", "Channel": "SIP/150010003-00000008", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1529998985.130", "OldAccountCode": "150010003", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998993.169", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "203", "Channel": "SIP/150010003-00000008", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998993.169", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000005;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "203", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "Andrew Garza", "DestCallerIDNum": "203", "DestChannel": "SIP/150010003-00000008", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "202", "DestContext": "osvpi_account", "DestExten": "203", "DestLanguage": "nl", "DestLinkedid": "07b796be1962-1529998985.130", "DestPriority": "1", "DestUniqueid": "07b796be1962-1529998993.169", "DialString": "150010003/150010003/172.20.0.13!!202", "Event": "DialBegin", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1529998985.130", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998993.166", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "203", "Channel": "SIP/150010003-00000008", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_account", "Event": "Newstate", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998993.169", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000005;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998993.164", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "203", "Channel": "SIP/150010003-00000008", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_account", "Event": "Newstate", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998993.169", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000005;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "203", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "Andrew Garza", "DestCallerIDNum": "203", "DestChannel": "SIP/150010003-00000008", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "202", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "07b796be1962-1529998985.130", "DestPriority": "1", "DestUniqueid": "07b796be1962-1529998993.169", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1529998985.130", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998993.166", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000005;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "203", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1529998985.130", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998993.166", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000005;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998993.164", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "79e45e0d-44d4-4ef2-aaab-a47d74ead87b", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "79e45e0d-44d4-4ef2-aaab-a47d74ead87b", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "203", "Channel": "SIP/150010003-00000008", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998993.169", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "79e45e0d-44d4-4ef2-aaab-a47d74ead87b", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000005;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "203", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1529998985.130", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998993.166", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000007", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "Andrew Garza", "DestCallerIDNum": "203", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-00000005;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "202", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "07b796be1962-1529998985.130", "DestPriority": "1", "DestUniqueid": "07b796be1962-1529998993.164", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1529998985.130", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.138", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4afc51a0-0932-4876-a1f5-5f5c9b8a1f37", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4afc51a0-0932-4876-a1f5-5f5c9b8a1f37", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000005;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998993.164", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4afc51a0-0932-4876-a1f5-5f5c9b8a1f37", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000007", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1529998985.130", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.138", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4afc51a0-0932-4876-a1f5-5f5c9b8a1f37", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000007", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1529998985.130", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.138", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "79e45e0d-44d4-4ef2-aaab-a47d74ead87b", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000005;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "203", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1529998985.130", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998993.166", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "79e45e0d-44d4-4ef2-aaab-a47d74ead87b", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000007", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1529998985.130", "Priority": "12", "Privilege": "call,all", "SwapUniqueid": "07b796be1962-1529998993.166", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.138", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4afc51a0-0932-4876-a1f5-5f5c9b8a1f37", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000005;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998993.164", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4afc51a0-0932-4876-a1f5-5f5c9b8a1f37", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "203", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000005;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998993.164", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000005;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "203", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "07b796be1962-1529998985.130", "Priority": "4", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998993.166", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "79e45e0d-44d4-4ef2-aaab-a47d74ead87b", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000007", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1529998985.130", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.138", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "79e45e0d-44d4-4ef2-aaab-a47d74ead87b", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "203", "Channel": "SIP/150010003-00000008", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998993.169", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "79e45e0d-44d4-4ef2-aaab-a47d74ead87b", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010002-00000007", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "07b796be1962-1529998985.130", "Priority": "4", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998985.138", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "203", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010003-00000008", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "07b796be1962-1529998985.130", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998993.169", "content": ""} +] \ No newline at end of file diff --git a/tests/fixtures/xfer_blind/xfer_blind_abbcac.json b/tests/fixtures/xfer_blind/xfer_blind_abbcac.json index f42db39..c3c1d26 100644 --- a/tests/fixtures/xfer_blind/xfer_blind_abbcac.json +++ b/tests/fixtures/xfer_blind/xfer_blind_abbcac.json @@ -1,644 +1,91 @@ [ - {"content": "", "Status": "Fully Booted", "Privilege": "system,all", "Event": "FullyBooted"}, - {"Exten": "202", "AccountCode": "150010003", "Channel": "SIP/150010003-0000000f", "CallerIDName": "", "Privilege": "call,all", "Event": "Newchannel", "ChannelState": "0", "content": "", "Context": "osvpi_account", "CallerIDNum": "150010003", "ChannelStateDesc": "Down", "Uniqueid": "63f2f9ce924a-1501834121.34"}, - {"content": "", "Privilege": "dialplan,all", "Value": "sip:150010003@10.13.37.110:5080", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "SIPURI"}, - {"content": "", "Privilege": "dialplan,all", "Value": "10.13.37.110", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "SIPDOMAIN"}, - {"content": "", "Privilege": "dialplan,all", "Value": "943614477", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "SIPCALLID"}, - {"content": "", "Privilege": "dialplan,all", "Value": "15001", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "__client_id"}, - {"content": "", "Privilege": "dialplan,all", "Value": "150010003", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "__account_id"}, - {"content": "", "Privilege": "dialplan,all", "Value": "no", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "__record_call"}, - {"content": "", "Privilege": "dialplan,all", "Value": "31", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "__intprefix"}, - {"content": "", "Privilege": "dialplan,all", "Value": "4", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "__limit_account"}, - {"content": "", "Privilege": "dialplan,all", "Value": "0", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "__limit_client"}, - {"content": "", "Privilege": "dialplan,all", "Value": "1", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "__hide_ext_cliname"}, - {"content": "", "Privilege": "dialplan,all", "Value": "osvpi_account_transfer", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "__TRANSFER_CONTEXT"}, - {"content": "", "ConnectedLineNum": "", "Privilege": "call,all", "Channel": "SIP/150010003-0000000f", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "CallerIDNum": "150010003", "CallerIDName": "", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newstate", "ChannelState": "4"}, - {"content": "", "AppData": "0?GotoIf(0?osvpi_proc_hangup_insecure,202,1)", "Priority": "1", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account", "Extension": "202", "Application": "ExecIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "osvpi_proc_check_forwards,s,1", "Priority": "2", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account", "Extension": "202", "Application": "Gosub", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "0", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "LOCAL(ARGC)"}, - {"content": "", "AppData": "0?check,1", "Priority": "1", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_check_forwards", "Extension": "s", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "LOCAL(tmp)=70", "Priority": "2", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_check_forwards", "Extension": "s", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "70", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "LOCAL(tmp)"}, - {"content": "", "AppData": "0?Goto(init,1)", "Priority": "3", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_check_forwards", "Extension": "s", "Application": "ExecIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "1?Goto(init,1)", "Priority": "4", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_check_forwards", "Extension": "s", "Application": "ExecIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "MASTER_CHANNEL(SIP_MAX_FORWARDS)=16", "Priority": "1", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_check_forwards", "Extension": "init", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "16", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "SIP_MAX_FORWARDS"}, - {"content": "", "AppData": "DEBUG: MaxForwards: initialized to: 16", "Priority": "2", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_check_forwards", "Extension": "init", "Application": "NoOp", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "", "Priority": "3", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_check_forwards", "Extension": "init", "Application": "Return", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "GOSUB_RETVAL"}, - {"content": "", "AppData": "0?osvpi_account_transfer,202,1", "Priority": "3", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account", "Extension": "202", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "ENTRY POINT username=150010003,ip=172.20.0.13/172.20.0.13,from=sip:150010003@10.13.37.110,contact=sip:150010003@10.13.37.110:5080,ua=Linphone/3.6.1 (eXosip2/4.1.0),name=,num=150010003,pres=allowed_not_screened", "Priority": "4", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account", "Extension": "202", "Application": "NoOp", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "is_transfer=0", "Priority": "5", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account", "Extension": "202", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "0", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "is_transfer"}, - {"content": "", "AppData": "CDR(amaflags)=BILLING", "Priority": "6", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account", "Extension": "202", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "user_privacy=0", "Priority": "7", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account", "Extension": "202", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "0", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "user_privacy"}, - {"content": "", "AppData": "1?Set(__supports_progress=1)", "Priority": "8", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account", "Extension": "202", "Application": "ExecIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "1", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "__supports_progress"}, - {"content": "", "AppData": "osvpi_proc_record_call,s-no,1(out,15001,150010003)", "Priority": "9", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account", "Extension": "202", "Application": "Gosub", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "out", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "LOCAL(ARG1)"}, - {"content": "", "Privilege": "dialplan,all", "Value": "15001", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "LOCAL(ARG2)"}, - {"content": "", "Privilege": "dialplan,all", "Value": "150010003", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "LOCAL(ARG3)"}, - {"content": "", "Privilege": "dialplan,all", "Value": "3", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "LOCAL(ARGC)"}, - {"content": "", "AppData": "", "Priority": "1", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_record_call", "Extension": "s-no", "Application": "Return", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "GOSUB_RETVAL"}, - {"content": "", "AppData": "l_tmp=", "Priority": "10", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account", "Extension": "202", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "l_tmp"}, - {"content": "", "AppData": "1?Set(l_tmp=)", "Priority": "11", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account", "Extension": "202", "Application": "ExecIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "l_tmp"}, - {"content": "", "AppData": "1?checkprivacy", "Priority": "12", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account", "Extension": "202", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "0?Set(CALLERID(pres)=allowed_passed_screen)", "Priority": "16", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account", "Extension": "202", "Application": "ExecIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "0?Set(CALLERID(pres)=prohib_passed_screen)", "Priority": "17", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account", "Extension": "202", "Application": "ExecIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "0?Set(CHANNEL(musicclass)=)", "Priority": "18", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account", "Extension": "202", "Application": "ExecIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "1?continue", "Priority": "19", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account", "Extension": "202", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "osvpi_proc_set_i18n_region,31,1", "Priority": "22", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account", "Extension": "202", "Application": "Gosub", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "0", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "LOCAL(ARGC)"}, - {"content": "", "AppData": "i18n_region=NL", "Priority": "1", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_set_i18n_region", "Extension": "31", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "NL", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "i18n_region"}, - {"content": "", "AppData": "", "Priority": "2", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_set_i18n_region", "Extension": "31", "Application": "Return", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "GOSUB_RETVAL"}, - {"content": "", "AppData": "osvpi_account_emergency_NL,202,1", "Priority": "23", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account", "Extension": "202", "Application": "Goto", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "osvpi_account_no_emergency,202,1", "Priority": "1", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_emergency_NL", "Extension": "202", "Application": "Goto", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "osvpi_account,202,no-emergency", "Priority": "1", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_no_emergency", "Extension": "202", "Application": "Goto", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "osvpi_account_clean,202,1", "Priority": "24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account", "Extension": "202", "Application": "Goto", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "return=osvpi_account_clean", "Priority": "1", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_clean", "Extension": "202", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "osvpi_account_clean", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "return"}, - {"content": "", "AppData": "osvpi_return_to_canonical,31i202,1", "Priority": "2", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_clean", "Extension": "202", "Application": "Goto", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "31i202", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "INVALID_EXTEN"}, - {"content": "", "AppData": "osvpi_account_clean,202,local", "Priority": "1", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_return_to_canonical", "Extension": "i", "Application": "Goto", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "0?extern", "Priority": "3", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_clean", "Extension": "202", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "osvpi_proc_set_callerid,202,1(150010003,0,0)", "Priority": "4", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_clean", "Extension": "202", "Application": "Gosub", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "150010003", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "LOCAL(ARG1)"}, - {"content": "", "Privilege": "dialplan,all", "Value": "0", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "LOCAL(ARG2)"}, - {"content": "", "Privilege": "dialplan,all", "Value": "0", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "LOCAL(ARG3)"}, - {"content": "", "Privilege": "dialplan,all", "Value": "3", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "LOCAL(ARGC)"}, - {"content": "", "AppData": "0?done", "Priority": "1", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_set_callerid", "Extension": "202", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "1", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "ODBCROWS"}, - {"content": "", "Privilege": "dialplan,all", "Value": "SUCCESS", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "ODBCSTATUS"}, - {"content": "", "Privilege": "dialplan,all", "Value": "set,privacy,name,number_int,number_ext", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "~ODBCFIELDS~"}, - {"content": "", "AppData": "ARRAY(LOCAL(set),LOCAL(privacy),LOCAL(name),LOCAL(number_int),LOCAL(number_ext))=1,0,Julia Rhodes,203,+31150010001", "Priority": "2", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_set_callerid", "Extension": "202", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "1", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "LOCAL(set)"}, - {"content": "", "Privilege": "dialplan,all", "Value": "0", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "LOCAL(privacy)"}, - {"content": "", "Privilege": "dialplan,all", "Value": "Julia Rhodes", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "LOCAL(name)"}, - {"content": "", "Privilege": "dialplan,all", "Value": "203", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "LOCAL(number_int)"}, - {"content": "", "Privilege": "dialplan,all", "Value": "+31150010001", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "LOCAL(number_ext)"}, - {"content": "", "AppData": "0?presentation", "Priority": "3", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_set_callerid", "Extension": "202", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "CALLERID(pres)=allowed_passed_screen", "Priority": "4", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_set_callerid", "Extension": "202", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "CALLERID(name)=Julia Rhodes", "Priority": "5", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_set_callerid", "Extension": "202", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "call,all", "Channel": "SIP/150010003-0000000f", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDNum": "150010003", "CallerIDName": "Julia Rhodes", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "NewCallerid"}, - {"content": "", "AppData": "CALLERID(num)=203", "Priority": "6", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_set_callerid", "Extension": "202", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "call,all", "Channel": "SIP/150010003-0000000f", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDNum": "203", "CallerIDName": "Julia Rhodes", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "NewCallerid"}, - {"content": "", "AppData": "0?Set(CALLERID(pres)=prohib_passed_screen)", "Priority": "7", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_set_callerid", "Extension": "202", "Application": "ExecIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "CALLERID(ANI)=203", "Priority": "8", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_set_callerid", "Extension": "202", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "osvpi_proc_set_callerid_internal,202,1", "Priority": "9", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_set_callerid", "Extension": "202", "Application": "Gosub", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "LOCAL(ARG1)"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "LOCAL(ARG2)"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "LOCAL(ARG3)"}, - {"content": "", "Privilege": "dialplan,all", "Value": "0", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "LOCAL(ARGC)"}, - {"content": "", "AppData": "1?nop", "Priority": "1", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_set_callerid_internal", "Extension": "202", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "0?Set(CALLERID(ANI)=20)", "Priority": "5", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_set_callerid_internal", "Extension": "202", "Application": "ExecIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "", "Priority": "6", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_set_callerid_internal", "Extension": "202", "Application": "Return", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "GOSUB_RETVAL"}, - {"content": "", "AppData": "", "Priority": "10", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_set_callerid", "Extension": "202", "Application": "Return", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "GOSUB_RETVAL"}, - {"content": "", "AppData": "3?osvpi_account_call_int,202,1:i,1", "Priority": "5", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_clean", "Extension": "202", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "osvpi_proc_check_limits,202,1", "Priority": "1", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_call_int", "Extension": "202", "Application": "Gosub", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "0", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "LOCAL(ARGC)"}, - {"content": "", "AppData": "DEBUG: call_limit: client 0/0 and account 0/4", "Priority": "1", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_check_limits", "Extension": "202", "Application": "NoOp", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "0?osvpi_handle_limit,202,client", "Priority": "2", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_check_limits", "Extension": "202", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "0?osvpi_handle_limit,202,account", "Priority": "3", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_check_limits", "Extension": "202", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "GROUP(account_lim)=150010003", "Priority": "4", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_check_limits", "Extension": "202", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "GROUP(client_lim)=15001", "Priority": "5", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_check_limits", "Extension": "202", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "", "Priority": "6", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_check_limits", "Extension": "202", "Application": "Return", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "GOSUB_RETVAL"}, - {"content": "", "AppData": "osvpi_proc_check_recurse,202,1(15001)", "Priority": "2", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_call_int", "Extension": "202", "Application": "Gosub", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "15001", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "LOCAL(ARG1)"}, - {"content": "", "Privilege": "dialplan,all", "Value": "1", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "LOCAL(ARGC)"}, - {"content": "", "AppData": "LOCAL(exten)=15001:202", "Priority": "1", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_check_recurse", "Extension": "202", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "15001:202", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "LOCAL(exten)"}, - {"content": "", "AppData": "Recursion checking 15001:202 against ", "Priority": "2", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_check_recurse", "Extension": "202", "Application": "NoOp", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "LOCAL(n)=0", "Priority": "3", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_check_recurse", "Extension": "202", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "0", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "LOCAL(n)"}, - {"content": "", "AppData": "LOCAL(i)=1", "Priority": "4", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_check_recurse", "Extension": "202", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "1", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "LOCAL(i)"}, - {"content": "", "AppData": "1?add", "Priority": "5", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_check_recurse", "Extension": "202", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "__EXTEN_LIST=15001:202 ", "Priority": "9", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_check_recurse", "Extension": "202", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "15001:202 ", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "__EXTEN_LIST"}, - {"content": "", "AppData": "__EXTEN_LIST_LAST_EDIT_TIME=1501834121", "Priority": "10", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_check_recurse", "Extension": "202", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "1501834121", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "__EXTEN_LIST_LAST_EDIT_TIME"}, - {"content": "", "AppData": "", "Priority": "11", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_check_recurse", "Extension": "202", "Application": "Return", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "GOSUB_RETVAL"}, - {"content": "", "AppData": "__ORIG_EXTEN=202", "Priority": "3", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_call_int", "Extension": "202", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "202", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "__ORIG_EXTEN"}, - {"content": "", "Privilege": "dialplan,all", "Value": "0", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "ODBCROWS"}, - {"content": "", "Privilege": "dialplan,all", "Value": "NODATA", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "ODBCSTATUS"}, - {"content": "", "AppData": "ARRAY(conference_id,user_password,admin_password,conference_language)=", "Priority": "4", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_call_int", "Extension": "202", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "conference_id"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "user_password"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "admin_password"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "conference_language"}, - {"content": "", "AppData": "0?osvpi_route_conference,ID,1", "Priority": "5", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_call_int", "Extension": "202", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "0", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "ODBCROWS"}, - {"content": "", "Privilege": "dialplan,all", "Value": "NODATA", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "ODBCSTATUS"}, - {"content": "", "AppData": "ARRAY(route_id,client_timezone)=", "Priority": "6", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_call_int", "Extension": "202", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "route_id"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "client_timezone"}, - {"content": "", "AppData": "0?osvpi_route_root,202,restart", "Priority": "7", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_call_int", "Extension": "202", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "0", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "ODBCROWS"}, - {"content": "", "Privilege": "dialplan,all", "Value": "NODATA", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "ODBCSTATUS"}, - {"content": "", "AppData": "ARRAY(all_extensions,limited_extensions,password,account_spy_language)=", "Priority": "8", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_call_int", "Extension": "202", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "all_extensions"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "limited_extensions"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "password"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "account_spy_language"}, - {"content": "", "AppData": "0?osvpi_account_spy,202,1", "Priority": "9", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_call_int", "Extension": "202", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "1", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "ODBCROWS"}, - {"content": "", "Privilege": "dialplan,all", "Value": "SUCCESS", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "ODBCSTATUS"}, - {"content": "", "Privilege": "dialplan,all", "Value": "interfaces", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "~ODBCFIELDS~"}, - {"content": "", "AppData": "ARRAY(interfaces)=Local/ID710151@osvpi_route_phoneaccount", "Priority": "10", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_call_int", "Extension": "202", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "Local/ID710151@osvpi_route_phoneaccount", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "interfaces"}, - {"content": "", "AppData": "0?osvpi_handle_unallocated,202,1", "Priority": "11", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_call_int", "Extension": "202", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "Local/ID710151@osvpi_route_phoneaccount", "Priority": "12", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_call_int", "Extension": "202", "Application": "Dial", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "DIALSTATUS"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "DIALEDPEERNUMBER"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "DIALEDPEERNAME"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "ANSWEREDTIME"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "DIALEDTIME"}, - {"Exten": "ID710151", "AccountCode": "", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;1", "CallerIDName": "", "Privilege": "call,all", "Event": "Newchannel", "ChannelState": "0", "content": "", "Context": "osvpi_route_phoneaccount", "CallerIDNum": "", "ChannelStateDesc": "Down", "Uniqueid": "63f2f9ce924a-1501834121.35"}, - {"Exten": "ID710151", "AccountCode": "", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "CallerIDName": "", "Privilege": "call,all", "Event": "Newchannel", "ChannelState": "4", "content": "", "Context": "osvpi_route_phoneaccount", "CallerIDNum": "", "ChannelStateDesc": "Ring", "Uniqueid": "63f2f9ce924a-1501834121.36"}, - {"content": "", "Privilege": "dialplan,all", "Value": "ID710151@osvpi_route_phoneaccount", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;1", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.35", "Variable": "DIALEDPEERNUMBER"}, - {"content": "", "Privilege": "call,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;1", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDNum": "202", "CallerIDName": "", "Uniqueid": "63f2f9ce924a-1501834121.35", "Event": "NewCallerid"}, - {"content": "", "Exten": "ID710151", "Uniqueid1": "63f2f9ce924a-1501834121.35", "Channel1": "Local/ID710151@osvpi_route_phoneaccount-00000009;1", "LocalOptimization": "Yes", "Context": "osvpi_route_phoneaccount", "Channel2": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Privilege": "call,all", "Uniqueid2": "63f2f9ce924a-1501834121.36", "Event": "LocalBridge"}, - {"ConnectedLineNum": "", "Privilege": "call,all", "Destination": "Local/ID710151@osvpi_route_phoneaccount-00000009;1", "Channel": "SIP/150010003-0000000f", "SubEvent": "Begin", "CallerIDName": "Julia Rhodes", "ConnectedLineName": "", "Event": "Dial", "content": "", "UniqueID": "63f2f9ce924a-1501834121.34", "CallerIDNum": "203", "Dialstring": "ID710151@osvpi_route_phoneaccount", "DestUniqueID": "63f2f9ce924a-1501834121.35"}, - {"content": "", "Privilege": "dialplan,all", "Value": "1", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "ODBCROWS"}, - {"content": "", "Privilege": "dialplan,all", "Value": "SUCCESS", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "ODBCSTATUS"}, - {"content": "", "Privilege": "dialplan,all", "Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "~ODBCFIELDS~"}, - {"content": "", "AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=150010002,accountid,dutch,from,,0", "Priority": "1", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Context": "osvpi_route_phoneaccount", "Extension": "ID710151", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.36", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "150010002", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "__dst_account_id"}, - {"content": "", "Privilege": "dialplan,all", "Value": "accountid", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "l_mangle_did"}, - {"content": "", "Privilege": "dialplan,all", "Value": "dutch", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "l_mangle_cli"}, - {"content": "", "Privilege": "dialplan,all", "Value": "from", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "l_cli_header"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "l_primary_pickupgroup"}, - {"content": "", "Privilege": "dialplan,all", "Value": "0", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "app_account"}, - {"content": "", "AppData": "0?vialer", "Priority": "2", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Context": "osvpi_route_phoneaccount", "Extension": "ID710151", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501834121.36", "Event": "Newexten"}, - {"content": "", "AppData": "_PICKUPMARK=", "Priority": "3", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Context": "osvpi_route_phoneaccount", "Extension": "ID710151", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.36", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "_PICKUPMARK"}, - {"content": "", "AppData": "l_trunk=0", "Priority": "4", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Context": "osvpi_route_phoneaccount", "Extension": "ID710151", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.36", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "0", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "l_trunk"}, - {"content": "", "AppData": "osvpi_route_account,ID710151,1", "Priority": "5", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Context": "osvpi_route_phoneaccount", "Extension": "ID710151", "Application": "Goto", "Uniqueid": "63f2f9ce924a-1501834121.36", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "1", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "ODBCROWS"}, - {"content": "", "Privilege": "dialplan,all", "Value": "SUCCESS", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "ODBCSTATUS"}, - {"content": "", "Privilege": "dialplan,all", "Value": "proxy", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "~ODBCFIELDS~"}, - {"content": "", "AppData": "ARRAY(l_proxy)=172.20.0.13", "Priority": "1", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Context": "osvpi_route_account", "Extension": "ID710151", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.36", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "172.20.0.13", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "l_proxy"}, - {"content": "", "AppData": "osvpi_proc_mangle_number,accountid,1(150010002,202)", "Priority": "2", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Context": "osvpi_route_account", "Extension": "ID710151", "Application": "Gosub", "Uniqueid": "63f2f9ce924a-1501834121.36", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "150010002", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "LOCAL(ARG1)"}, - {"content": "", "Privilege": "dialplan,all", "Value": "202", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "LOCAL(ARG2)"}, - {"content": "", "Privilege": "dialplan,all", "Value": "2", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "LOCAL(ARGC)"}, - {"content": "", "AppData": "MANGLED_EXTEN=150010002", "Priority": "1", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Context": "osvpi_proc_mangle_number", "Extension": "accountid", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.36", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "150010002", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "MANGLED_EXTEN"}, - {"content": "", "AppData": "", "Priority": "2", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Context": "osvpi_proc_mangle_number", "Extension": "accountid", "Application": "Return", "Uniqueid": "63f2f9ce924a-1501834121.36", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "GOSUB_RETVAL"}, - {"content": "", "AppData": "l_did=150010002", "Priority": "3", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Context": "osvpi_route_account", "Extension": "ID710151", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.36", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "150010002", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "l_did"}, - {"content": "", "AppData": "osvpi_proc_mangle_number,dutch,1(150010002,203)", "Priority": "4", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Context": "osvpi_route_account", "Extension": "ID710151", "Application": "Gosub", "Uniqueid": "63f2f9ce924a-1501834121.36", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "150010002", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "LOCAL(ARG1)"}, - {"content": "", "Privilege": "dialplan,all", "Value": "203", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "LOCAL(ARG2)"}, - {"content": "", "Privilege": "dialplan,all", "Value": "2", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "LOCAL(ARGC)"}, - {"content": "", "AppData": "1?fullzero,1", "Priority": "1", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Context": "osvpi_proc_mangle_number", "Extension": "dutch", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501834121.36", "Event": "Newexten"}, - {"content": "", "AppData": "MANGLED_EXTEN=203", "Priority": "1", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Context": "osvpi_proc_mangle_number", "Extension": "fullzero", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.36", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "203", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "MANGLED_EXTEN"}, - {"content": "", "AppData": "", "Priority": "2", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Context": "osvpi_proc_mangle_number", "Extension": "fullzero", "Application": "Return", "Uniqueid": "63f2f9ce924a-1501834121.36", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "GOSUB_RETVAL"}, - {"content": "", "AppData": "l_mangle_cli_hdr=from-dutch", "Priority": "5", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Context": "osvpi_route_account", "Extension": "ID710151", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.36", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "from-dutch", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "l_mangle_cli_hdr"}, - {"content": "", "AppData": "l_fromuser=", "Priority": "6", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Context": "osvpi_route_account", "Extension": "ID710151", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.36", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "l_fromuser"}, - {"content": "", "AppData": "1?Set(l_fromuser=203)", "Priority": "7", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Context": "osvpi_route_account", "Extension": "ID710151", "Application": "ExecIf", "Uniqueid": "63f2f9ce924a-1501834121.36", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "203", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "l_fromuser"}, - {"content": "", "Privilege": "dialplan,all", "Value": "1", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "ODBCROWS"}, - {"content": "", "Privilege": "dialplan,all", "Value": "SUCCESS", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "ODBCSTATUS"}, - {"content": "", "Privilege": "dialplan,all", "Value": "IF((SELECT 1 FROM baseaccount_account ba INNER JOIN userdestination_selecteduserdestination udsud ON udsud.phoneaccount_id = ba.id INNER JOIN userdestination_userdestination udud ON udud.id = udsud.userdestination_id INNER JOIN crm_cloudctiuser cccu O", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "~ODBCFIELDS~"}, - {"content": "", "AppData": "ARRAY(cloudcti)=0", "Priority": "8", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Context": "osvpi_route_account", "Extension": "ID710151", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.36", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "0", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "cloudcti"}, - {"content": "", "AppData": "1?skipcloudcti", "Priority": "9", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Context": "osvpi_route_account", "Extension": "ID710151", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501834121.36", "Event": "Newexten"}, - {"content": "", "AppData": "osvpi_proc_proxy_out,202,1", "Priority": "11", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Context": "osvpi_route_account", "Extension": "ID710151", "Application": "Goto", "Uniqueid": "63f2f9ce924a-1501834121.36", "Event": "Newexten"}, - {"content": "", "AppData": "X-Accountcode: 150010002", "Priority": "1", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Context": "osvpi_proc_proxy_out", "Extension": "202", "Application": "SIPAddHeader", "Uniqueid": "63f2f9ce924a-1501834121.36", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "X-Accountcode: 150010002", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "__SIPADDHEADER01"}, - {"content": "", "AppData": "X-Insecure-Protection: geheim", "Priority": "2", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Context": "osvpi_proc_proxy_out", "Extension": "202", "Application": "SIPAddHeader", "Uniqueid": "63f2f9ce924a-1501834121.36", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "X-Insecure-Protection: geheim", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "__SIPADDHEADER02"}, - {"content": "", "AppData": "X-Mangle-Cli: from-dutch", "Priority": "3", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Context": "osvpi_proc_proxy_out", "Extension": "202", "Application": "SIPAddHeader", "Uniqueid": "63f2f9ce924a-1501834121.36", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "X-Mangle-Cli: from-dutch", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "__SIPADDHEADER03"}, - {"content": "", "AppData": "_dial_options_callaccept=", "Priority": "4", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Context": "osvpi_proc_proxy_out", "Extension": "202", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.36", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "_dial_options_callaccept"}, - {"content": "", "AppData": "_dial_options_callnotify=", "Priority": "5", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Context": "osvpi_proc_proxy_out", "Extension": "202", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.36", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "_dial_options_callnotify"}, - {"content": "", "AppData": "0?Set(l_proxy=opensipsfg)", "Priority": "6", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Context": "osvpi_proc_proxy_out", "Extension": "202", "Application": "ExecIf", "Uniqueid": "63f2f9ce924a-1501834121.36", "Event": "Newexten"}, - {"content": "", "AppData": "l_extra_options=", "Priority": "7", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Context": "osvpi_proc_proxy_out", "Extension": "202", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.36", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "l_extra_options"}, - {"content": "", "AppData": "SIP/150010002/150010002/172.20.0.13!!203,,", "Priority": "8", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Context": "osvpi_proc_proxy_out", "Extension": "202", "Application": "Dial", "Uniqueid": "63f2f9ce924a-1501834121.36", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "DIALSTATUS"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "DIALEDPEERNUMBER"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "DIALEDPEERNAME"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "ANSWEREDTIME"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "DIALEDTIME"}, - {"Exten": "", "AccountCode": "150010002", "Channel": "SIP/150010002-00000010", "CallerIDName": "", "Privilege": "call,all", "Event": "Newchannel", "ChannelState": "0", "content": "", "Context": "osvpi_account", "CallerIDNum": "", "ChannelStateDesc": "Down", "Uniqueid": "63f2f9ce924a-1501834121.37"}, - {"content": "", "Privilege": "dialplan,all", "Value": "2d4666722b9e21df0683bb462a1023e4@test.voipgrid.nl", "Channel": "SIP/150010002-00000010", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.37", "Variable": "SIPCALLID"}, - {"content": "", "Privilege": "dialplan,all", "Value": "15001", "Channel": "SIP/150010002-00000010", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.37", "Variable": "__client_id"}, - {"content": "", "Privilege": "dialplan,all", "Value": "150010002", "Channel": "SIP/150010002-00000010", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.37", "Variable": "__account_id"}, - {"content": "", "Privilege": "dialplan,all", "Value": "no", "Channel": "SIP/150010002-00000010", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.37", "Variable": "__record_call"}, - {"content": "", "Privilege": "dialplan,all", "Value": "31", "Channel": "SIP/150010002-00000010", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.37", "Variable": "__intprefix"}, - {"content": "", "Privilege": "dialplan,all", "Value": "4", "Channel": "SIP/150010002-00000010", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.37", "Variable": "__limit_account"}, - {"content": "", "Privilege": "dialplan,all", "Value": "0", "Channel": "SIP/150010002-00000010", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.37", "Variable": "__limit_client"}, - {"content": "", "Privilege": "dialplan,all", "Value": "1", "Channel": "SIP/150010002-00000010", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.37", "Variable": "__hide_ext_cliname"}, - {"content": "", "Privilege": "dialplan,all", "Value": "osvpi_account_transfer", "Channel": "SIP/150010002-00000010", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.37", "Variable": "__TRANSFER_CONTEXT"}, - {"content": "", "Privilege": "dialplan,all", "Value": "150010002/150010002/172.20.0.13!!203", "Channel": "SIP/150010002-00000010", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.37", "Variable": "DIALEDPEERNUMBER"}, - {"content": "", "Privilege": "call,all", "Channel": "SIP/150010002-00000010", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDNum": "202", "CallerIDName": "", "Uniqueid": "63f2f9ce924a-1501834121.37", "Event": "NewCallerid"}, - {"ConnectedLineNum": "202", "Privilege": "call,all", "Destination": "SIP/150010002-00000010", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "SubEvent": "Begin", "CallerIDName": "Julia Rhodes", "ConnectedLineName": "", "Event": "Dial", "content": "", "UniqueID": "63f2f9ce924a-1501834121.36", "CallerIDNum": "203", "Dialstring": "150010002/150010002/172.20.0.13!!203", "DestUniqueID": "63f2f9ce924a-1501834121.37"}, - {"content": "", "ConnectedLineNum": "203", "Privilege": "call,all", "Channel": "SIP/150010002-00000010", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Julia Rhodes", "CallerIDNum": "202", "CallerIDName": "", "Uniqueid": "63f2f9ce924a-1501834121.37", "Event": "Newstate", "ChannelState": "5"}, - {"content": "", "ConnectedLineNum": "203", "Privilege": "call,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;1", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Julia Rhodes", "CallerIDNum": "202", "CallerIDName": "", "Uniqueid": "63f2f9ce924a-1501834121.35", "Event": "Newstate", "ChannelState": "5"}, - {"content": "", "ConnectedLineNum": "203", "Privilege": "call,all", "Channel": "SIP/150010002-00000010", "ChannelStateDesc": "Up", "ConnectedLineName": "Julia Rhodes", "CallerIDNum": "202", "CallerIDName": "", "Uniqueid": "63f2f9ce924a-1501834121.37", "Event": "Newstate", "ChannelState": "6"}, - {"content": "", "Privilege": "dialplan,all", "Value": "ANSWER", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "DIALSTATUS"}, - {"content": "", "Privilege": "dialplan,all", "Value": "SIP/150010002-00000010", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "DIALEDPEERNAME"}, - {"content": "", "Privilege": "dialplan,all", "Value": "150010002/150010002/172.20.0.13!!203", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "DIALEDPEERNUMBER"}, - {"content": "", "Privilege": "dialplan,all", "Value": "SIP/150010002-00000010", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "BRIDGEPEER"}, - {"content": "", "Privilege": "dialplan,all", "Value": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Channel": "SIP/150010002-00000010", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.37", "Variable": "BRIDGEPEER"}, - {"content": "", "ConnectedLineNum": "202", "Privilege": "call,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "ChannelStateDesc": "Up", "ConnectedLineName": "", "CallerIDNum": "203", "CallerIDName": "Julia Rhodes", "Uniqueid": "63f2f9ce924a-1501834121.36", "Event": "Newstate", "ChannelState": "6"}, - {"content": "", "ConnectedLineNum": "203", "Privilege": "call,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;1", "ChannelStateDesc": "Up", "ConnectedLineName": "Julia Rhodes", "CallerIDNum": "202", "CallerIDName": "", "Uniqueid": "63f2f9ce924a-1501834121.35", "Event": "Newstate", "ChannelState": "6"}, - {"content": "", "OldAccountCode": "150010003", "Privilege": "call,all", "AccountCode": "150010003", "Uniqueid": "63f2f9ce924a-1501834121.37", "Channel": "SIP/150010002-00000010", "Event": "NewAccountCode"}, - {"content": "", "Privilege": "dialplan,all", "Value": "ANSWER", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "DIALSTATUS"}, - {"content": "", "Bridgestate": "Link", "Uniqueid1": "63f2f9ce924a-1501834121.36", "Channel1": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "CallerID1": "203", "Channel2": "SIP/150010002-00000010", "Privilege": "call,all", "Uniqueid2": "63f2f9ce924a-1501834121.37", "CallerID2": "202", "Event": "Bridge", "Bridgetype": "core"}, - {"content": "", "Privilege": "dialplan,all", "Value": "Local/ID710151@osvpi_route_phoneaccount-00000009;1", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "DIALEDPEERNAME"}, - {"content": "", "Privilege": "dialplan,all", "Value": "SIP/150010002-00000010", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "BRIDGEPEER"}, - {"content": "", "Privilege": "dialplan,all", "Value": "ID710151@osvpi_route_phoneaccount", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "DIALEDPEERNUMBER"}, - {"content": "", "Privilege": "dialplan,all", "Value": "2d4666722b9e21df0683bb462a1023e4@test.voipgrid.nl", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "BRIDGEPVTCALLID"}, - {"content": "", "Privilege": "dialplan,all", "Value": "Local/ID710151@osvpi_route_phoneaccount-00000009;1", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "BRIDGEPEER"}, - {"content": "", "Privilege": "dialplan,all", "Value": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Channel": "SIP/150010002-00000010", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.37", "Variable": "BRIDGEPEER"}, - {"content": "", "Privilege": "dialplan,all", "Value": "SIP/150010002-00000010", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "BRIDGEPEER"}, - {"content": "", "Privilege": "dialplan,all", "Value": "2d4666722b9e21df0683bb462a1023e4@test.voipgrid.nl", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "BRIDGEPVTCALLID"}, - {"content": "", "Privilege": "dialplan,all", "Value": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Channel": "SIP/150010002-00000010", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.37", "Variable": "BRIDGEPEER"}, - {"content": "", "Privilege": "dialplan,all", "Value": "SIP/150010003-0000000f", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;1", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.35", "Variable": "BRIDGEPEER"}, - {"content": "", "ConnectedLineNum": "", "Privilege": "call,all", "Channel": "SIP/150010003-0000000f", "ChannelStateDesc": "Up", "ConnectedLineName": "", "CallerIDNum": "203", "CallerIDName": "Julia Rhodes", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newstate", "ChannelState": "6"}, - {"content": "", "OldAccountCode": "150010003", "Privilege": "call,all", "AccountCode": "150010003", "Uniqueid": "63f2f9ce924a-1501834121.35", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;1", "Event": "NewAccountCode"}, - {"content": "", "Bridgestate": "Link", "Uniqueid1": "63f2f9ce924a-1501834121.34", "Channel1": "SIP/150010003-0000000f", "CallerID1": "203", "Channel2": "Local/ID710151@osvpi_route_phoneaccount-00000009;1", "Privilege": "call,all", "Uniqueid2": "63f2f9ce924a-1501834121.35", "CallerID2": "202", "Event": "Bridge", "Bridgetype": "core"}, - {"content": "", "Privilege": "dialplan,all", "Value": "Local/ID710151@osvpi_route_phoneaccount-00000009;1", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "BRIDGEPEER"}, - {"content": "", "Privilege": "dialplan,all", "Value": "SIP/150010003-0000000f", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;1", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.35", "Variable": "BRIDGEPEER"}, - {"content": "", "Privilege": "dialplan,all", "Value": "943614477", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;1", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.35", "Variable": "BRIDGEPVTCALLID"}, - {"content": "", "Privilege": "dialplan,all", "Value": "Local/ID710151@osvpi_route_phoneaccount-00000009;1", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "BRIDGEPEER"}, - {"content": "", "Privilege": "dialplan,all", "Value": "SIP/150010003-0000000f", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;1", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.35", "Variable": "BRIDGEPEER"}, - {"content": "", "Privilege": "dialplan,all", "Value": "943614477", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;1", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.35", "Variable": "BRIDGEPVTCALLID"}, - {"content": "", "CloneState": "Up", "Clone": "SIP/150010002-00000010", "Original": "Local/ID710151@osvpi_route_phoneaccount-00000009;1", "OriginalState": "Up", "Privilege": "call,all", "Event": "Masquerade"}, - {"content": "", "Privilege": "call,all", "Channel": "SIP/150010002-00000010", "Newname": "SIP/150010002-00000010", "Uniqueid": "63f2f9ce924a-1501834121.37", "Event": "Rename"}, - {"content": "", "Privilege": "call,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;1", "Newname": "SIP/150010002-00000010", "Uniqueid": "63f2f9ce924a-1501834121.35", "Event": "Rename"}, - {"content": "", "Privilege": "call,all", "Channel": "SIP/150010002-00000010", "Newname": "Local/ID710151@osvpi_route_phoneaccount-00000009;1", "Uniqueid": "63f2f9ce924a-1501834121.37", "Event": "Rename"}, - {"content": "", "Privilege": "call,all", "Channel": "SIP/150010002-00000010", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDNum": "202", "CallerIDName": "", "Uniqueid": "63f2f9ce924a-1501834121.35", "Event": "NewCallerid"}, - {"content": "", "Bridgestate": "Unlink", "Uniqueid1": "63f2f9ce924a-1501834121.36", "Channel1": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "CallerID1": "203", "Channel2": "Local/ID710151@osvpi_route_phoneaccount-00000009;1", "Privilege": "call,all", "Uniqueid2": "63f2f9ce924a-1501834121.37", "CallerID2": "202", "Event": "Bridge", "Bridgetype": "core"}, - {"content": "", "Privilege": "dialplan,all", "Value": "0", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "ANSWEREDTIME"}, - {"content": "", "Privilege": "dialplan,all", "Value": "1", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "DIALEDTIME"}, - {"content": "", "Privilege": "dialplan,all", "Value": "SIP/150010002-00000010", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "BRIDGEPEER"}, - {"content": "", "Privilege": "dialplan,all", "Value": "2d4666722b9e21df0683bb462a1023e4@test.voipgrid.nl", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "BRIDGEPVTCALLID"}, - {"content": "", "Privilege": "dialplan,all", "Value": "SIP/150010003-0000000f", "Channel": "SIP/150010002-00000010", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.35", "Variable": "BRIDGEPEER"}, - {"content": "", "Privilege": "dialplan,all", "Value": "943614477", "Channel": "SIP/150010002-00000010", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.35", "Variable": "BRIDGEPVTCALLID"}, - {"content": "", "Uniqueid": "63f2f9ce924a-1501834121.36", "Privilege": "call,all", "Event": "HangupRequest", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2"}, - {"ConnectedLineNum": "203", "AccountCode": "150010003", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;1", "Cause": "16", "CallerIDName": "", "ConnectedLineName": "Julia Rhodes", "Event": "Hangup", "content": "", "Privilege": "call,all", "CallerIDNum": "202", "Cause-txt": "Normal Clearing", "Uniqueid": "63f2f9ce924a-1501834121.37"}, - {"content": "", "Privilege": "dialplan,all", "Value": "ANSWER", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.36", "Variable": "DIALSTATUS"}, - {"content": "", "SubEvent": "End", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Event": "Dial", "DialStatus": "ANSWER", "Privilege": "call,all", "UniqueID": "63f2f9ce924a-1501834121.36"}, - {"content": "", "Privilege": "call,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Cause": "16", "Uniqueid": "63f2f9ce924a-1501834121.36", "Event": "SoftHangupRequest"}, - {"content": "", "AppData": "1?nosip", "Priority": "1", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Context": "handlers", "Extension": "onhangup", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501834121.36", "Event": "Newexten"}, - {"content": "", "AppData": "0?osvpi_proc_httptouch,s,1()", "Priority": "3", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Context": "handlers", "Extension": "onhangup", "Application": "GosubIf", "Uniqueid": "63f2f9ce924a-1501834121.36", "Event": "Newexten"}, - {"ConnectedLineNum": "202", "AccountCode": "150010003", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000009;2", "Cause": "16", "CallerIDName": "Julia Rhodes", "ConnectedLineName": "", "Event": "Hangup", "content": "", "Privilege": "call,all", "CallerIDNum": "203", "Cause-txt": "Normal Clearing", "Uniqueid": "63f2f9ce924a-1501834121.36"}, - {"content": "", "Event": "MusicOnHold", "Channel": "SIP/150010003-0000000f", "State": "Start", "Privilege": "call,all", "Class": "default", "UniqueID": "63f2f9ce924a-1501834121.34"}, - {"PacketsLost": "36542", "Privilege": "reporting,all", "DLSR": "0.0000(sec)", "SequenceNumberCycles": "0", "FractionLost": "134", "HighestSequence": "38942", "Event": "RTCPReceived", "content": "", "From": "172.20.0.254:54013", "IAJitter": "0", "ReceptionReports": "1", "SenderSSRC": "3196977286", "LastSR": "0.0000000000", "PT": "200(Sender Report)"}, - {"content": "", "Privilege": "dialplan,all", "Value": "osvpi_account", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "SIPREFERRINGCONTEXT"}, - {"content": "", "Privilege": "dialplan,all", "Value": "\"Docker\" ", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "SIPREFERREDBYHDR"}, - {"content": "", "Privilege": "dialplan,all", "Value": "SIP/150010003-0000000f", "Channel": "SIP/150010002-00000010", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.35", "Variable": "BLINDTRANSFER"}, - {"content": "", "Event": "MusicOnHold", "Channel": "SIP/150010003-0000000f", "State": "Stop", "Privilege": "call,all", "UniqueID": "63f2f9ce924a-1501834121.34"}, - {"content": "", "Privilege": "dialplan,all", "Value": "SIP/150010002-00000010", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "BLINDTRANSFER"}, - {"content": "", "Privilege": "dialplan,all", "Value": "10.13.37.110", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "SIPDOMAIN"}, - {"content": "", "Privilege": "dialplan,all", "Value": "yes", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "SIPTRANSFER"}, - {"content": "", "Privilege": "dialplan,all", "Value": "yes", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "_SIPTRANSFER"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "_SIPTRANSFER_REFERER"}, - {"content": "", "Event": "MusicOnHold", "Channel": "SIP/150010003-0000000f", "State": "Stop", "Privilege": "call,all", "UniqueID": "63f2f9ce924a-1501834121.34"}, - {"TransferType": "Blind", "TransferExten": "201", "Channel": "SIP/150010002-00000010", "TargetUniqueid": "63f2f9ce924a-1501834121.34", "Privilege": "call,all", "Event": "Transfer", "content": "", "TransferContext": "osvpi_account_transfer", "SIP-Callid": "2d4666722b9e21df0683bb462a1023e4@test.voipgrid.nl", "Uniqueid": "63f2f9ce924a-1501834121.35", "TargetChannel": "SIP/150010003-0000000f", "TransferMethod": "SIP"}, - {"content": "", "Bridgestate": "Unlink", "Uniqueid1": "63f2f9ce924a-1501834121.34", "Channel1": "SIP/150010003-0000000f", "CallerID1": "203", "Channel2": "SIP/150010002-00000010", "Privilege": "call,all", "Uniqueid2": "63f2f9ce924a-1501834121.35", "CallerID2": "202", "Event": "Bridge", "Bridgetype": "core"}, - {"content": "", "Privilege": "dialplan,all", "Value": "3", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "ANSWEREDTIME"}, - {"content": "", "Privilege": "dialplan,all", "Value": "4", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "DIALEDTIME"}, - {"ConnectedLineNum": "203", "AccountCode": "150010003", "Channel": "SIP/150010002-00000010", "Cause": "16", "CallerIDName": "", "ConnectedLineName": "Julia Rhodes", "Event": "Hangup", "content": "", "Privilege": "call,all", "CallerIDNum": "202", "Cause-txt": "Normal Clearing", "Uniqueid": "63f2f9ce924a-1501834121.35"}, - {"content": "", "Privilege": "dialplan,all", "Value": "ANSWER", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "DIALSTATUS"}, - {"content": "", "SubEvent": "End", "Channel": "SIP/150010003-0000000f", "Event": "Dial", "DialStatus": "ANSWER", "Privilege": "call,all", "UniqueID": "63f2f9ce924a-1501834121.34"}, - {"content": "", "AppData": "DEBUG: XFER: accountcode=150010003 client_id=15001 account_id=150010003", "Priority": "1", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_transfer", "Extension": "201", "Application": "NoOp", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "0?accountinfo", "Priority": "2", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_transfer", "Extension": "201", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "CALLERID(name)=", "Priority": "3", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_transfer", "Extension": "201", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "call,all", "Channel": "SIP/150010003-0000000f", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDNum": "203", "CallerIDName": "", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "NewCallerid"}, - {"content": "", "AppData": "CALLERID(num)=203", "Priority": "4", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_transfer", "Extension": "201", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "CALLERID(pres)=allowed_passed_screen", "Priority": "5", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_transfer", "Extension": "201", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "l_changed=1", "Priority": "6", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_transfer", "Extension": "201", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "1", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "l_changed"}, - {"content": "", "AppData": "ATe", "Priority": "7", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_transfer", "Extension": "201", "Application": "ForkCDR", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "1?blindxfer:code302or482", "Priority": "8", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_transfer", "Extension": "201", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "DEBUG: REFER: SIPTRANSFER=yes BLINDTRANSFER=SIP/150010002-00000010 BRIDGEPEER=SIP/150010002-00000010 SIPTRANSFER_REFERER=", "Priority": "9", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_transfer", "Extension": "201", "Application": "NoOp", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "seconds_since_last_exten_list_addition=4", "Priority": "10", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_transfer", "Extension": "201", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "4", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "seconds_since_last_exten_list_addition"}, - {"content": "", "AppData": "1?Set(__EXTEN_LIST=)", "Priority": "11", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_transfer", "Extension": "201", "Application": "ExecIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "__EXTEN_LIST"}, - {"content": "", "AppData": "l_tmp=", "Priority": "12", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_transfer", "Extension": "201", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "l_tmp"}, - {"content": "", "AppData": "1?Set(l_tmp=150010002@10.13.37.110)", "Priority": "13", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_transfer", "Extension": "201", "Application": "ExecIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "150010002@10.13.37.110", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "l_tmp"}, - {"content": "", "AppData": "0?Hangup()", "Priority": "14", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_transfer", "Extension": "201", "Application": "ExecIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "l_tmp=150010002", "Priority": "15", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_transfer", "Extension": "201", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "150010002", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "l_tmp"}, - {"content": "", "AppData": "0?arefersb", "Priority": "16", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_transfer", "Extension": "201", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "1?brefersa", "Priority": "17", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_transfer", "Extension": "201", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "New caller is 150010002", "Priority": "22", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_transfer", "Extension": "201", "Application": "NoOp", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "CDR(accountcode)=150010002", "Priority": "23", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_transfer", "Extension": "201", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "OldAccountCode": "150010003", "Privilege": "call,all", "AccountCode": "150010002", "Uniqueid": "63f2f9ce924a-1501834121.34", "Channel": "SIP/150010003-0000000f", "Event": "NewAccountCode"}, - {"content": "", "AppData": "__account_id=150010002", "Priority": "24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_transfer", "Extension": "201", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "150010002", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "__account_id"}, - {"content": "", "AppData": "__dst_account_id=", "Priority": "25", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_transfer", "Extension": "201", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "__dst_account_id"}, - {"content": "", "AppData": "proceed", "Priority": "26", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_transfer", "Extension": "201", "Application": "Goto", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "__TRANSFER_CONTEXT=osvpi_account_transfer", "Priority": "33", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_transfer", "Extension": "201", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "osvpi_account_transfer", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "__TRANSFER_CONTEXT"}, - {"content": "", "AppData": "user_privacy=0", "Priority": "34", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_transfer", "Extension": "201", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "0", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "user_privacy"}, - {"content": "", "AppData": "is_transfer=1", "Priority": "35", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_transfer", "Extension": "201", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "1", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "is_transfer"}, - {"content": "", "Privilege": "dialplan,all", "Value": "1", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "ODBCROWS"}, - {"content": "", "Privilege": "dialplan,all", "Value": "SUCCESS", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "ODBCSTATUS"}, - {"content": "", "Privilege": "dialplan,all", "Value": "client_id,intprefix,internal_number,limit_account,limit_client", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "~ODBCFIELDS~"}, - {"content": "", "AppData": "1?Set(ARRAY(__client_id,__intprefix,dummy,__limit_account,__limit_client)=15001,31,202,4,0)", "Priority": "36", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_transfer", "Extension": "201", "Application": "ExecIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "15001", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "__client_id"}, - {"content": "", "Privilege": "dialplan,all", "Value": "31", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "__intprefix"}, - {"content": "", "Privilege": "dialplan,all", "Value": "202", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "dummy"}, - {"content": "", "Privilege": "dialplan,all", "Value": "4", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "__limit_account"}, - {"content": "", "Privilege": "dialplan,all", "Value": "0", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "__limit_client"}, - {"content": "", "AppData": "0?Set(CHANNEL(musicclass)=)", "Priority": "37", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_transfer", "Extension": "201", "Application": "ExecIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "DEBUG: CLI: name=\"\" num=203 ANI=203 presence=allowed_passed_screen", "Priority": "38", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_transfer", "Extension": "201", "Application": "NoOp", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "osvpi_account,201,checkspeeddial", "Priority": "39", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_transfer", "Extension": "201", "Application": "Goto", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "1?continue", "Priority": "19", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account", "Extension": "201", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "osvpi_proc_set_i18n_region,31,1", "Priority": "22", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account", "Extension": "201", "Application": "Gosub", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "0", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "LOCAL(ARGC)"}, - {"content": "", "AppData": "i18n_region=NL", "Priority": "1", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_set_i18n_region", "Extension": "31", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "NL", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "i18n_region"}, - {"content": "", "AppData": "", "Priority": "2", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_set_i18n_region", "Extension": "31", "Application": "Return", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "GOSUB_RETVAL"}, - {"content": "", "AppData": "osvpi_account_emergency_NL,201,1", "Priority": "23", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account", "Extension": "201", "Application": "Goto", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "osvpi_account_no_emergency,201,1", "Priority": "1", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_emergency_NL", "Extension": "201", "Application": "Goto", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "osvpi_account,201,no-emergency", "Priority": "1", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_no_emergency", "Extension": "201", "Application": "Goto", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "osvpi_account_clean,201,1", "Priority": "24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account", "Extension": "201", "Application": "Goto", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "return=osvpi_account_clean", "Priority": "1", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_clean", "Extension": "201", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "osvpi_account_clean", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "return"}, - {"content": "", "AppData": "osvpi_return_to_canonical,31i201,1", "Priority": "2", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_clean", "Extension": "201", "Application": "Goto", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "31i201", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "INVALID_EXTEN"}, - {"content": "", "AppData": "osvpi_account_clean,201,local", "Priority": "1", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_return_to_canonical", "Extension": "i", "Application": "Goto", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "0?extern", "Priority": "3", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_clean", "Extension": "201", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "osvpi_proc_set_callerid,201,1(150010002,0,0)", "Priority": "4", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_clean", "Extension": "201", "Application": "Gosub", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "150010002", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "LOCAL(ARG1)"}, - {"content": "", "Privilege": "dialplan,all", "Value": "0", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "LOCAL(ARG2)"}, - {"content": "", "Privilege": "dialplan,all", "Value": "0", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "LOCAL(ARG3)"}, - {"content": "", "Privilege": "dialplan,all", "Value": "3", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "LOCAL(ARGC)"}, - {"content": "", "AppData": "1?done", "Priority": "1", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_set_callerid", "Extension": "201", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "", "Priority": "10", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_set_callerid", "Extension": "201", "Application": "Return", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "GOSUB_RETVAL"}, - {"content": "", "AppData": "3?osvpi_account_call_int,201,1:i,1", "Priority": "5", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_clean", "Extension": "201", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "osvpi_proc_check_limits,201,1", "Priority": "1", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_call_int", "Extension": "201", "Application": "Gosub", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "0", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "LOCAL(ARGC)"}, - {"content": "", "AppData": "DEBUG: call_limit: client 1/0 and account 0/4", "Priority": "1", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_check_limits", "Extension": "201", "Application": "NoOp", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "0?osvpi_handle_limit,201,client", "Priority": "2", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_check_limits", "Extension": "201", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "0?osvpi_handle_limit,201,account", "Priority": "3", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_check_limits", "Extension": "201", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "GROUP(account_lim)=150010002", "Priority": "4", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_check_limits", "Extension": "201", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "GROUP(client_lim)=15001", "Priority": "5", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_check_limits", "Extension": "201", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "", "Priority": "6", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_check_limits", "Extension": "201", "Application": "Return", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "GOSUB_RETVAL"}, - {"content": "", "AppData": "osvpi_proc_check_recurse,201,1(15001)", "Priority": "2", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_call_int", "Extension": "201", "Application": "Gosub", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "15001", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "LOCAL(ARG1)"}, - {"content": "", "Privilege": "dialplan,all", "Value": "1", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "LOCAL(ARGC)"}, - {"content": "", "AppData": "LOCAL(exten)=15001:201", "Priority": "1", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_check_recurse", "Extension": "201", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "15001:201", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "LOCAL(exten)"}, - {"content": "", "AppData": "Recursion checking 15001:201 against ", "Priority": "2", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_check_recurse", "Extension": "201", "Application": "NoOp", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "LOCAL(n)=0", "Priority": "3", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_check_recurse", "Extension": "201", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "0", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "LOCAL(n)"}, - {"content": "", "AppData": "LOCAL(i)=1", "Priority": "4", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_check_recurse", "Extension": "201", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "1", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "LOCAL(i)"}, - {"content": "", "AppData": "1?add", "Priority": "5", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_check_recurse", "Extension": "201", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "__EXTEN_LIST=15001:201 ", "Priority": "9", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_check_recurse", "Extension": "201", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "15001:201 ", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "__EXTEN_LIST"}, - {"content": "", "AppData": "__EXTEN_LIST_LAST_EDIT_TIME=1501834125", "Priority": "10", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_check_recurse", "Extension": "201", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "1501834125", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "__EXTEN_LIST_LAST_EDIT_TIME"}, - {"content": "", "AppData": "", "Priority": "11", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_proc_check_recurse", "Extension": "201", "Application": "Return", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "GOSUB_RETVAL"}, - {"content": "", "AppData": "__ORIG_EXTEN=201", "Priority": "3", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_call_int", "Extension": "201", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "201", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "__ORIG_EXTEN"}, - {"content": "", "Privilege": "dialplan,all", "Value": "0", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "ODBCROWS"}, - {"content": "", "Privilege": "dialplan,all", "Value": "NODATA", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "ODBCSTATUS"}, - {"content": "", "AppData": "ARRAY(conference_id,user_password,admin_password,conference_language)=", "Priority": "4", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_call_int", "Extension": "201", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "conference_id"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "user_password"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "admin_password"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "conference_language"}, - {"content": "", "AppData": "0?osvpi_route_conference,ID,1", "Priority": "5", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_call_int", "Extension": "201", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "0", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "ODBCROWS"}, - {"content": "", "Privilege": "dialplan,all", "Value": "NODATA", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "ODBCSTATUS"}, - {"content": "", "AppData": "ARRAY(route_id,client_timezone)=", "Priority": "6", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_call_int", "Extension": "201", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "route_id"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "client_timezone"}, - {"content": "", "AppData": "0?osvpi_route_root,201,restart", "Priority": "7", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_call_int", "Extension": "201", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "0", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "ODBCROWS"}, - {"content": "", "Privilege": "dialplan,all", "Value": "NODATA", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "ODBCSTATUS"}, - {"content": "", "AppData": "ARRAY(all_extensions,limited_extensions,password,account_spy_language)=", "Priority": "8", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_call_int", "Extension": "201", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "all_extensions"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "limited_extensions"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "password"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "account_spy_language"}, - {"content": "", "AppData": "0?osvpi_account_spy,201,1", "Priority": "9", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_call_int", "Extension": "201", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "1", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "ODBCROWS"}, - {"content": "", "Privilege": "dialplan,all", "Value": "SUCCESS", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "ODBCSTATUS"}, - {"content": "", "Privilege": "dialplan,all", "Value": "interfaces", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "~ODBCFIELDS~"}, - {"content": "", "AppData": "ARRAY(interfaces)=Local/ID710150@osvpi_route_phoneaccount", "Priority": "10", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_call_int", "Extension": "201", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "Local/ID710150@osvpi_route_phoneaccount", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "interfaces"}, - {"content": "", "AppData": "0?osvpi_handle_unallocated,201,1", "Priority": "11", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_call_int", "Extension": "201", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "Local/ID710150@osvpi_route_phoneaccount", "Priority": "12", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "osvpi_account_call_int", "Extension": "201", "Application": "Dial", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "DIALSTATUS"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "DIALEDPEERNUMBER"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "DIALEDPEERNAME"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "ANSWEREDTIME"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "DIALEDTIME"}, - {"Exten": "ID710150", "AccountCode": "", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;1", "CallerIDName": "", "Privilege": "call,all", "Event": "Newchannel", "ChannelState": "0", "content": "", "Context": "osvpi_route_phoneaccount", "CallerIDNum": "", "ChannelStateDesc": "Down", "Uniqueid": "63f2f9ce924a-1501834125.38"}, - {"Exten": "ID710150", "AccountCode": "", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "CallerIDName": "", "Privilege": "call,all", "Event": "Newchannel", "ChannelState": "4", "content": "", "Context": "osvpi_route_phoneaccount", "CallerIDNum": "", "ChannelStateDesc": "Ring", "Uniqueid": "63f2f9ce924a-1501834125.39"}, - {"content": "", "Privilege": "dialplan,all", "Value": "ID710150@osvpi_route_phoneaccount", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;1", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.38", "Variable": "DIALEDPEERNUMBER"}, - {"content": "", "Privilege": "call,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;1", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDNum": "201", "CallerIDName": "", "Uniqueid": "63f2f9ce924a-1501834125.38", "Event": "NewCallerid"}, - {"content": "", "Exten": "ID710150", "Uniqueid1": "63f2f9ce924a-1501834125.38", "Channel1": "Local/ID710150@osvpi_route_phoneaccount-0000000a;1", "LocalOptimization": "Yes", "Context": "osvpi_route_phoneaccount", "Channel2": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Privilege": "call,all", "Uniqueid2": "63f2f9ce924a-1501834125.39", "Event": "LocalBridge"}, - {"ConnectedLineNum": "", "Privilege": "call,all", "Destination": "Local/ID710150@osvpi_route_phoneaccount-0000000a;1", "Channel": "SIP/150010003-0000000f", "SubEvent": "Begin", "CallerIDName": "", "ConnectedLineName": "", "Event": "Dial", "content": "", "UniqueID": "63f2f9ce924a-1501834121.34", "CallerIDNum": "203", "Dialstring": "ID710150@osvpi_route_phoneaccount", "DestUniqueID": "63f2f9ce924a-1501834125.38"}, - {"content": "", "Privilege": "dialplan,all", "Value": "1", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "ODBCROWS"}, - {"content": "", "Privilege": "dialplan,all", "Value": "SUCCESS", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "ODBCSTATUS"}, - {"content": "", "Privilege": "dialplan,all", "Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "~ODBCFIELDS~"}, - {"content": "", "AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=150010001,accountid,dutch,from,,0", "Priority": "1", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_route_phoneaccount", "Extension": "ID710150", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834125.39", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "150010001", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "__dst_account_id"}, - {"content": "", "Privilege": "dialplan,all", "Value": "accountid", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "l_mangle_did"}, - {"content": "", "Privilege": "dialplan,all", "Value": "dutch", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "l_mangle_cli"}, - {"content": "", "Privilege": "dialplan,all", "Value": "from", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "l_cli_header"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "l_primary_pickupgroup"}, - {"content": "", "Privilege": "dialplan,all", "Value": "0", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "app_account"}, - {"content": "", "AppData": "0?vialer", "Priority": "2", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_route_phoneaccount", "Extension": "ID710150", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501834125.39", "Event": "Newexten"}, - {"content": "", "AppData": "_PICKUPMARK=", "Priority": "3", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_route_phoneaccount", "Extension": "ID710150", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834125.39", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "_PICKUPMARK"}, - {"content": "", "AppData": "l_trunk=0", "Priority": "4", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_route_phoneaccount", "Extension": "ID710150", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834125.39", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "0", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "l_trunk"}, - {"content": "", "AppData": "osvpi_route_account,ID710150,1", "Priority": "5", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_route_phoneaccount", "Extension": "ID710150", "Application": "Goto", "Uniqueid": "63f2f9ce924a-1501834125.39", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "1", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "ODBCROWS"}, - {"content": "", "Privilege": "dialplan,all", "Value": "SUCCESS", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "ODBCSTATUS"}, - {"content": "", "Privilege": "dialplan,all", "Value": "proxy", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "~ODBCFIELDS~"}, - {"content": "", "AppData": "ARRAY(l_proxy)=172.20.0.13", "Priority": "1", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_route_account", "Extension": "ID710150", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834125.39", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "172.20.0.13", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "l_proxy"}, - {"content": "", "AppData": "osvpi_proc_mangle_number,accountid,1(150010001,201)", "Priority": "2", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_route_account", "Extension": "ID710150", "Application": "Gosub", "Uniqueid": "63f2f9ce924a-1501834125.39", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "150010001", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "LOCAL(ARG1)"}, - {"content": "", "Privilege": "dialplan,all", "Value": "201", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "LOCAL(ARG2)"}, - {"content": "", "Privilege": "dialplan,all", "Value": "2", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "LOCAL(ARGC)"}, - {"content": "", "AppData": "MANGLED_EXTEN=150010001", "Priority": "1", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_proc_mangle_number", "Extension": "accountid", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834125.39", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "150010001", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "MANGLED_EXTEN"}, - {"content": "", "AppData": "", "Priority": "2", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_proc_mangle_number", "Extension": "accountid", "Application": "Return", "Uniqueid": "63f2f9ce924a-1501834125.39", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "GOSUB_RETVAL"}, - {"content": "", "AppData": "l_did=150010001", "Priority": "3", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_route_account", "Extension": "ID710150", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834125.39", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "150010001", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "l_did"}, - {"content": "", "AppData": "osvpi_proc_mangle_number,dutch,1(150010001,203)", "Priority": "4", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_route_account", "Extension": "ID710150", "Application": "Gosub", "Uniqueid": "63f2f9ce924a-1501834125.39", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "150010001", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "LOCAL(ARG1)"}, - {"content": "", "Privilege": "dialplan,all", "Value": "203", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "LOCAL(ARG2)"}, - {"content": "", "Privilege": "dialplan,all", "Value": "2", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "LOCAL(ARGC)"}, - {"content": "", "AppData": "1?fullzero,1", "Priority": "1", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_proc_mangle_number", "Extension": "dutch", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501834125.39", "Event": "Newexten"}, - {"content": "", "AppData": "MANGLED_EXTEN=203", "Priority": "1", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_proc_mangle_number", "Extension": "fullzero", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834125.39", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "203", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "MANGLED_EXTEN"}, - {"content": "", "AppData": "", "Priority": "2", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_proc_mangle_number", "Extension": "fullzero", "Application": "Return", "Uniqueid": "63f2f9ce924a-1501834125.39", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "GOSUB_RETVAL"}, - {"content": "", "AppData": "l_mangle_cli_hdr=from-dutch", "Priority": "5", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_route_account", "Extension": "ID710150", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834125.39", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "from-dutch", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "l_mangle_cli_hdr"}, - {"content": "", "AppData": "l_fromuser=", "Priority": "6", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_route_account", "Extension": "ID710150", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834125.39", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "l_fromuser"}, - {"content": "", "AppData": "1?Set(l_fromuser=203)", "Priority": "7", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_route_account", "Extension": "ID710150", "Application": "ExecIf", "Uniqueid": "63f2f9ce924a-1501834125.39", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "203", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "l_fromuser"}, - {"content": "", "Privilege": "dialplan,all", "Value": "1", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "ODBCROWS"}, - {"content": "", "Privilege": "dialplan,all", "Value": "SUCCESS", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "ODBCSTATUS"}, - {"content": "", "Privilege": "dialplan,all", "Value": "IF((SELECT 1 FROM baseaccount_account ba INNER JOIN userdestination_selecteduserdestination udsud ON udsud.phoneaccount_id = ba.id INNER JOIN userdestination_userdestination udud ON udud.id = udsud.userdestination_id INNER JOIN crm_cloudctiuser cccu O", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "~ODBCFIELDS~"}, - {"content": "", "AppData": "ARRAY(cloudcti)=0", "Priority": "8", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_route_account", "Extension": "ID710150", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834125.39", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "0", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "cloudcti"}, - {"content": "", "AppData": "1?skipcloudcti", "Priority": "9", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_route_account", "Extension": "ID710150", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501834125.39", "Event": "Newexten"}, - {"content": "", "AppData": "osvpi_proc_proxy_out,201,1", "Priority": "11", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_route_account", "Extension": "ID710150", "Application": "Goto", "Uniqueid": "63f2f9ce924a-1501834125.39", "Event": "Newexten"}, - {"content": "", "AppData": "X-Accountcode: 150010001", "Priority": "1", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_proc_proxy_out", "Extension": "201", "Application": "SIPAddHeader", "Uniqueid": "63f2f9ce924a-1501834125.39", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "X-Accountcode: 150010001", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "__SIPADDHEADER01"}, - {"content": "", "AppData": "X-Insecure-Protection: geheim", "Priority": "2", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_proc_proxy_out", "Extension": "201", "Application": "SIPAddHeader", "Uniqueid": "63f2f9ce924a-1501834125.39", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "X-Insecure-Protection: geheim", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "__SIPADDHEADER02"}, - {"content": "", "AppData": "X-Mangle-Cli: from-dutch", "Priority": "3", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_proc_proxy_out", "Extension": "201", "Application": "SIPAddHeader", "Uniqueid": "63f2f9ce924a-1501834125.39", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "X-Mangle-Cli: from-dutch", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "__SIPADDHEADER03"}, - {"content": "", "AppData": "_dial_options_callaccept=", "Priority": "4", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_proc_proxy_out", "Extension": "201", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834125.39", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "_dial_options_callaccept"}, - {"content": "", "AppData": "_dial_options_callnotify=", "Priority": "5", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_proc_proxy_out", "Extension": "201", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834125.39", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "_dial_options_callnotify"}, - {"content": "", "AppData": "0?Set(l_proxy=opensipsfg)", "Priority": "6", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_proc_proxy_out", "Extension": "201", "Application": "ExecIf", "Uniqueid": "63f2f9ce924a-1501834125.39", "Event": "Newexten"}, - {"content": "", "AppData": "l_extra_options=", "Priority": "7", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_proc_proxy_out", "Extension": "201", "Application": "Set", "Uniqueid": "63f2f9ce924a-1501834125.39", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "l_extra_options"}, - {"content": "", "AppData": "SIP/150010001/150010001/172.20.0.13!!203,,", "Priority": "8", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_proc_proxy_out", "Extension": "201", "Application": "Dial", "Uniqueid": "63f2f9ce924a-1501834125.39", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "DIALSTATUS"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "DIALEDPEERNUMBER"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "DIALEDPEERNAME"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "ANSWEREDTIME"}, - {"content": "", "Privilege": "dialplan,all", "Value": "", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "DIALEDTIME"}, - {"Exten": "", "AccountCode": "150010001", "Channel": "SIP/150010001-00000011", "CallerIDName": "", "Privilege": "call,all", "Event": "Newchannel", "ChannelState": "0", "content": "", "Context": "osvpi_account", "CallerIDNum": "", "ChannelStateDesc": "Down", "Uniqueid": "63f2f9ce924a-1501834125.40"}, - {"content": "", "Privilege": "dialplan,all", "Value": "1a01f5874fc497b039785e5f4eee5915@test.voipgrid.nl", "Channel": "SIP/150010001-00000011", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.40", "Variable": "SIPCALLID"}, - {"content": "", "Privilege": "dialplan,all", "Value": "15001", "Channel": "SIP/150010001-00000011", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.40", "Variable": "__client_id"}, - {"content": "", "Privilege": "dialplan,all", "Value": "150010001", "Channel": "SIP/150010001-00000011", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.40", "Variable": "__account_id"}, - {"content": "", "Privilege": "dialplan,all", "Value": "no", "Channel": "SIP/150010001-00000011", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.40", "Variable": "__record_call"}, - {"content": "", "Privilege": "dialplan,all", "Value": "31", "Channel": "SIP/150010001-00000011", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.40", "Variable": "__intprefix"}, - {"content": "", "Privilege": "dialplan,all", "Value": "4", "Channel": "SIP/150010001-00000011", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.40", "Variable": "__limit_account"}, - {"content": "", "Privilege": "dialplan,all", "Value": "0", "Channel": "SIP/150010001-00000011", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.40", "Variable": "__limit_client"}, - {"content": "", "Privilege": "dialplan,all", "Value": "1", "Channel": "SIP/150010001-00000011", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.40", "Variable": "__hide_ext_cliname"}, - {"content": "", "Privilege": "dialplan,all", "Value": "osvpi_account_transfer", "Channel": "SIP/150010001-00000011", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.40", "Variable": "__TRANSFER_CONTEXT"}, - {"content": "", "Privilege": "dialplan,all", "Value": "150010001/150010001/172.20.0.13!!203", "Channel": "SIP/150010001-00000011", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.40", "Variable": "DIALEDPEERNUMBER"}, - {"content": "", "Privilege": "call,all", "Channel": "SIP/150010001-00000011", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDNum": "201", "CallerIDName": "", "Uniqueid": "63f2f9ce924a-1501834125.40", "Event": "NewCallerid"}, - {"ConnectedLineNum": "201", "Privilege": "call,all", "Destination": "SIP/150010001-00000011", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "SubEvent": "Begin", "CallerIDName": "", "ConnectedLineName": "", "Event": "Dial", "content": "", "UniqueID": "63f2f9ce924a-1501834125.39", "CallerIDNum": "203", "Dialstring": "150010001/150010001/172.20.0.13!!203", "DestUniqueID": "63f2f9ce924a-1501834125.40"}, - {"content": "", "ConnectedLineNum": "203", "Privilege": "call,all", "Channel": "SIP/150010001-00000011", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "CallerIDNum": "201", "CallerIDName": "", "Uniqueid": "63f2f9ce924a-1501834125.40", "Event": "Newstate", "ChannelState": "5"}, - {"content": "", "ConnectedLineNum": "203", "Privilege": "call,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;1", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "CallerIDNum": "201", "CallerIDName": "", "Uniqueid": "63f2f9ce924a-1501834125.38", "Event": "Newstate", "ChannelState": "5"}, - {"content": "", "ConnectedLineNum": "203", "Privilege": "call,all", "Channel": "SIP/150010001-00000011", "ChannelStateDesc": "Up", "ConnectedLineName": "", "CallerIDNum": "201", "CallerIDName": "", "Uniqueid": "63f2f9ce924a-1501834125.40", "Event": "Newstate", "ChannelState": "6"}, - {"content": "", "Privilege": "dialplan,all", "Value": "ANSWER", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "DIALSTATUS"}, - {"content": "", "Privilege": "dialplan,all", "Value": "SIP/150010001-00000011", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "DIALEDPEERNAME"}, - {"content": "", "Privilege": "dialplan,all", "Value": "150010001/150010001/172.20.0.13!!203", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "DIALEDPEERNUMBER"}, - {"content": "", "Privilege": "dialplan,all", "Value": "SIP/150010001-00000011", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "BRIDGEPEER"}, - {"content": "", "Privilege": "dialplan,all", "Value": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Channel": "SIP/150010001-00000011", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.40", "Variable": "BRIDGEPEER"}, - {"content": "", "ConnectedLineNum": "201", "Privilege": "call,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "ChannelStateDesc": "Up", "ConnectedLineName": "", "CallerIDNum": "203", "CallerIDName": "", "Uniqueid": "63f2f9ce924a-1501834125.39", "Event": "Newstate", "ChannelState": "6"}, - {"content": "", "OldAccountCode": "150010002", "Privilege": "call,all", "AccountCode": "150010002", "Uniqueid": "63f2f9ce924a-1501834125.40", "Channel": "SIP/150010001-00000011", "Event": "NewAccountCode"}, - {"content": "", "ConnectedLineNum": "203", "Privilege": "call,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;1", "ChannelStateDesc": "Up", "ConnectedLineName": "", "CallerIDNum": "201", "CallerIDName": "", "Uniqueid": "63f2f9ce924a-1501834125.38", "Event": "Newstate", "ChannelState": "6"}, - {"content": "", "Privilege": "dialplan,all", "Value": "ANSWER", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "DIALSTATUS"}, - {"content": "", "Bridgestate": "Link", "Uniqueid1": "63f2f9ce924a-1501834125.39", "Channel1": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "CallerID1": "203", "Channel2": "SIP/150010001-00000011", "Privilege": "call,all", "Uniqueid2": "63f2f9ce924a-1501834125.40", "CallerID2": "201", "Event": "Bridge", "Bridgetype": "core"}, - {"content": "", "Privilege": "dialplan,all", "Value": "Local/ID710150@osvpi_route_phoneaccount-0000000a;1", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "DIALEDPEERNAME"}, - {"content": "", "Privilege": "dialplan,all", "Value": "ID710150@osvpi_route_phoneaccount", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "DIALEDPEERNUMBER"}, - {"content": "", "Privilege": "dialplan,all", "Value": "SIP/150010001-00000011", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "BRIDGEPEER"}, - {"content": "", "Privilege": "dialplan,all", "Value": "1a01f5874fc497b039785e5f4eee5915@test.voipgrid.nl", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "BRIDGEPVTCALLID"}, - {"content": "", "Privilege": "dialplan,all", "Value": "Local/ID710150@osvpi_route_phoneaccount-0000000a;1", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "BRIDGEPEER"}, - {"content": "", "Privilege": "dialplan,all", "Value": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Channel": "SIP/150010001-00000011", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.40", "Variable": "BRIDGEPEER"}, - {"content": "", "Privilege": "dialplan,all", "Value": "SIP/150010003-0000000f", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;1", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.38", "Variable": "BRIDGEPEER"}, - {"content": "", "Privilege": "dialplan,all", "Value": "SIP/150010001-00000011", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "BRIDGEPEER"}, - {"content": "", "Privilege": "dialplan,all", "Value": "1a01f5874fc497b039785e5f4eee5915@test.voipgrid.nl", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "BRIDGEPVTCALLID"}, - {"content": "", "OldAccountCode": "150010002", "Privilege": "call,all", "AccountCode": "150010002", "Uniqueid": "63f2f9ce924a-1501834125.38", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;1", "Event": "NewAccountCode"}, - {"content": "", "Privilege": "dialplan,all", "Value": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Channel": "SIP/150010001-00000011", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.40", "Variable": "BRIDGEPEER"}, - {"content": "", "Bridgestate": "Link", "Uniqueid1": "63f2f9ce924a-1501834121.34", "Channel1": "SIP/150010003-0000000f", "CallerID1": "203", "Channel2": "Local/ID710150@osvpi_route_phoneaccount-0000000a;1", "Privilege": "call,all", "Uniqueid2": "63f2f9ce924a-1501834125.38", "CallerID2": "201", "Event": "Bridge", "Bridgetype": "core"}, - {"content": "", "Privilege": "dialplan,all", "Value": "Local/ID710150@osvpi_route_phoneaccount-0000000a;1", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "BRIDGEPEER"}, - {"content": "", "Privilege": "dialplan,all", "Value": "SIP/150010003-0000000f", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;1", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.38", "Variable": "BRIDGEPEER"}, - {"content": "", "Privilege": "dialplan,all", "Value": "943614477", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;1", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.38", "Variable": "BRIDGEPVTCALLID"}, - {"content": "", "Privilege": "dialplan,all", "Value": "Local/ID710150@osvpi_route_phoneaccount-0000000a;1", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "BRIDGEPEER"}, - {"content": "", "Privilege": "dialplan,all", "Value": "SIP/150010003-0000000f", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;1", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.38", "Variable": "BRIDGEPEER"}, - {"content": "", "Privilege": "dialplan,all", "Value": "943614477", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;1", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.38", "Variable": "BRIDGEPVTCALLID"}, - {"content": "", "CloneState": "Up", "Clone": "SIP/150010001-00000011", "Original": "Local/ID710150@osvpi_route_phoneaccount-0000000a;1", "OriginalState": "Up", "Privilege": "call,all", "Event": "Masquerade"}, - {"content": "", "Privilege": "call,all", "Channel": "SIP/150010001-00000011", "Newname": "SIP/150010001-00000011", "Uniqueid": "63f2f9ce924a-1501834125.40", "Event": "Rename"}, - {"content": "", "Privilege": "call,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;1", "Newname": "SIP/150010001-00000011", "Uniqueid": "63f2f9ce924a-1501834125.38", "Event": "Rename"}, - {"content": "", "Privilege": "call,all", "Channel": "SIP/150010001-00000011", "Newname": "Local/ID710150@osvpi_route_phoneaccount-0000000a;1", "Uniqueid": "63f2f9ce924a-1501834125.40", "Event": "Rename"}, - {"content": "", "Privilege": "call,all", "Channel": "SIP/150010001-00000011", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDNum": "201", "CallerIDName": "", "Uniqueid": "63f2f9ce924a-1501834125.38", "Event": "NewCallerid"}, - {"content": "", "Bridgestate": "Unlink", "Uniqueid1": "63f2f9ce924a-1501834125.39", "Channel1": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "CallerID1": "203", "Channel2": "Local/ID710150@osvpi_route_phoneaccount-0000000a;1", "Privilege": "call,all", "Uniqueid2": "63f2f9ce924a-1501834125.40", "CallerID2": "201", "Event": "Bridge", "Bridgetype": "core"}, - {"content": "", "Privilege": "dialplan,all", "Value": "SIP/150010001-00000011", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "BRIDGEPEER"}, - {"content": "", "Privilege": "dialplan,all", "Value": "1a01f5874fc497b039785e5f4eee5915@test.voipgrid.nl", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "BRIDGEPVTCALLID"}, - {"content": "", "Privilege": "dialplan,all", "Value": "0", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "ANSWEREDTIME"}, - {"content": "", "Privilege": "dialplan,all", "Value": "SIP/150010003-0000000f", "Channel": "SIP/150010001-00000011", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.38", "Variable": "BRIDGEPEER"}, - {"content": "", "Privilege": "dialplan,all", "Value": "2", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "DIALEDTIME"}, - {"content": "", "Privilege": "dialplan,all", "Value": "943614477", "Channel": "SIP/150010001-00000011", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.38", "Variable": "BRIDGEPVTCALLID"}, - {"content": "", "Uniqueid": "63f2f9ce924a-1501834125.39", "Privilege": "call,all", "Event": "HangupRequest", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2"}, - {"ConnectedLineNum": "203", "AccountCode": "150010002", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;1", "Cause": "16", "CallerIDName": "", "ConnectedLineName": "", "Event": "Hangup", "content": "", "Privilege": "call,all", "CallerIDNum": "201", "Cause-txt": "Normal Clearing", "Uniqueid": "63f2f9ce924a-1501834125.40"}, - {"content": "", "Privilege": "dialplan,all", "Value": "ANSWER", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.39", "Variable": "DIALSTATUS"}, - {"content": "", "SubEvent": "End", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Event": "Dial", "DialStatus": "ANSWER", "Privilege": "call,all", "UniqueID": "63f2f9ce924a-1501834125.39"}, - {"content": "", "Privilege": "call,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Cause": "16", "Uniqueid": "63f2f9ce924a-1501834125.39", "Event": "SoftHangupRequest"}, - {"content": "", "AppData": "1?nosip", "Priority": "1", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Context": "handlers", "Extension": "onhangup", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501834125.39", "Event": "Newexten"}, - {"content": "", "AppData": "0?osvpi_proc_httptouch,s,1()", "Priority": "3", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Context": "handlers", "Extension": "onhangup", "Application": "GosubIf", "Uniqueid": "63f2f9ce924a-1501834125.39", "Event": "Newexten"}, - {"ConnectedLineNum": "201", "AccountCode": "150010002", "Channel": "Local/ID710150@osvpi_route_phoneaccount-0000000a;2", "Cause": "16", "CallerIDName": "", "ConnectedLineName": "", "Event": "Hangup", "content": "", "Privilege": "call,all", "CallerIDNum": "203", "Cause-txt": "Normal Clearing", "Uniqueid": "63f2f9ce924a-1501834125.39"}, - {"FractionLost": "50", "DLSR": "2.5090 (sec)", "OurSSRC": "912065490", "SentPackets": "188", "CumulativeLoss": "49", "Privilege": "reporting,all", "SentRTP": "30080", "SentOctets": "30080", "Event": "RTCPSent", "TheirLastSR": "2852997872", "content": "", "SentNTP": "1501834127.3287019520", "IAJitter": "0.0103", "To": "172.20.0.254:54013"}, - {"PacketsLost": "36542", "Privilege": "reporting,all", "DLSR": "0.0000(sec)", "SequenceNumberCycles": "0", "FractionLost": "0", "HighestSequence": "39056", "Event": "RTCPReceived", "content": "", "From": "172.20.0.254:54013", "IAJitter": "9", "ReceptionReports": "1", "SenderSSRC": "3196977152", "LastSR": "0.0000000000", "PT": "200(Sender Report)"}, - {"PacketsLost": "36542", "Privilege": "reporting,all", "DLSR": "0.0000(sec)", "SequenceNumberCycles": "0", "FractionLost": "0", "HighestSequence": "39056", "Event": "RTCPReceived", "content": "", "From": "172.20.0.254:54013", "IAJitter": "22", "ReceptionReports": "1", "SenderSSRC": "3196977152", "LastSR": "0.0000000000", "PT": "200(Sender Report)"}, - {"content": "", "Privilege": "dialplan,all", "Value": "ssrc=1624690637;themssrc=530765087;lp=0;rxjitter=0.000000;rxcount=1;txjitter=0.000000;txcount=7;rlp=0;rtt=0.000000", "Channel": "SIP/150010001-00000011", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.38", "Variable": "RTPAUDIOQOS"}, - {"content": "", "Privilege": "dialplan,all", "Value": "ssrc=1624690637;themssrc=530765087;lp=0;rxjitter=0.000000;rxcount=1;txjitter=0.000000;txcount=7;rlp=0;rtt=0.000000", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "RTPAUDIOQOSBRIDGED"}, - {"content": "", "Privilege": "dialplan,all", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Channel": "SIP/150010001-00000011", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.38", "Variable": "RTPAUDIOQOSJITTER"}, - {"content": "", "Privilege": "dialplan,all", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "RTPAUDIOQOSJITTERBRIDGED"}, - {"content": "", "Privilege": "dialplan,all", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Channel": "SIP/150010001-00000011", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.38", "Variable": "RTPAUDIOQOSLOSS"}, - {"content": "", "Privilege": "dialplan,all", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "RTPAUDIOQOSLOSSBRIDGED"}, - {"content": "", "Privilege": "dialplan,all", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Channel": "SIP/150010001-00000011", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.38", "Variable": "RTPAUDIOQOSRTT"}, - {"content": "", "Privilege": "dialplan,all", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "RTPAUDIOQOSRTTBRIDGED"}, - {"content": "", "Privilege": "dialplan,all", "Value": "ssrc=912065490;themssrc=1568390101;lp=49;rxjitter=0.000000;rxcount=198;txjitter=0.010305;txcount=188;rlp=36542;rtt=0.000000", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "RTPAUDIOQOS"}, - {"content": "", "Privilege": "dialplan,all", "Value": "ssrc=912065490;themssrc=1568390101;lp=49;rxjitter=0.000000;rxcount=198;txjitter=0.010305;txcount=188;rlp=36542;rtt=0.000000", "Channel": "SIP/150010001-00000011", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.38", "Variable": "RTPAUDIOQOSBRIDGED"}, - {"content": "", "Privilege": "dialplan,all", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "RTPAUDIOQOSJITTER"}, - {"content": "", "Privilege": "dialplan,all", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Channel": "SIP/150010001-00000011", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.38", "Variable": "RTPAUDIOQOSJITTERBRIDGED"}, - {"content": "", "Privilege": "dialplan,all", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "RTPAUDIOQOSLOSS"}, - {"content": "", "Privilege": "dialplan,all", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Channel": "SIP/150010001-00000011", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.38", "Variable": "RTPAUDIOQOSLOSSBRIDGED"}, - {"content": "", "Privilege": "dialplan,all", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "RTPAUDIOQOSRTT"}, - {"content": "", "Privilege": "dialplan,all", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Channel": "SIP/150010001-00000011", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834125.38", "Variable": "RTPAUDIOQOSRTTBRIDGED"}, - {"content": "", "Uniqueid": "63f2f9ce924a-1501834125.38", "Privilege": "call,all", "Event": "HangupRequest", "Channel": "SIP/150010001-00000011"}, - {"content": "", "Bridgestate": "Unlink", "Uniqueid1": "63f2f9ce924a-1501834121.34", "Channel1": "SIP/150010003-0000000f", "CallerID1": "203", "Channel2": "SIP/150010001-00000011", "Privilege": "call,all", "Uniqueid2": "63f2f9ce924a-1501834125.38", "CallerID2": "201", "Event": "Bridge", "Bridgetype": "core"}, - {"content": "", "Privilege": "dialplan,all", "Value": "5", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "DIALEDTIME"}, - {"ConnectedLineNum": "203", "AccountCode": "150010002", "Channel": "SIP/150010001-00000011", "Cause": "16", "CallerIDName": "", "ConnectedLineName": "", "Event": "Hangup", "content": "", "Privilege": "call,all", "CallerIDNum": "201", "Cause-txt": "Normal Clearing", "Uniqueid": "63f2f9ce924a-1501834125.38"}, - {"content": "", "Privilege": "dialplan,all", "Value": "ANSWER", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "DIALSTATUS"}, - {"content": "", "SubEvent": "End", "Channel": "SIP/150010003-0000000f", "Event": "Dial", "DialStatus": "ANSWER", "Privilege": "call,all", "UniqueID": "63f2f9ce924a-1501834121.34"}, - {"content": "", "Privilege": "call,all", "Channel": "SIP/150010003-0000000f", "Cause": "16", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "SoftHangupRequest"}, - {"content": "", "AppData": "0?nosip", "Priority": "1", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "handlers", "Extension": "onhangup", "Application": "GotoIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "LOG: rtpqos: caller=172.20.0.254:54012;asterisk=0.0.0.0:10202;ssrc=912065490;themssrc=1568390101;lp=49;rxjitter=0.000000;rxcount=199;txjitter=0.011990;txcount=188;rlp=36542;rtt=0.000000;billsec=0", "Priority": "2", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "handlers", "Extension": "onhangup", "Application": "NoOp", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "AppData": "0?osvpi_proc_httptouch,s,1()", "Priority": "3", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000f", "Context": "handlers", "Extension": "onhangup", "Application": "GosubIf", "Uniqueid": "63f2f9ce924a-1501834121.34", "Event": "Newexten"}, - {"content": "", "Privilege": "dialplan,all", "Value": "ssrc=912065490;themssrc=1568390101;lp=49;rxjitter=0.000000;rxcount=199;txjitter=0.011990;txcount=188;rlp=36542;rtt=0.000000", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "RTPAUDIOQOS"}, - {"content": "", "Privilege": "dialplan,all", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "RTPAUDIOQOSJITTER"}, - {"content": "", "Privilege": "dialplan,all", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "RTPAUDIOQOSLOSS"}, - {"content": "", "Privilege": "dialplan,all", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "RTPAUDIOQOSRTT"}, - {"content": "", "Privilege": "dialplan,all", "Value": "ssrc=912065490;themssrc=1568390101;lp=49;rxjitter=0.000000;rxcount=199;txjitter=0.011990;txcount=188;rlp=36542;rtt=0.000000", "Channel": "SIP/150010003-0000000f", "Event": "VarSet", "Uniqueid": "63f2f9ce924a-1501834121.34", "Variable": "RTPAUDIOQOS"}, - {"ConnectedLineNum": "", "AccountCode": "150010002", "Channel": "SIP/150010003-0000000f", "Cause": "16", "CallerIDName": "", "ConnectedLineName": "", "Event": "Hangup", "content": "", "Privilege": "call,all", "CallerIDNum": "203", "Cause-txt": "Normal Clearing", "Uniqueid": "63f2f9ce924a-1501834121.34"} -] + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000003", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.65", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000003", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.65", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000003", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1529998959.65", "Priority": "5", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.65", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000003", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1529998959.65", "Priority": "6", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.65", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000002;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.68", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000002;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.70", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000002;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.68", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000002;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.68", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000002;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.68", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000002;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730151", "Language": "en", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.70", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000002;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730151", "Language": "en", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.70", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000002;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730151", "Language": "en", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.70", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730151", "LocalOneAccountCode": "150010001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "202", "LocalOneChannel": "Local/ID730151@osvpi_route_phoneaccount-00000002;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Andrew Garza", "LocalOneConnectedLineNum": "201", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "202", "LocalOneLanguage": "en", "LocalOneLinkedid": "07b796be1962-1529998959.65", "LocalOnePriority": "1", "LocalOneUniqueid": "07b796be1962-1529998959.68", "LocalOptimization": "Yes", "LocalTwoAccountCode": "150010001", "LocalTwoCallerIDName": "Andrew Garza", "LocalTwoCallerIDNum": "201", "LocalTwoChannel": "Local/ID730151@osvpi_route_phoneaccount-00000002;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "202", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730151", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "07b796be1962-1529998959.65", "LocalTwoPriority": "1", "LocalTwoUniqueid": "07b796be1962-1529998959.70", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000003", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-00000002;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "202", "DestLanguage": "en", "DestLinkedid": "07b796be1962-1529998959.65", "DestPriority": "1", "DestUniqueid": "07b796be1962-1529998959.68", "DialString": "ID730151@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1529998959.65", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.65", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010002-00000004", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.73", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000004", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.73", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000004", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1529998959.65", "OldAccountCode": "150010002", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.73", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000004", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.73", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000002;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "SIP/150010002-00000004", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "202", "DestLanguage": "nl", "DestLinkedid": "07b796be1962-1529998959.65", "DestPriority": "1", "DestUniqueid": "07b796be1962-1529998959.73", "DialString": "150010002/150010002/172.20.0.13!!201", "Event": "DialBegin", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1529998959.65", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.70", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000004", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.73", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000002;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.68", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000004", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.73", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000002;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "SIP/150010002-00000004", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "07b796be1962-1529998959.65", "DestPriority": "1", "DestUniqueid": "07b796be1962-1529998959.73", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1529998959.65", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.70", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000002;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1529998959.65", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.70", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ee44ec8f-a313-4c53-9c70-6f5fba66e1f4", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000002;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.68", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ee44ec8f-a313-4c53-9c70-6f5fba66e1f4", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000004", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.73", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000003", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-00000002;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "07b796be1962-1529998959.65", "DestPriority": "1", "DestUniqueid": "07b796be1962-1529998959.68", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1529998959.65", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.65", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ee44ec8f-a313-4c53-9c70-6f5fba66e1f4", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000002;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1529998959.65", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.70", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000003", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1529998959.65", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.65", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "aa3fe628-4d6d-4266-a9f7-4c8e7d379e1a", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "aa3fe628-4d6d-4266-a9f7-4c8e7d379e1a", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000002;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.68", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "aa3fe628-4d6d-4266-a9f7-4c8e7d379e1a", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000003", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1529998959.65", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.65", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ee44ec8f-a313-4c53-9c70-6f5fba66e1f4", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000004", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.73", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "aa3fe628-4d6d-4266-a9f7-4c8e7d379e1a", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000002;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.68", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "aa3fe628-4d6d-4266-a9f7-4c8e7d379e1a", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000004", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "07b796be1962-1529998959.68", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.73", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ee44ec8f-a313-4c53-9c70-6f5fba66e1f4", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000002;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1529998959.65", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.70", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ee44ec8f-a313-4c53-9c70-6f5fba66e1f4", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000002;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.68", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000002;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "07b796be1962-1529998959.65", "Priority": "4", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.70", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "aa3fe628-4d6d-4266-a9f7-4c8e7d379e1a", "BridgeVideoSourceMode": "none", "Context": "osvpi_account_transfer", "Event": "BlindTransfer", "Extension": "203", "IsExternal": "Yes", "Privilege": "call,all", "Result": "Success", "SystemName": "07b796be1962", "TransfereeAccountCode": "150010001", "TransfereeCallerIDName": "Andrew Garza", "TransfereeCallerIDNum": "201", "TransfereeChannel": "SIP/150010001-00000003", "TransfereeChannelState": "6", "TransfereeChannelStateDesc": "Up", "TransfereeConnectedLineName": "", "TransfereeConnectedLineNum": "", "TransfereeContext": "osvpi_account_call_int", "TransfereeExten": "202", "TransfereeLanguage": "nl", "TransfereeLinkedid": "07b796be1962-1529998959.65", "TransfereePriority": "12", "TransfereeUniqueid": "07b796be1962-1529998959.65", "TransfererAccountCode": "150010001", "TransfererCallerIDName": "", "TransfererCallerIDNum": "202", "TransfererChannel": "SIP/150010002-00000004", "TransfererChannelState": "6", "TransfererChannelStateDesc": "Up", "TransfererConnectedLineName": "Andrew Garza", "TransfererConnectedLineNum": "201", "TransfererContext": "osvpi_account", "TransfererExten": "", "TransfererLanguage": "nl", "TransfererLinkedid": "07b796be1962-1529998959.65", "TransfererPriority": "1", "TransfererUniqueid": "07b796be1962-1529998959.73", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "aa3fe628-4d6d-4266-a9f7-4c8e7d379e1a", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000004", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.73", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "aa3fe628-4d6d-4266-a9f7-4c8e7d379e1a", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000003", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_transfer", "Event": "BridgeLeave", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.65", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "aa3fe628-4d6d-4266-a9f7-4c8e7d379e1a", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010002-00000004", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.73", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000003", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_transfer", "Event": "NewCallerid", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1529998959.65", "Priority": "3", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.65", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000003", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_transfer", "Event": "NewAccountCode", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1529998959.65", "OldAccountCode": "150010001", "Priority": "23", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.65", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000003;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730152", "Language": "en", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998966.99", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000003;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730152", "Language": "en", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998966.101", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000003;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998966.99", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000003;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998966.99", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000003;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998966.99", "content": ""}, + {"AccountCode": "150010002", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000003;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730152", "Language": "en", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998966.101", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000003;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730152", "Language": "en", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998966.101", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000003;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730152", "Language": "en", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998966.101", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730152", "LocalOneAccountCode": "150010001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "203", "LocalOneChannel": "Local/ID730152@osvpi_route_phoneaccount-00000003;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "201", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "203", "LocalOneLanguage": "en", "LocalOneLinkedid": "07b796be1962-1529998959.65", "LocalOnePriority": "1", "LocalOneUniqueid": "07b796be1962-1529998966.99", "LocalOptimization": "Yes", "LocalTwoAccountCode": "150010002", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "201", "LocalTwoChannel": "Local/ID730152@osvpi_route_phoneaccount-00000003;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "203", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730152", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "07b796be1962-1529998959.65", "LocalTwoPriority": "1", "LocalTwoUniqueid": "07b796be1962-1529998966.101", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000003", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "203", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-00000003;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "203", "DestLanguage": "en", "DestLinkedid": "07b796be1962-1529998959.65", "DestPriority": "1", "DestUniqueid": "07b796be1962-1529998966.99", "DialString": "ID730152@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1529998959.65", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.65", "content": ""}, + {"AccountCode": "150010003", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010003-00000005", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998966.104", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-00000005", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998966.104", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-00000005", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1529998959.65", "OldAccountCode": "150010003", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998966.104", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-00000005", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998966.104", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000003;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "203", "DestChannel": "SIP/150010003-00000005", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "203", "DestLanguage": "nl", "DestLinkedid": "07b796be1962-1529998959.65", "DestPriority": "1", "DestUniqueid": "07b796be1962-1529998966.104", "DialString": "150010003/150010003/172.20.0.13!!201", "Event": "DialBegin", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1529998959.65", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998966.101", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-00000005", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998966.104", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000003;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998966.99", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-00000005", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998966.104", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000003;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "203", "DestChannel": "SIP/150010003-00000005", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "07b796be1962-1529998959.65", "DestPriority": "1", "DestUniqueid": "07b796be1962-1529998966.104", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1529998959.65", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998966.101", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000003;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1529998959.65", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998966.101", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "44b22f2a-ad8c-4fe7-a0c8-867e7653ae98", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000003;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998966.99", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "44b22f2a-ad8c-4fe7-a0c8-867e7653ae98", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-00000005", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998966.104", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000003", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "203", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-00000003;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "07b796be1962-1529998959.65", "DestPriority": "1", "DestUniqueid": "07b796be1962-1529998966.99", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1529998959.65", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.65", "content": ""}, + {"AccountCode": "150010002", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "44b22f2a-ad8c-4fe7-a0c8-867e7653ae98", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000003;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1529998959.65", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998966.101", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "960982d0-8c05-435a-8570-dd44c903742e", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "960982d0-8c05-435a-8570-dd44c903742e", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000003;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998966.99", "content": ""}, + {"AccountCode": "150010002", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "960982d0-8c05-435a-8570-dd44c903742e", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000003", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1529998959.65", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.65", "content": ""}, + {"AccountCode": "150010002", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "960982d0-8c05-435a-8570-dd44c903742e", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000003", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1529998959.65", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.65", "content": ""}, + {"AccountCode": "150010002", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "44b22f2a-ad8c-4fe7-a0c8-867e7653ae98", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000003;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1529998959.65", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998966.101", "content": ""}, + {"AccountCode": "150010002", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "44b22f2a-ad8c-4fe7-a0c8-867e7653ae98", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000003", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1529998959.65", "Priority": "12", "Privilege": "call,all", "SwapUniqueid": "07b796be1962-1529998966.101", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.65", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "960982d0-8c05-435a-8570-dd44c903742e", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000003;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998966.99", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000003;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "07b796be1962-1529998959.65", "Priority": "4", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998966.101", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "960982d0-8c05-435a-8570-dd44c903742e", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000003;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998966.99", "content": ""}, + {"AccountCode": "150010002", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "44b22f2a-ad8c-4fe7-a0c8-867e7653ae98", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000003", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1529998959.65", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.65", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "44b22f2a-ad8c-4fe7-a0c8-867e7653ae98", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-00000005", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998966.104", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "44b22f2a-ad8c-4fe7-a0c8-867e7653ae98", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010003-00000005", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "07b796be1962-1529998959.65", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998966.104", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010001-00000003", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "07b796be1962-1529998959.65", "Priority": "4", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1529998959.65", "content": ""} +] \ No newline at end of file diff --git a/tests/fixtures/xfer_blind/xfer_blind_b_no_answer.json b/tests/fixtures/xfer_blind/xfer_blind_b_no_answer.json index 3b7044e..c793f86 100644 --- a/tests/fixtures/xfer_blind/xfer_blind_b_no_answer.json +++ b/tests/fixtures/xfer_blind/xfer_blind_b_no_answer.json @@ -1,595 +1,72 @@ [ - {"Privilege": "system,all", "Event": "FullyBooted", "content": "", "Status": "Fully Booted"}, - {"Context": "osvpi_account", "Privilege": "call,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "Event": "Newchannel", "content": "", "CallerIDName": "Bob", "Exten": "204", "ChannelStateDesc": "Down", "Channel": "SIP/150010002-00000005", "ChannelState": "0", "AccountCode": "150010002", "CallerIDNum": "150010002"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "SIPURI", "Value": "sip:150010002@10.13.36.116:5061", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "SIPDOMAIN", "Value": "10.13.37.110", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "SIPCALLID", "Value": "4b600887-11931912@10.13.36.116", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "__client_id", "Value": "15001", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "__account_id", "Value": "150010002", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "__record_call", "Value": "no", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "__intprefix", "Value": "31", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "__limit_account", "Value": "4", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "__limit_client", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "__hide_ext_cliname", "Value": "1", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "__TRANSFER_CONTEXT", "Value": "osvpi_account_transfer", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "call,all", "ChannelState": "4", "ConnectedLineNum": "", "CallerIDNum": "150010002", "Event": "Newstate", "content": "", "CallerIDName": "Bob", "Uniqueid": "0f00dcaa884f-1509115795.11", "ConnectedLineName": "", "ChannelStateDesc": "Ring"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "ExecIf", "content": "", "AppData": "0?GotoIf(0?osvpi_proc_hangup_insecure,204,1)", "Extension": "204", "Context": "osvpi_account", "Priority": "1"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Gosub", "content": "", "AppData": "osvpi_proc_check_forwards,s,1", "Extension": "204", "Context": "osvpi_account", "Priority": "2"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "LOCAL(ARGC)", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "GotoIf", "content": "", "AppData": "0?check,1", "Extension": "s", "Context": "osvpi_proc_check_forwards", "Priority": "1"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Set", "content": "", "AppData": "LOCAL(tmp)=70", "Extension": "s", "Context": "osvpi_proc_check_forwards", "Priority": "2"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "LOCAL(tmp)", "Value": "70", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "ExecIf", "content": "", "AppData": "0?Goto(init,1)", "Extension": "s", "Context": "osvpi_proc_check_forwards", "Priority": "3"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "ExecIf", "content": "", "AppData": "1?Goto(init,1)", "Extension": "s", "Context": "osvpi_proc_check_forwards", "Priority": "4"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Set", "content": "", "AppData": "MASTER_CHANNEL(SIP_MAX_FORWARDS)=16", "Extension": "init", "Context": "osvpi_proc_check_forwards", "Priority": "1"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "SIP_MAX_FORWARDS", "Value": "16", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "NoOp", "content": "", "AppData": "DEBUG: MaxForwards: initialized to: 16", "Extension": "init", "Context": "osvpi_proc_check_forwards", "Priority": "2"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Return", "content": "", "AppData": "", "Extension": "init", "Context": "osvpi_proc_check_forwards", "Priority": "3"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "GOSUB_RETVAL", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "GotoIf", "content": "", "AppData": "0?osvpi_account_transfer,204,1", "Extension": "204", "Context": "osvpi_account", "Priority": "3"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "NoOp", "content": "", "AppData": "ENTRY POINT username=150010002,ip=172.20.0.13/172.20.0.13,from=sip:150010002@10.13.37.110,contact=sip:150010002@10.13.36.116:5061,ua=Cisco/SPA504G-7.5.3,name=Bob,num=150010002,pres=allowed_not_screened", "Extension": "204", "Context": "osvpi_account", "Priority": "4"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Set", "content": "", "AppData": "is_transfer=0", "Extension": "204", "Context": "osvpi_account", "Priority": "5"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "is_transfer", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Set", "content": "", "AppData": "CDR(amaflags)=BILLING", "Extension": "204", "Context": "osvpi_account", "Priority": "6"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Set", "content": "", "AppData": "user_privacy=0", "Extension": "204", "Context": "osvpi_account", "Priority": "7"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "user_privacy", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "ExecIf", "content": "", "AppData": "1?Set(__supports_progress=1)", "Extension": "204", "Context": "osvpi_account", "Priority": "8"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "__supports_progress", "Value": "1", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Gosub", "content": "", "AppData": "osvpi_proc_record_call,s-no,1(out,15001,150010002)", "Extension": "204", "Context": "osvpi_account", "Priority": "9"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "LOCAL(ARG1)", "Value": "out", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "LOCAL(ARG2)", "Value": "15001", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "LOCAL(ARG3)", "Value": "150010002", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "LOCAL(ARGC)", "Value": "3", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Return", "content": "", "AppData": "", "Extension": "s-no", "Context": "osvpi_proc_record_call", "Priority": "1"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "GOSUB_RETVAL", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Set", "content": "", "AppData": "l_tmp=", "Extension": "204", "Context": "osvpi_account", "Priority": "10"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "l_tmp", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "ExecIf", "content": "", "AppData": "1?Set(l_tmp=)", "Extension": "204", "Context": "osvpi_account", "Priority": "11"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "l_tmp", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "GotoIf", "content": "", "AppData": "1?checkprivacy", "Extension": "204", "Context": "osvpi_account", "Priority": "12"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "ExecIf", "content": "", "AppData": "0?Set(CALLERID(pres)=allowed_passed_screen)", "Extension": "204", "Context": "osvpi_account", "Priority": "16"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "ExecIf", "content": "", "AppData": "0?Set(CALLERID(pres)=prohib_passed_screen)", "Extension": "204", "Context": "osvpi_account", "Priority": "17"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "ExecIf", "content": "", "AppData": "0?Set(CHANNEL(musicclass)=)", "Extension": "204", "Context": "osvpi_account", "Priority": "18"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "GotoIf", "content": "", "AppData": "1?continue", "Extension": "204", "Context": "osvpi_account", "Priority": "19"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Gosub", "content": "", "AppData": "osvpi_proc_set_i18n_region,31,1", "Extension": "204", "Context": "osvpi_account", "Priority": "22"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "LOCAL(ARGC)", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Set", "content": "", "AppData": "i18n_region=NL", "Extension": "31", "Context": "osvpi_proc_set_i18n_region", "Priority": "1"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "i18n_region", "Value": "NL", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Return", "content": "", "AppData": "", "Extension": "31", "Context": "osvpi_proc_set_i18n_region", "Priority": "2"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "GOSUB_RETVAL", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Goto", "content": "", "AppData": "osvpi_account_emergency_NL,204,1", "Extension": "204", "Context": "osvpi_account", "Priority": "23"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Goto", "content": "", "AppData": "osvpi_account_no_emergency,204,1", "Extension": "204", "Context": "osvpi_account_emergency_NL", "Priority": "1"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Goto", "content": "", "AppData": "osvpi_account,204,no-emergency", "Extension": "204", "Context": "osvpi_account_no_emergency", "Priority": "1"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Goto", "content": "", "AppData": "osvpi_account_clean,204,1", "Extension": "204", "Context": "osvpi_account", "Priority": "24"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Set", "content": "", "AppData": "return=osvpi_account_clean", "Extension": "204", "Context": "osvpi_account_clean", "Priority": "1"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "return", "Value": "osvpi_account_clean", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Goto", "content": "", "AppData": "osvpi_return_to_canonical,31i204,1", "Extension": "204", "Context": "osvpi_account_clean", "Priority": "2"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "INVALID_EXTEN", "Value": "31i204", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Goto", "content": "", "AppData": "osvpi_account_clean,204,local", "Extension": "i", "Context": "osvpi_return_to_canonical", "Priority": "1"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "GotoIf", "content": "", "AppData": "0?extern", "Extension": "204", "Context": "osvpi_account_clean", "Priority": "3"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Gosub", "content": "", "AppData": "osvpi_proc_set_callerid,204,1(150010002,0,0)", "Extension": "204", "Context": "osvpi_account_clean", "Priority": "4"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "LOCAL(ARG1)", "Value": "150010002", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "LOCAL(ARG2)", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "LOCAL(ARG3)", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "LOCAL(ARGC)", "Value": "3", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "GotoIf", "content": "", "AppData": "0?done", "Extension": "204", "Context": "osvpi_proc_set_callerid", "Priority": "1"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "ODBCROWS", "Value": "1", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "ODBCSTATUS", "Value": "SUCCESS", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "~ODBCFIELDS~", "Value": "set,privacy,name,number_int,number_ext", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Set", "content": "", "AppData": "ARRAY(LOCAL(set),LOCAL(privacy),LOCAL(name),LOCAL(number_int),LOCAL(number_ext))=1,0,David Meadows,202,+31150010002", "Extension": "204", "Context": "osvpi_proc_set_callerid", "Priority": "2"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "LOCAL(set)", "Value": "1", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "LOCAL(privacy)", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "LOCAL(name)", "Value": "David Meadows", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "LOCAL(number_int)", "Value": "202", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "LOCAL(number_ext)", "Value": "+31150010002", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "GotoIf", "content": "", "AppData": "0?presentation", "Extension": "204", "Context": "osvpi_proc_set_callerid", "Priority": "3"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Set", "content": "", "AppData": "CALLERID(pres)=allowed_passed_screen", "Extension": "204", "Context": "osvpi_proc_set_callerid", "Priority": "4"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Set", "content": "", "AppData": "CALLERID(name)=David Meadows", "Extension": "204", "Context": "osvpi_proc_set_callerid", "Priority": "5"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "call,all", "CallerIDNum": "150010002", "Event": "NewCallerid", "content": "", "CallerIDName": "David Meadows", "Uniqueid": "0f00dcaa884f-1509115795.11", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Set", "content": "", "AppData": "CALLERID(num)=202", "Extension": "204", "Context": "osvpi_proc_set_callerid", "Priority": "6"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "call,all", "CallerIDNum": "202", "Event": "NewCallerid", "content": "", "CallerIDName": "David Meadows", "Uniqueid": "0f00dcaa884f-1509115795.11", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "ExecIf", "content": "", "AppData": "0?Set(CALLERID(pres)=prohib_passed_screen)", "Extension": "204", "Context": "osvpi_proc_set_callerid", "Priority": "7"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Set", "content": "", "AppData": "CALLERID(ANI)=202", "Extension": "204", "Context": "osvpi_proc_set_callerid", "Priority": "8"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Gosub", "content": "", "AppData": "osvpi_proc_set_callerid_internal,204,1", "Extension": "204", "Context": "osvpi_proc_set_callerid", "Priority": "9"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "LOCAL(ARG1)", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "LOCAL(ARG2)", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "LOCAL(ARG3)", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "LOCAL(ARGC)", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "GotoIf", "content": "", "AppData": "1?nop", "Extension": "204", "Context": "osvpi_proc_set_callerid_internal", "Priority": "1"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "ExecIf", "content": "", "AppData": "0?Set(CALLERID(ANI)=20)", "Extension": "204", "Context": "osvpi_proc_set_callerid_internal", "Priority": "5"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Return", "content": "", "AppData": "", "Extension": "204", "Context": "osvpi_proc_set_callerid_internal", "Priority": "6"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "GOSUB_RETVAL", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Return", "content": "", "AppData": "", "Extension": "204", "Context": "osvpi_proc_set_callerid", "Priority": "10"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "GOSUB_RETVAL", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "GotoIf", "content": "", "AppData": "3?osvpi_account_call_int,204,1:i,1", "Extension": "204", "Context": "osvpi_account_clean", "Priority": "5"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Gosub", "content": "", "AppData": "osvpi_proc_check_limits,204,1", "Extension": "204", "Context": "osvpi_account_call_int", "Priority": "1"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "LOCAL(ARGC)", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "NoOp", "content": "", "AppData": "DEBUG: call_limit: client 0/0 and account 0/4", "Extension": "204", "Context": "osvpi_proc_check_limits", "Priority": "1"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "GotoIf", "content": "", "AppData": "0?osvpi_handle_limit,204,client", "Extension": "204", "Context": "osvpi_proc_check_limits", "Priority": "2"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "GotoIf", "content": "", "AppData": "0?osvpi_handle_limit,204,account", "Extension": "204", "Context": "osvpi_proc_check_limits", "Priority": "3"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Set", "content": "", "AppData": "GROUP(account_lim)=150010002", "Extension": "204", "Context": "osvpi_proc_check_limits", "Priority": "4"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Set", "content": "", "AppData": "GROUP(client_lim)=15001", "Extension": "204", "Context": "osvpi_proc_check_limits", "Priority": "5"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Return", "content": "", "AppData": "", "Extension": "204", "Context": "osvpi_proc_check_limits", "Priority": "6"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "GOSUB_RETVAL", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Gosub", "content": "", "AppData": "osvpi_proc_check_recurse,204,1(15001)", "Extension": "204", "Context": "osvpi_account_call_int", "Priority": "2"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "LOCAL(ARG1)", "Value": "15001", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "LOCAL(ARGC)", "Value": "1", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Set", "content": "", "AppData": "LOCAL(exten)=15001:204", "Extension": "204", "Context": "osvpi_proc_check_recurse", "Priority": "1"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "LOCAL(exten)", "Value": "15001:204", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "NoOp", "content": "", "AppData": "Recursion checking 15001:204 against ", "Extension": "204", "Context": "osvpi_proc_check_recurse", "Priority": "2"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Set", "content": "", "AppData": "LOCAL(n)=0", "Extension": "204", "Context": "osvpi_proc_check_recurse", "Priority": "3"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "LOCAL(n)", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Set", "content": "", "AppData": "LOCAL(i)=1", "Extension": "204", "Context": "osvpi_proc_check_recurse", "Priority": "4"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "LOCAL(i)", "Value": "1", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "GotoIf", "content": "", "AppData": "1?add", "Extension": "204", "Context": "osvpi_proc_check_recurse", "Priority": "5"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Set", "content": "", "AppData": "__EXTEN_LIST=15001:204 ", "Extension": "204", "Context": "osvpi_proc_check_recurse", "Priority": "9"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "__EXTEN_LIST", "Value": "15001:204 ", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Set", "content": "", "AppData": "__EXTEN_LIST_LAST_EDIT_TIME=1509115795", "Extension": "204", "Context": "osvpi_proc_check_recurse", "Priority": "10"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "__EXTEN_LIST_LAST_EDIT_TIME", "Value": "1509115795", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Return", "content": "", "AppData": "", "Extension": "204", "Context": "osvpi_proc_check_recurse", "Priority": "11"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "GOSUB_RETVAL", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Set", "content": "", "AppData": "__ORIG_EXTEN=204", "Extension": "204", "Context": "osvpi_account_call_int", "Priority": "3"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "__ORIG_EXTEN", "Value": "204", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "ODBCROWS", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "ODBCSTATUS", "Value": "NODATA", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Set", "content": "", "AppData": "ARRAY(conference_id,user_password,admin_password,conference_language)=", "Extension": "204", "Context": "osvpi_account_call_int", "Priority": "4"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "conference_id", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "user_password", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "admin_password", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "conference_language", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "GotoIf", "content": "", "AppData": "0?osvpi_route_conference,ID,1", "Extension": "204", "Context": "osvpi_account_call_int", "Priority": "5"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "ODBCROWS", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "ODBCSTATUS", "Value": "NODATA", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Set", "content": "", "AppData": "ARRAY(route_id,client_timezone)=", "Extension": "204", "Context": "osvpi_account_call_int", "Priority": "6"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "route_id", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "client_timezone", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "GotoIf", "content": "", "AppData": "0?osvpi_route_root,204,restart", "Extension": "204", "Context": "osvpi_account_call_int", "Priority": "7"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "ODBCROWS", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "ODBCSTATUS", "Value": "NODATA", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Set", "content": "", "AppData": "ARRAY(all_extensions,limited_extensions,password,account_spy_language)=", "Extension": "204", "Context": "osvpi_account_call_int", "Priority": "8"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "all_extensions", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "limited_extensions", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "password", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "account_spy_language", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "GotoIf", "content": "", "AppData": "0?osvpi_account_spy,204,1", "Extension": "204", "Context": "osvpi_account_call_int", "Priority": "9"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "ODBCROWS", "Value": "1", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "ODBCSTATUS", "Value": "SUCCESS", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "~ODBCFIELDS~", "Value": "interfaces", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Set", "content": "", "AppData": "ARRAY(interfaces)=Local/ID690153@osvpi_route_phoneaccount", "Extension": "204", "Context": "osvpi_account_call_int", "Priority": "10"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "interfaces", "Value": "Local/ID690153@osvpi_route_phoneaccount", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "GotoIf", "content": "", "AppData": "0?osvpi_handle_unallocated,204,1", "Extension": "204", "Context": "osvpi_account_call_int", "Priority": "11"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "Dial", "content": "", "AppData": "Local/ID690153@osvpi_route_phoneaccount", "Extension": "204", "Context": "osvpi_account_call_int", "Priority": "12"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "DIALSTATUS", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "DIALEDPEERNUMBER", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "DIALEDPEERNAME", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "ANSWEREDTIME", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "DIALEDTIME", "Value": "", "Event": "VarSet"}, - {"Context": "osvpi_route_phoneaccount", "Privilege": "call,all", "Uniqueid": "0f00dcaa884f-1509115795.12", "Event": "Newchannel", "content": "", "CallerIDName": "", "Exten": "ID690153", "ChannelStateDesc": "Down", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "ChannelState": "0", "AccountCode": "", "CallerIDNum": ""}, - {"Context": "osvpi_route_phoneaccount", "Privilege": "call,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "Event": "Newchannel", "content": "", "CallerIDName": "", "Exten": "ID690153", "ChannelStateDesc": "Ring", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "ChannelState": "4", "AccountCode": "", "CallerIDNum": ""}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.12", "content": "", "Variable": "DIALEDPEERNUMBER", "Value": "ID690153@osvpi_route_phoneaccount", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "Privilege": "call,all", "CallerIDNum": "204", "Event": "NewCallerid", "content": "", "CallerIDName": "", "Uniqueid": "0f00dcaa884f-1509115795.12", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"Context": "osvpi_route_phoneaccount", "Privilege": "call,all", "Channel2": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Uniqueid2": "0f00dcaa884f-1509115795.13", "Event": "LocalBridge", "content": "", "Uniqueid1": "0f00dcaa884f-1509115795.12", "Channel1": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "LocalOptimization": "Yes", "Exten": "ID690153"}, - {"Privilege": "call,all", "ConnectedLineName": "", "CallerIDNum": "202", "Event": "Dial", "content": "", "CallerIDName": "David Meadows", "Destination": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "SubEvent": "Begin", "DestUniqueID": "0f00dcaa884f-1509115795.12", "UniqueID": "0f00dcaa884f-1509115795.11", "ConnectedLineNum": "", "Dialstring": "ID690153@osvpi_route_phoneaccount", "Channel": "SIP/150010002-00000005"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "ODBCROWS", "Value": "1", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "ODBCSTATUS", "Value": "SUCCESS", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "~ODBCFIELDS~", "Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.13", "Application": "Set", "content": "", "AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=150010004,accountid,dutch,from,,0", "Extension": "ID690153", "Context": "osvpi_route_phoneaccount", "Priority": "1"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "__dst_account_id", "Value": "150010004", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "l_mangle_did", "Value": "accountid", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "l_mangle_cli", "Value": "dutch", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "l_cli_header", "Value": "from", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "l_primary_pickupgroup", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "app_account", "Value": "0", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.13", "Application": "GotoIf", "content": "", "AppData": "0?vialer", "Extension": "ID690153", "Context": "osvpi_route_phoneaccount", "Priority": "2"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.13", "Application": "Set", "content": "", "AppData": "_PICKUPMARK=", "Extension": "ID690153", "Context": "osvpi_route_phoneaccount", "Priority": "3"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "_PICKUPMARK", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.13", "Application": "Set", "content": "", "AppData": "l_trunk=0", "Extension": "ID690153", "Context": "osvpi_route_phoneaccount", "Priority": "4"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "l_trunk", "Value": "0", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.13", "Application": "Goto", "content": "", "AppData": "osvpi_route_account,ID690153,1", "Extension": "ID690153", "Context": "osvpi_route_phoneaccount", "Priority": "5"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "ODBCROWS", "Value": "1", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "ODBCSTATUS", "Value": "SUCCESS", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "~ODBCFIELDS~", "Value": "proxy", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.13", "Application": "Set", "content": "", "AppData": "ARRAY(l_proxy)=172.20.0.13", "Extension": "ID690153", "Context": "osvpi_route_account", "Priority": "1"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "l_proxy", "Value": "172.20.0.13", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.13", "Application": "Gosub", "content": "", "AppData": "osvpi_proc_mangle_number,accountid,1(150010004,204)", "Extension": "ID690153", "Context": "osvpi_route_account", "Priority": "2"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "LOCAL(ARG1)", "Value": "150010004", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "LOCAL(ARG2)", "Value": "204", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "LOCAL(ARGC)", "Value": "2", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.13", "Application": "Set", "content": "", "AppData": "MANGLED_EXTEN=150010004", "Extension": "accountid", "Context": "osvpi_proc_mangle_number", "Priority": "1"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "MANGLED_EXTEN", "Value": "150010004", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.13", "Application": "Return", "content": "", "AppData": "", "Extension": "accountid", "Context": "osvpi_proc_mangle_number", "Priority": "2"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "GOSUB_RETVAL", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.13", "Application": "Set", "content": "", "AppData": "l_did=150010004", "Extension": "ID690153", "Context": "osvpi_route_account", "Priority": "3"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "l_did", "Value": "150010004", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.13", "Application": "Gosub", "content": "", "AppData": "osvpi_proc_mangle_number,dutch,1(150010004,202)", "Extension": "ID690153", "Context": "osvpi_route_account", "Priority": "4"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "LOCAL(ARG1)", "Value": "150010004", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "LOCAL(ARG2)", "Value": "202", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "LOCAL(ARGC)", "Value": "2", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.13", "Application": "GotoIf", "content": "", "AppData": "1?fullzero,1", "Extension": "dutch", "Context": "osvpi_proc_mangle_number", "Priority": "1"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.13", "Application": "Set", "content": "", "AppData": "MANGLED_EXTEN=202", "Extension": "fullzero", "Context": "osvpi_proc_mangle_number", "Priority": "1"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "MANGLED_EXTEN", "Value": "202", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.13", "Application": "Return", "content": "", "AppData": "", "Extension": "fullzero", "Context": "osvpi_proc_mangle_number", "Priority": "2"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "GOSUB_RETVAL", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.13", "Application": "Set", "content": "", "AppData": "l_mangle_cli_hdr=from-dutch", "Extension": "ID690153", "Context": "osvpi_route_account", "Priority": "5"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "l_mangle_cli_hdr", "Value": "from-dutch", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.13", "Application": "Set", "content": "", "AppData": "l_fromuser=", "Extension": "ID690153", "Context": "osvpi_route_account", "Priority": "6"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "l_fromuser", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.13", "Application": "ExecIf", "content": "", "AppData": "1?Set(l_fromuser=202)", "Extension": "ID690153", "Context": "osvpi_route_account", "Priority": "7"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "l_fromuser", "Value": "202", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "ODBCROWS", "Value": "1", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "ODBCSTATUS", "Value": "SUCCESS", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "~ODBCFIELDS~", "Value": "IF((SELECT 1 FROM baseaccount_account ba INNER JOIN userdestination_selecteduserdestination udsud ON udsud.phoneaccount_id = ba.id INNER JOIN userdestination_userdestination udud ON udud.id = udsud.userdestination_id INNER JOIN crm_cloudctiuser cccu O", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.13", "Application": "Set", "content": "", "AppData": "ARRAY(cloudcti)=0", "Extension": "ID690153", "Context": "osvpi_route_account", "Priority": "8"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "cloudcti", "Value": "0", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.13", "Application": "GotoIf", "content": "", "AppData": "1?skipcloudcti", "Extension": "ID690153", "Context": "osvpi_route_account", "Priority": "9"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "ODBCROWS", "Value": "1", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "ODBCSTATUS", "Value": "SUCCESS", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "~ODBCFIELDS~", "Value": "GROUP_CONCAT(DISTINCT(csw.url) SEPARATOR ' '),internal_number,GROUP_CONCAT(DISTINCT(ud.internal_number) SEPARATOR ' ')", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "accountinternalnumber", "Value": "204", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "userinternalnumbers", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.13", "Application": "Goto", "content": "", "AppData": "osvpi_proc_proxy_out,204,1", "Extension": "ID690153", "Context": "osvpi_route_account", "Priority": "13"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.13", "Application": "SIPAddHeader", "content": "", "AppData": "X-Accountcode: 150010004", "Extension": "204", "Context": "osvpi_proc_proxy_out", "Priority": "1"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "__SIPADDHEADER01", "Value": "X-Accountcode: 150010004", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.13", "Application": "SIPAddHeader", "content": "", "AppData": "X-Insecure-Protection: geheim", "Extension": "204", "Context": "osvpi_proc_proxy_out", "Priority": "2"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "__SIPADDHEADER02", "Value": "X-Insecure-Protection: geheim", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.13", "Application": "SIPAddHeader", "content": "", "AppData": "X-Mangle-Cli: from-dutch", "Extension": "204", "Context": "osvpi_proc_proxy_out", "Priority": "3"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "__SIPADDHEADER03", "Value": "X-Mangle-Cli: from-dutch", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.13", "Application": "Set", "content": "", "AppData": "_dial_options_callaccept=", "Extension": "204", "Context": "osvpi_proc_proxy_out", "Priority": "4"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "_dial_options_callaccept", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.13", "Application": "Set", "content": "", "AppData": "_dial_options_callnotify=", "Extension": "204", "Context": "osvpi_proc_proxy_out", "Priority": "5"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "_dial_options_callnotify", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.13", "Application": "ExecIf", "content": "", "AppData": "0?Set(l_proxy=opensipsfg)", "Extension": "204", "Context": "osvpi_proc_proxy_out", "Priority": "6"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.13", "Application": "Set", "content": "", "AppData": "l_extra_options=", "Extension": "204", "Context": "osvpi_proc_proxy_out", "Priority": "7"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "l_extra_options", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.13", "Application": "Dial", "content": "", "AppData": "SIP/150010004/150010004/172.20.0.13!!202,,", "Extension": "204", "Context": "osvpi_proc_proxy_out", "Priority": "8"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "DIALSTATUS", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "DIALEDPEERNUMBER", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "DIALEDPEERNAME", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "ANSWEREDTIME", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "DIALEDTIME", "Value": "", "Event": "VarSet"}, - {"Context": "osvpi_account", "Privilege": "call,all", "Uniqueid": "0f00dcaa884f-1509115795.14", "Event": "Newchannel", "content": "", "CallerIDName": "", "Exten": "", "ChannelStateDesc": "Down", "Channel": "SIP/150010004-00000006", "ChannelState": "0", "AccountCode": "150010004", "CallerIDNum": ""}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.14", "content": "", "Variable": "SIPCALLID", "Value": "403dc47b689553915e71de440a92a99c@test.voipgrid.nl", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.14", "content": "", "Variable": "__client_id", "Value": "15001", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.14", "content": "", "Variable": "__account_id", "Value": "150010004", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.14", "content": "", "Variable": "__record_call", "Value": "no", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.14", "content": "", "Variable": "__intprefix", "Value": "31", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.14", "content": "", "Variable": "__limit_account", "Value": "4", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.14", "content": "", "Variable": "__limit_client", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.14", "content": "", "Variable": "__hide_ext_cliname", "Value": "1", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.14", "content": "", "Variable": "__TRANSFER_CONTEXT", "Value": "osvpi_account_transfer", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.14", "content": "", "Variable": "DIALEDPEERNUMBER", "Value": "150010004/150010004/172.20.0.13!!202", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "call,all", "CallerIDNum": "204", "Event": "NewCallerid", "content": "", "CallerIDName": "", "Uniqueid": "0f00dcaa884f-1509115795.14", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"Privilege": "call,all", "ConnectedLineName": "", "CallerIDNum": "202", "Event": "Dial", "content": "", "CallerIDName": "David Meadows", "Destination": "SIP/150010004-00000006", "SubEvent": "Begin", "DestUniqueID": "0f00dcaa884f-1509115795.14", "UniqueID": "0f00dcaa884f-1509115795.13", "ConnectedLineNum": "204", "Dialstring": "150010004/150010004/172.20.0.13!!202", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "call,all", "ChannelState": "5", "ConnectedLineNum": "202", "CallerIDNum": "204", "Event": "Newstate", "content": "", "CallerIDName": "", "Uniqueid": "0f00dcaa884f-1509115795.14", "ConnectedLineName": "David Meadows", "ChannelStateDesc": "Ringing"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "Privilege": "call,all", "ChannelState": "5", "ConnectedLineNum": "202", "CallerIDNum": "204", "Event": "Newstate", "content": "", "CallerIDName": "", "Uniqueid": "0f00dcaa884f-1509115795.12", "ConnectedLineName": "David Meadows", "ChannelStateDesc": "Ringing"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "call,all", "ChannelState": "6", "ConnectedLineNum": "202", "CallerIDNum": "204", "Event": "Newstate", "content": "", "CallerIDName": "", "Uniqueid": "0f00dcaa884f-1509115795.14", "ConnectedLineName": "David Meadows", "ChannelStateDesc": "Up"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "DIALSTATUS", "Value": "ANSWER", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "DIALEDPEERNAME", "Value": "SIP/150010004-00000006", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "DIALEDPEERNUMBER", "Value": "150010004/150010004/172.20.0.13!!202", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "BRIDGEPEER", "Value": "SIP/150010004-00000006", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.14", "content": "", "Variable": "BRIDGEPEER", "Value": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "call,all", "ChannelState": "6", "ConnectedLineNum": "204", "CallerIDNum": "202", "Event": "Newstate", "content": "", "CallerIDName": "David Meadows", "Uniqueid": "0f00dcaa884f-1509115795.13", "ConnectedLineName": "", "ChannelStateDesc": "Up"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "call,all", "Uniqueid": "0f00dcaa884f-1509115795.14", "Event": "NewAccountCode", "content": "", "AccountCode": "150010002", "OldAccountCode": "150010002"}, - {"CallerID1": "202", "Privilege": "call,all", "Bridgetype": "core", "Uniqueid2": "0f00dcaa884f-1509115795.14", "CallerID2": "204", "content": "", "Channel2": "SIP/150010004-00000006", "Uniqueid1": "0f00dcaa884f-1509115795.13", "Channel1": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Bridgestate": "Link", "Event": "Bridge"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "Privilege": "call,all", "ChannelState": "6", "ConnectedLineNum": "202", "CallerIDNum": "204", "Event": "Newstate", "content": "", "CallerIDName": "", "Uniqueid": "0f00dcaa884f-1509115795.12", "ConnectedLineName": "David Meadows", "ChannelStateDesc": "Up"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "DIALSTATUS", "Value": "ANSWER", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "DIALEDPEERNAME", "Value": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "DIALEDPEERNUMBER", "Value": "ID690153@osvpi_route_phoneaccount", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "BRIDGEPEER", "Value": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.12", "content": "", "Variable": "BRIDGEPEER", "Value": "SIP/150010002-00000005", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "call,all", "ChannelState": "6", "ConnectedLineNum": "", "CallerIDNum": "202", "Event": "Newstate", "content": "", "CallerIDName": "David Meadows", "Uniqueid": "0f00dcaa884f-1509115795.11", "ConnectedLineName": "", "ChannelStateDesc": "Up"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "Privilege": "call,all", "Uniqueid": "0f00dcaa884f-1509115795.12", "Event": "NewAccountCode", "content": "", "AccountCode": "150010002", "OldAccountCode": "150010002"}, - {"CallerID1": "202", "Privilege": "call,all", "Bridgetype": "core", "Uniqueid2": "0f00dcaa884f-1509115795.12", "CallerID2": "204", "content": "", "Channel2": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "Uniqueid1": "0f00dcaa884f-1509115795.11", "Channel1": "SIP/150010002-00000005", "Bridgestate": "Link", "Event": "Bridge"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "BRIDGEPEER", "Value": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.12", "content": "", "Variable": "BRIDGEPEER", "Value": "SIP/150010002-00000005", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.12", "content": "", "Variable": "BRIDGEPVTCALLID", "Value": "4b600887-11931912@10.13.36.116", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "BRIDGEPEER", "Value": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.12", "content": "", "Variable": "BRIDGEPEER", "Value": "SIP/150010002-00000005", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.12", "content": "", "Variable": "BRIDGEPVTCALLID", "Value": "4b600887-11931912@10.13.36.116", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "BRIDGEPEER", "Value": "SIP/150010004-00000006", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "BRIDGEPVTCALLID", "Value": "403dc47b689553915e71de440a92a99c@test.voipgrid.nl", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.14", "content": "", "Variable": "BRIDGEPEER", "Value": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "BRIDGEPEER", "Value": "SIP/150010004-00000006", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "BRIDGEPVTCALLID", "Value": "403dc47b689553915e71de440a92a99c@test.voipgrid.nl", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.14", "content": "", "Variable": "BRIDGEPEER", "Value": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Event": "VarSet"}, - {"Original": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "Privilege": "call,all", "CloneState": "Up", "Clone": "SIP/150010004-00000006", "Event": "Masquerade", "content": "", "OriginalState": "Up"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "call,all", "Uniqueid": "0f00dcaa884f-1509115795.14", "Event": "Rename", "content": "", "Newname": "SIP/150010004-00000006"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "Privilege": "call,all", "Uniqueid": "0f00dcaa884f-1509115795.12", "Event": "Rename", "content": "", "Newname": "SIP/150010004-00000006"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "call,all", "Uniqueid": "0f00dcaa884f-1509115795.14", "Event": "Rename", "content": "", "Newname": "Local/ID690153@osvpi_route_phoneaccount-00000003;1"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "call,all", "CallerIDNum": "204", "Event": "NewCallerid", "content": "", "CallerIDName": "", "Uniqueid": "0f00dcaa884f-1509115795.12", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"CallerID1": "202", "Privilege": "call,all", "Bridgetype": "core", "Uniqueid2": "0f00dcaa884f-1509115795.14", "CallerID2": "204", "content": "", "Channel2": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "Uniqueid1": "0f00dcaa884f-1509115795.13", "Channel1": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Bridgestate": "Unlink", "Event": "Bridge"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "BRIDGEPEER", "Value": "SIP/150010004-00000006", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "ANSWEREDTIME", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "BRIDGEPVTCALLID", "Value": "403dc47b689553915e71de440a92a99c@test.voipgrid.nl", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "DIALEDTIME", "Value": "1", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.12", "content": "", "Variable": "BRIDGEPEER", "Value": "SIP/150010002-00000005", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.12", "content": "", "Variable": "BRIDGEPVTCALLID", "Value": "4b600887-11931912@10.13.36.116", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "call,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "Event": "HangupRequest", "content": ""}, - {"Privilege": "call,all", "Cause-txt": "Normal Clearing", "Cause": "16", "Uniqueid": "0f00dcaa884f-1509115795.14", "Event": "Hangup", "content": "", "CallerIDName": "", "ConnectedLineName": "David Meadows", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "AccountCode": "150010002", "CallerIDNum": "204", "ConnectedLineNum": "202"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.13", "content": "", "Variable": "DIALSTATUS", "Value": "ANSWER", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "call,all", "UniqueID": "0f00dcaa884f-1509115795.13", "DialStatus": "ANSWER", "content": "", "SubEvent": "End", "Event": "Dial"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "call,all", "Cause": "16", "Uniqueid": "0f00dcaa884f-1509115795.13", "Event": "SoftHangupRequest", "content": ""}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.13", "Application": "GotoIf", "content": "", "AppData": "1?nosip", "Extension": "onhangup", "Context": "handlers", "Priority": "1"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.13", "Application": "GosubIf", "content": "", "AppData": "0?osvpi_proc_httptouch,s,1()", "Extension": "onhangup", "Context": "handlers", "Priority": "3"}, - {"Privilege": "call,all", "Cause-txt": "Normal Clearing", "Cause": "16", "Uniqueid": "0f00dcaa884f-1509115795.13", "Event": "Hangup", "content": "", "CallerIDName": "David Meadows", "ConnectedLineName": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "AccountCode": "150010002", "CallerIDNum": "202", "ConnectedLineNum": "204"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "call,all", "UniqueID": "0f00dcaa884f-1509115795.12", "Event": "MusicOnHold", "content": "", "State": "Start", "Class": "default"}, - {"Privilege": "reporting,all", "CumulativeLoss": "139", "Event": "RTCPSent", "content": "", "To": "172.20.0.254:47659", "SentOctets": "17600", "SentPackets": "110", "FractionLost": "142", "SentNTP": "1509115801.3538956288", "SentRTP": "17600", "IAJitter": "0.0001", "DLSR": "18329.8640 (sec)", "TheirLastSR": "0", "OurSSRC": "631725751"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.12", "content": "", "Variable": "SIPREFERRINGCONTEXT", "Value": "osvpi_account", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.12", "content": "", "Variable": "SIPREFERREDBYHDR", "Value": "\"Bob\" ", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "BLINDTRANSFER", "Value": "SIP/150010004-00000006", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "call,all", "UniqueID": "0f00dcaa884f-1509115795.12", "Event": "MusicOnHold", "content": "", "State": "Stop"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.12", "content": "", "Variable": "BLINDTRANSFER", "Value": "SIP/150010002-00000005", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.12", "content": "", "Variable": "SIPDOMAIN", "Value": "10.13.37.110", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.12", "content": "", "Variable": "SIPTRANSFER", "Value": "yes", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.12", "content": "", "Variable": "_SIPTRANSFER", "Value": "yes", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.12", "content": "", "Variable": "_SIPTRANSFER_REFERER", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "call,all", "UniqueID": "0f00dcaa884f-1509115795.12", "Event": "MusicOnHold", "content": "", "State": "Stop"}, - {"Context": "osvpi_route_phoneaccount", "Privilege": "call,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "Event": "Newchannel", "content": "", "CallerIDName": "", "Exten": "", "ChannelStateDesc": "Up", "Channel": "AsyncGoto/SIP/150010004-00000006", "ChannelState": "6", "AccountCode": "150010002", "CallerIDNum": ""}, - {"Original": "AsyncGoto/SIP/150010004-00000006", "Privilege": "call,all", "CloneState": "Up", "Clone": "SIP/150010004-00000006", "Event": "Masquerade", "content": "", "OriginalState": "Up"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "call,all", "Uniqueid": "0f00dcaa884f-1509115795.12", "Event": "Rename", "content": "", "Newname": "SIP/150010004-00000006"}, - {"Channel": "AsyncGoto/SIP/150010004-00000006", "Privilege": "call,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "Event": "Rename", "content": "", "Newname": "SIP/150010004-00000006"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "call,all", "Uniqueid": "0f00dcaa884f-1509115795.12", "Event": "Rename", "content": "", "Newname": "AsyncGoto/SIP/150010004-00000006"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "call,all", "CallerIDNum": "204", "Event": "NewCallerid", "content": "", "CallerIDName": "", "Uniqueid": "0f00dcaa884f-1509115802.15", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"Privilege": "call,all", "Event": "Transfer", "Uniqueid": "0f00dcaa884f-1509115795.11", "SIP-Callid": "4b600887-11931912@10.13.36.116", "content": "", "TransferContext": "osvpi_account_transfer", "Channel": "SIP/150010002-00000005", "TargetChannel": "AsyncGoto/SIP/150010004-00000006", "TransferType": "Blind", "TargetUniqueid": "0f00dcaa884f-1509115795.12", "TransferExten": "203", "TransferMethod": "SIP"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "BRIDGEPEER", "Value": "AsyncGoto/SIP/150010004-00000006", "Event": "VarSet"}, - {"Channel": "AsyncGoto/SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.12", "content": "", "Variable": "BRIDGEPEER", "Value": "SIP/150010002-00000005", "Event": "VarSet"}, - {"Channel": "AsyncGoto/SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.12", "content": "", "Variable": "BRIDGEPVTCALLID", "Value": "4b600887-11931912@10.13.36.116", "Event": "VarSet"}, - {"CallerID1": "202", "Privilege": "call,all", "Bridgetype": "core", "Uniqueid2": "0f00dcaa884f-1509115795.12", "Event": "Bridge", "content": "", "Channel2": "AsyncGoto/SIP/150010004-00000006", "Uniqueid1": "0f00dcaa884f-1509115795.11", "Channel1": "SIP/150010002-00000005", "Bridgestate": "Unlink"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "ANSWEREDTIME", "Value": "6", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "DIALEDTIME", "Value": "7", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "NoOp", "content": "", "AppData": "DEBUG: XFER: accountcode=150010002 client_id=15001 account_id=150010002", "Extension": "203", "Context": "osvpi_account_transfer", "Priority": "1"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "GotoIf", "content": "", "AppData": "1?accountinfo", "Extension": "203", "Context": "osvpi_account_transfer", "Priority": "2"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "Set", "content": "", "AppData": "l_changed=1", "Extension": "203", "Context": "osvpi_account_transfer", "Priority": "6"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "l_changed", "Value": "1", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "ForkCDR", "content": "", "AppData": "ATe", "Extension": "203", "Context": "osvpi_account_transfer", "Priority": "7"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "GotoIf", "content": "", "AppData": "1?blindxfer:code302or482", "Extension": "203", "Context": "osvpi_account_transfer", "Priority": "8"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "NoOp", "content": "", "AppData": "DEBUG: REFER: SIPTRANSFER=yes BLINDTRANSFER=SIP/150010002-00000005 BRIDGEPEER=SIP/150010002-00000005 SIPTRANSFER_REFERER=", "Extension": "203", "Context": "osvpi_account_transfer", "Priority": "9"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "Set", "content": "", "AppData": "seconds_since_last_exten_list_addition=7", "Extension": "203", "Context": "osvpi_account_transfer", "Priority": "10"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "seconds_since_last_exten_list_addition", "Value": "7", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "ExecIf", "content": "", "AppData": "1?Set(__EXTEN_LIST=)", "Extension": "203", "Context": "osvpi_account_transfer", "Priority": "11"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "__EXTEN_LIST", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "Set", "content": "", "AppData": "l_tmp=", "Extension": "203", "Context": "osvpi_account_transfer", "Priority": "12"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "l_tmp", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "ExecIf", "content": "", "AppData": "1?Set(l_tmp=150010002@10.13.37.110)", "Extension": "203", "Context": "osvpi_account_transfer", "Priority": "13"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "l_tmp", "Value": "150010002@10.13.37.110", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "ExecIf", "content": "", "AppData": "0?Hangup()", "Extension": "203", "Context": "osvpi_account_transfer", "Priority": "14"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "Set", "content": "", "AppData": "l_tmp=150010002", "Extension": "203", "Context": "osvpi_account_transfer", "Priority": "15"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "l_tmp", "Value": "150010002", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "GotoIf", "content": "", "AppData": "1?arefersb", "Extension": "203", "Context": "osvpi_account_transfer", "Priority": "16"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "NoOp", "content": "", "AppData": "New caller is 150010002 (unchanged)", "Extension": "203", "Context": "osvpi_account_transfer", "Priority": "19"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "Set", "content": "", "AppData": "l_changed=0", "Extension": "203", "Context": "osvpi_account_transfer", "Priority": "20"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "l_changed", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "Goto", "content": "", "AppData": "proceed", "Extension": "203", "Context": "osvpi_account_transfer", "Priority": "21"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "Set", "content": "", "AppData": "__TRANSFER_CONTEXT=osvpi_account_transfer", "Extension": "203", "Context": "osvpi_account_transfer", "Priority": "33"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "__TRANSFER_CONTEXT", "Value": "osvpi_account_transfer", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "Set", "content": "", "AppData": "user_privacy=0", "Extension": "203", "Context": "osvpi_account_transfer", "Priority": "34"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "user_privacy", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "Set", "content": "", "AppData": "is_transfer=1", "Extension": "203", "Context": "osvpi_account_transfer", "Priority": "35"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "is_transfer", "Value": "1", "Event": "VarSet"}, - {"Privilege": "call,all", "Cause-txt": "Normal Clearing", "Cause": "16", "Uniqueid": "0f00dcaa884f-1509115795.12", "Event": "Hangup", "content": "", "CallerIDName": "", "ConnectedLineName": "", "Channel": "AsyncGoto/SIP/150010004-00000006", "AccountCode": "150010002", "CallerIDNum": "", "ConnectedLineNum": ""}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "ODBCROWS", "Value": "1", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "ODBCSTATUS", "Value": "SUCCESS", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "~ODBCFIELDS~", "Value": "client_id,intprefix,internal_number,limit_account,limit_client", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115795.11", "content": "", "Variable": "DIALSTATUS", "Value": "ANSWER", "Event": "VarSet"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "call,all", "UniqueID": "0f00dcaa884f-1509115795.11", "DialStatus": "ANSWER", "content": "", "SubEvent": "End", "Event": "Dial"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "call,all", "Cause": "16", "Uniqueid": "0f00dcaa884f-1509115795.11", "Event": "SoftHangupRequest", "content": ""}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "GotoIf", "content": "", "AppData": "0?nosip", "Extension": "onhangup", "Context": "handlers", "Priority": "1"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "NoOp", "content": "", "AppData": "LOG: rtpqos: caller=(null);asterisk=0.0.0.0:15492;ssrc=504314225;themssrc=0;lp=0;rxjitter=0.000000;rxcount=0;txjitter=0.000000;txcount=0;rlp=0;rtt=0.000000;billsec=0", "Extension": "onhangup", "Context": "handlers", "Priority": "2"}, - {"Channel": "SIP/150010002-00000005", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115795.11", "Application": "GosubIf", "content": "", "AppData": "0?osvpi_proc_httptouch,s,1()", "Extension": "onhangup", "Context": "handlers", "Priority": "3"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "ExecIf", "content": "", "AppData": "0?Set(ARRAY(__client_id,__intprefix,dummy,__limit_account,__limit_client)=15001,31,202,4,0)", "Extension": "203", "Context": "osvpi_account_transfer", "Priority": "36"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "ExecIf", "content": "", "AppData": "0?Set(CHANNEL(musicclass)=)", "Extension": "203", "Context": "osvpi_account_transfer", "Priority": "37"}, - {"Privilege": "call,all", "Cause-txt": "Normal Clearing", "Cause": "16", "Uniqueid": "0f00dcaa884f-1509115795.11", "Event": "Hangup", "content": "", "CallerIDName": "David Meadows", "ConnectedLineName": "", "Channel": "SIP/150010002-00000005", "AccountCode": "150010002", "CallerIDNum": "202", "ConnectedLineNum": ""}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "NoOp", "content": "", "AppData": "DEBUG: CLI: name=\"\" num=204 ANI= presence=allowed_not_screened", "Extension": "203", "Context": "osvpi_account_transfer", "Priority": "38"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "Goto", "content": "", "AppData": "osvpi_account,203,checkspeeddial", "Extension": "203", "Context": "osvpi_account_transfer", "Priority": "39"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "GotoIf", "content": "", "AppData": "1?continue", "Extension": "203", "Context": "osvpi_account", "Priority": "19"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "Gosub", "content": "", "AppData": "osvpi_proc_set_i18n_region,31,1", "Extension": "203", "Context": "osvpi_account", "Priority": "22"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "LOCAL(ARGC)", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "Set", "content": "", "AppData": "i18n_region=NL", "Extension": "31", "Context": "osvpi_proc_set_i18n_region", "Priority": "1"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "i18n_region", "Value": "NL", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "Return", "content": "", "AppData": "", "Extension": "31", "Context": "osvpi_proc_set_i18n_region", "Priority": "2"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "GOSUB_RETVAL", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "Goto", "content": "", "AppData": "osvpi_account_emergency_NL,203,1", "Extension": "203", "Context": "osvpi_account", "Priority": "23"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "Goto", "content": "", "AppData": "osvpi_account_no_emergency,203,1", "Extension": "203", "Context": "osvpi_account_emergency_NL", "Priority": "1"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "Goto", "content": "", "AppData": "osvpi_account,203,no-emergency", "Extension": "203", "Context": "osvpi_account_no_emergency", "Priority": "1"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "Goto", "content": "", "AppData": "osvpi_account_clean,203,1", "Extension": "203", "Context": "osvpi_account", "Priority": "24"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "Set", "content": "", "AppData": "return=osvpi_account_clean", "Extension": "203", "Context": "osvpi_account_clean", "Priority": "1"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "return", "Value": "osvpi_account_clean", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "Goto", "content": "", "AppData": "osvpi_return_to_canonical,31i203,1", "Extension": "203", "Context": "osvpi_account_clean", "Priority": "2"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "INVALID_EXTEN", "Value": "31i203", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "Goto", "content": "", "AppData": "osvpi_account_clean,203,local", "Extension": "i", "Context": "osvpi_return_to_canonical", "Priority": "1"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "GotoIf", "content": "", "AppData": "0?extern", "Extension": "203", "Context": "osvpi_account_clean", "Priority": "3"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "Gosub", "content": "", "AppData": "osvpi_proc_set_callerid,203,1(150010002,0,0)", "Extension": "203", "Context": "osvpi_account_clean", "Priority": "4"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "LOCAL(ARG1)", "Value": "150010002", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "LOCAL(ARG2)", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "LOCAL(ARG3)", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "LOCAL(ARGC)", "Value": "3", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "GotoIf", "content": "", "AppData": "1?done", "Extension": "203", "Context": "osvpi_proc_set_callerid", "Priority": "1"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "Return", "content": "", "AppData": "", "Extension": "203", "Context": "osvpi_proc_set_callerid", "Priority": "10"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "GOSUB_RETVAL", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "GotoIf", "content": "", "AppData": "3?osvpi_account_call_int,203,1:i,1", "Extension": "203", "Context": "osvpi_account_clean", "Priority": "5"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "Gosub", "content": "", "AppData": "osvpi_proc_check_limits,203,1", "Extension": "203", "Context": "osvpi_account_call_int", "Priority": "1"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "LOCAL(ARGC)", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "NoOp", "content": "", "AppData": "DEBUG: call_limit: client 0/0 and account 0/4", "Extension": "203", "Context": "osvpi_proc_check_limits", "Priority": "1"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "GotoIf", "content": "", "AppData": "0?osvpi_handle_limit,203,client", "Extension": "203", "Context": "osvpi_proc_check_limits", "Priority": "2"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "GotoIf", "content": "", "AppData": "0?osvpi_handle_limit,203,account", "Extension": "203", "Context": "osvpi_proc_check_limits", "Priority": "3"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "Set", "content": "", "AppData": "GROUP(account_lim)=150010002", "Extension": "203", "Context": "osvpi_proc_check_limits", "Priority": "4"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "Set", "content": "", "AppData": "GROUP(client_lim)=15001", "Extension": "203", "Context": "osvpi_proc_check_limits", "Priority": "5"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "Return", "content": "", "AppData": "", "Extension": "203", "Context": "osvpi_proc_check_limits", "Priority": "6"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "GOSUB_RETVAL", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "Gosub", "content": "", "AppData": "osvpi_proc_check_recurse,203,1(15001)", "Extension": "203", "Context": "osvpi_account_call_int", "Priority": "2"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "LOCAL(ARG1)", "Value": "15001", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "LOCAL(ARGC)", "Value": "1", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "Set", "content": "", "AppData": "LOCAL(exten)=15001:203", "Extension": "203", "Context": "osvpi_proc_check_recurse", "Priority": "1"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "LOCAL(exten)", "Value": "15001:203", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "NoOp", "content": "", "AppData": "Recursion checking 15001:203 against ", "Extension": "203", "Context": "osvpi_proc_check_recurse", "Priority": "2"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "Set", "content": "", "AppData": "LOCAL(n)=0", "Extension": "203", "Context": "osvpi_proc_check_recurse", "Priority": "3"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "LOCAL(n)", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "Set", "content": "", "AppData": "LOCAL(i)=1", "Extension": "203", "Context": "osvpi_proc_check_recurse", "Priority": "4"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "LOCAL(i)", "Value": "1", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "GotoIf", "content": "", "AppData": "1?add", "Extension": "203", "Context": "osvpi_proc_check_recurse", "Priority": "5"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "Set", "content": "", "AppData": "__EXTEN_LIST=15001:203 ", "Extension": "203", "Context": "osvpi_proc_check_recurse", "Priority": "9"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "__EXTEN_LIST", "Value": "15001:203 ", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "Set", "content": "", "AppData": "__EXTEN_LIST_LAST_EDIT_TIME=1509115802", "Extension": "203", "Context": "osvpi_proc_check_recurse", "Priority": "10"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "__EXTEN_LIST_LAST_EDIT_TIME", "Value": "1509115802", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "Return", "content": "", "AppData": "", "Extension": "203", "Context": "osvpi_proc_check_recurse", "Priority": "11"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "GOSUB_RETVAL", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "Set", "content": "", "AppData": "__ORIG_EXTEN=203", "Extension": "203", "Context": "osvpi_account_call_int", "Priority": "3"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "__ORIG_EXTEN", "Value": "203", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "ODBCROWS", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "ODBCSTATUS", "Value": "NODATA", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "Set", "content": "", "AppData": "ARRAY(conference_id,user_password,admin_password,conference_language)=", "Extension": "203", "Context": "osvpi_account_call_int", "Priority": "4"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "conference_id", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "user_password", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "admin_password", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "conference_language", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "GotoIf", "content": "", "AppData": "0?osvpi_route_conference,ID,1", "Extension": "203", "Context": "osvpi_account_call_int", "Priority": "5"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "ODBCROWS", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "ODBCSTATUS", "Value": "NODATA", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "Set", "content": "", "AppData": "ARRAY(route_id,client_timezone)=", "Extension": "203", "Context": "osvpi_account_call_int", "Priority": "6"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "route_id", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "client_timezone", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "GotoIf", "content": "", "AppData": "0?osvpi_route_root,203,restart", "Extension": "203", "Context": "osvpi_account_call_int", "Priority": "7"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "ODBCROWS", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "ODBCSTATUS", "Value": "NODATA", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "Set", "content": "", "AppData": "ARRAY(all_extensions,limited_extensions,password,account_spy_language)=", "Extension": "203", "Context": "osvpi_account_call_int", "Priority": "8"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "all_extensions", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "limited_extensions", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "password", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "account_spy_language", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "GotoIf", "content": "", "AppData": "0?osvpi_account_spy,203,1", "Extension": "203", "Context": "osvpi_account_call_int", "Priority": "9"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "ODBCROWS", "Value": "1", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "ODBCSTATUS", "Value": "SUCCESS", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "~ODBCFIELDS~", "Value": "interfaces", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "Set", "content": "", "AppData": "ARRAY(interfaces)=Local/ID690152@osvpi_route_phoneaccount", "Extension": "203", "Context": "osvpi_account_call_int", "Priority": "10"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "interfaces", "Value": "Local/ID690152@osvpi_route_phoneaccount", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "GotoIf", "content": "", "AppData": "0?osvpi_handle_unallocated,203,1", "Extension": "203", "Context": "osvpi_account_call_int", "Priority": "11"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "Dial", "content": "", "AppData": "Local/ID690152@osvpi_route_phoneaccount", "Extension": "203", "Context": "osvpi_account_call_int", "Priority": "12"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "DIALSTATUS", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "DIALEDPEERNUMBER", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "DIALEDPEERNAME", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "ANSWEREDTIME", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "DIALEDTIME", "Value": "", "Event": "VarSet"}, - {"Context": "osvpi_route_phoneaccount", "Privilege": "call,all", "Uniqueid": "0f00dcaa884f-1509115802.16", "Event": "Newchannel", "content": "", "CallerIDName": "", "Exten": "ID690152", "ChannelStateDesc": "Down", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;1", "ChannelState": "0", "AccountCode": "", "CallerIDNum": ""}, - {"Context": "osvpi_route_phoneaccount", "Privilege": "call,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "Event": "Newchannel", "content": "", "CallerIDName": "", "Exten": "ID690152", "ChannelStateDesc": "Ring", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "ChannelState": "4", "AccountCode": "", "CallerIDNum": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;1", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.16", "content": "", "Variable": "DIALEDPEERNUMBER", "Value": "ID690152@osvpi_route_phoneaccount", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;1", "Privilege": "call,all", "CallerIDNum": "203", "Event": "NewCallerid", "content": "", "CallerIDName": "David Meadows", "Uniqueid": "0f00dcaa884f-1509115802.16", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"Context": "osvpi_route_phoneaccount", "Privilege": "call,all", "Channel2": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Uniqueid2": "0f00dcaa884f-1509115802.17", "Event": "LocalBridge", "content": "", "Uniqueid1": "0f00dcaa884f-1509115802.16", "Channel1": "Local/ID690152@osvpi_route_phoneaccount-00000004;1", "LocalOptimization": "Yes", "Exten": "ID690152"}, - {"Privilege": "call,all", "ConnectedLineName": "David Meadows", "CallerIDNum": "204", "Event": "Dial", "content": "", "CallerIDName": "", "Destination": "Local/ID690152@osvpi_route_phoneaccount-00000004;1", "SubEvent": "Begin", "DestUniqueID": "0f00dcaa884f-1509115802.16", "UniqueID": "0f00dcaa884f-1509115802.15", "ConnectedLineNum": "202", "Dialstring": "ID690152@osvpi_route_phoneaccount", "Channel": "SIP/150010004-00000006"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "ODBCROWS", "Value": "1", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "ODBCSTATUS", "Value": "SUCCESS", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "~ODBCFIELDS~", "Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.17", "Application": "Set", "content": "", "AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=150010003,accountid,dutch,from,,0", "Extension": "ID690152", "Context": "osvpi_route_phoneaccount", "Priority": "1"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "__dst_account_id", "Value": "150010003", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "l_mangle_did", "Value": "accountid", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "l_mangle_cli", "Value": "dutch", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "l_cli_header", "Value": "from", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "l_primary_pickupgroup", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "app_account", "Value": "0", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.17", "Application": "GotoIf", "content": "", "AppData": "0?vialer", "Extension": "ID690152", "Context": "osvpi_route_phoneaccount", "Priority": "2"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.17", "Application": "Set", "content": "", "AppData": "_PICKUPMARK=", "Extension": "ID690152", "Context": "osvpi_route_phoneaccount", "Priority": "3"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "_PICKUPMARK", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.17", "Application": "Set", "content": "", "AppData": "l_trunk=0", "Extension": "ID690152", "Context": "osvpi_route_phoneaccount", "Priority": "4"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "l_trunk", "Value": "0", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.17", "Application": "Goto", "content": "", "AppData": "osvpi_route_account,ID690152,1", "Extension": "ID690152", "Context": "osvpi_route_phoneaccount", "Priority": "5"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "ODBCROWS", "Value": "0", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "ODBCSTATUS", "Value": "NODATA", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.17", "Application": "Set", "content": "", "AppData": "ARRAY(l_proxy)=", "Extension": "ID690152", "Context": "osvpi_route_account", "Priority": "1"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "l_proxy", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.17", "Application": "Gosub", "content": "", "AppData": "osvpi_proc_mangle_number,accountid,1(150010003,203)", "Extension": "ID690152", "Context": "osvpi_route_account", "Priority": "2"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "LOCAL(ARG1)", "Value": "150010003", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "LOCAL(ARG2)", "Value": "203", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "LOCAL(ARGC)", "Value": "2", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.17", "Application": "Set", "content": "", "AppData": "MANGLED_EXTEN=150010003", "Extension": "accountid", "Context": "osvpi_proc_mangle_number", "Priority": "1"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "MANGLED_EXTEN", "Value": "150010003", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.17", "Application": "Return", "content": "", "AppData": "", "Extension": "accountid", "Context": "osvpi_proc_mangle_number", "Priority": "2"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "GOSUB_RETVAL", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.17", "Application": "Set", "content": "", "AppData": "l_did=150010003", "Extension": "ID690152", "Context": "osvpi_route_account", "Priority": "3"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "l_did", "Value": "150010003", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.17", "Application": "Gosub", "content": "", "AppData": "osvpi_proc_mangle_number,dutch,1(150010003,204)", "Extension": "ID690152", "Context": "osvpi_route_account", "Priority": "4"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "LOCAL(ARG1)", "Value": "150010003", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "LOCAL(ARG2)", "Value": "204", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "LOCAL(ARGC)", "Value": "2", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.17", "Application": "GotoIf", "content": "", "AppData": "1?fullzero,1", "Extension": "dutch", "Context": "osvpi_proc_mangle_number", "Priority": "1"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.17", "Application": "Set", "content": "", "AppData": "MANGLED_EXTEN=204", "Extension": "fullzero", "Context": "osvpi_proc_mangle_number", "Priority": "1"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "MANGLED_EXTEN", "Value": "204", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.17", "Application": "Return", "content": "", "AppData": "", "Extension": "fullzero", "Context": "osvpi_proc_mangle_number", "Priority": "2"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "GOSUB_RETVAL", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.17", "Application": "Set", "content": "", "AppData": "l_mangle_cli_hdr=from-dutch", "Extension": "ID690152", "Context": "osvpi_route_account", "Priority": "5"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "l_mangle_cli_hdr", "Value": "from-dutch", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.17", "Application": "Set", "content": "", "AppData": "l_fromuser=", "Extension": "ID690152", "Context": "osvpi_route_account", "Priority": "6"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "l_fromuser", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.17", "Application": "ExecIf", "content": "", "AppData": "1?Set(l_fromuser=204)", "Extension": "ID690152", "Context": "osvpi_route_account", "Priority": "7"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "l_fromuser", "Value": "204", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "ODBCROWS", "Value": "1", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "ODBCSTATUS", "Value": "SUCCESS", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "~ODBCFIELDS~", "Value": "IF((SELECT 1 FROM baseaccount_account ba INNER JOIN userdestination_selecteduserdestination udsud ON udsud.phoneaccount_id = ba.id INNER JOIN userdestination_userdestination udud ON udud.id = udsud.userdestination_id INNER JOIN crm_cloudctiuser cccu O", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.17", "Application": "Set", "content": "", "AppData": "ARRAY(cloudcti)=0", "Extension": "ID690152", "Context": "osvpi_route_account", "Priority": "8"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "cloudcti", "Value": "0", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.17", "Application": "GotoIf", "content": "", "AppData": "1?skipcloudcti", "Extension": "ID690152", "Context": "osvpi_route_account", "Priority": "9"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "ODBCROWS", "Value": "1", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "ODBCSTATUS", "Value": "SUCCESS", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "~ODBCFIELDS~", "Value": "GROUP_CONCAT(DISTINCT(csw.url) SEPARATOR ' '),internal_number,GROUP_CONCAT(DISTINCT(ud.internal_number) SEPARATOR ' ')", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "accountinternalnumber", "Value": "203", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "userinternalnumbers", "Value": "603", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.17", "Application": "Goto", "content": "", "AppData": "osvpi_proc_proxy_out,203,1", "Extension": "ID690152", "Context": "osvpi_route_account", "Priority": "13"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.17", "Application": "SIPAddHeader", "content": "", "AppData": "X-Accountcode: 150010003", "Extension": "203", "Context": "osvpi_proc_proxy_out", "Priority": "1"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "__SIPADDHEADER04", "Value": "X-Accountcode: 150010003", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.17", "Application": "SIPAddHeader", "content": "", "AppData": "X-Insecure-Protection: geheim", "Extension": "203", "Context": "osvpi_proc_proxy_out", "Priority": "2"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "__SIPADDHEADER05", "Value": "X-Insecure-Protection: geheim", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.17", "Application": "SIPAddHeader", "content": "", "AppData": "X-Mangle-Cli: from-dutch", "Extension": "203", "Context": "osvpi_proc_proxy_out", "Priority": "3"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "__SIPADDHEADER06", "Value": "X-Mangle-Cli: from-dutch", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.17", "Application": "Set", "content": "", "AppData": "_dial_options_callaccept=", "Extension": "203", "Context": "osvpi_proc_proxy_out", "Priority": "4"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "_dial_options_callaccept", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.17", "Application": "Set", "content": "", "AppData": "_dial_options_callnotify=", "Extension": "203", "Context": "osvpi_proc_proxy_out", "Priority": "5"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "_dial_options_callnotify", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.17", "Application": "ExecIf", "content": "", "AppData": "1?Set(l_proxy=opensipsfg)", "Extension": "203", "Context": "osvpi_proc_proxy_out", "Priority": "6"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "l_proxy", "Value": "opensipsfg", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.17", "Application": "Set", "content": "", "AppData": "l_extra_options=", "Extension": "203", "Context": "osvpi_proc_proxy_out", "Priority": "7"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "l_extra_options", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.17", "Application": "Dial", "content": "", "AppData": "SIP/150010003/150010003/opensipsfg!!204,,", "Extension": "203", "Context": "osvpi_proc_proxy_out", "Priority": "8"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "DIALSTATUS", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "DIALEDPEERNUMBER", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "DIALEDPEERNAME", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "ANSWEREDTIME", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "DIALEDTIME", "Value": "", "Event": "VarSet"}, - {"Context": "osvpi_account", "Privilege": "call,all", "Uniqueid": "0f00dcaa884f-1509115802.18", "Event": "Newchannel", "content": "", "CallerIDName": "", "Exten": "", "ChannelStateDesc": "Down", "Channel": "SIP/150010003-00000007", "ChannelState": "0", "AccountCode": "150010003", "CallerIDNum": ""}, - {"Channel": "SIP/150010003-00000007", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.18", "content": "", "Variable": "SIPCALLID", "Value": "6b311b224e1677ec2ad66e6c599085e1@test.voipgrid.nl", "Event": "VarSet"}, - {"Channel": "SIP/150010003-00000007", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.18", "content": "", "Variable": "__client_id", "Value": "15001", "Event": "VarSet"}, - {"Channel": "SIP/150010003-00000007", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.18", "content": "", "Variable": "__account_id", "Value": "150010003", "Event": "VarSet"}, - {"Channel": "SIP/150010003-00000007", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.18", "content": "", "Variable": "__record_call", "Value": "no", "Event": "VarSet"}, - {"Channel": "SIP/150010003-00000007", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.18", "content": "", "Variable": "__intprefix", "Value": "31", "Event": "VarSet"}, - {"Channel": "SIP/150010003-00000007", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.18", "content": "", "Variable": "__limit_account", "Value": "4", "Event": "VarSet"}, - {"Channel": "SIP/150010003-00000007", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.18", "content": "", "Variable": "__limit_client", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010003-00000007", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.18", "content": "", "Variable": "__hide_ext_cliname", "Value": "1", "Event": "VarSet"}, - {"Channel": "SIP/150010003-00000007", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.18", "content": "", "Variable": "__TRANSFER_CONTEXT", "Value": "osvpi_account_transfer", "Event": "VarSet"}, - {"Channel": "SIP/150010003-00000007", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.18", "content": "", "Variable": "DIALEDPEERNUMBER", "Value": "150010003/150010003/opensipsfg!!204", "Event": "VarSet"}, - {"Channel": "SIP/150010003-00000007", "Privilege": "call,all", "CallerIDNum": "203", "Event": "NewCallerid", "content": "", "CallerIDName": "David Meadows", "Uniqueid": "0f00dcaa884f-1509115802.18", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"Privilege": "call,all", "ConnectedLineName": "David Meadows", "CallerIDNum": "204", "Event": "Dial", "content": "", "CallerIDName": "", "Destination": "SIP/150010003-00000007", "SubEvent": "Begin", "DestUniqueID": "0f00dcaa884f-1509115802.18", "UniqueID": "0f00dcaa884f-1509115802.17", "ConnectedLineNum": "203", "Dialstring": "150010003/150010003/opensipsfg!!204", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2"}, - {"Privilege": "call,all", "Cause-txt": "User alerting, no answer", "Cause": "19", "Uniqueid": "0f00dcaa884f-1509115802.18", "Event": "Hangup", "content": "", "CallerIDName": "David Meadows", "ConnectedLineName": "", "Channel": "SIP/150010003-00000007", "AccountCode": "150010002", "CallerIDNum": "203", "ConnectedLineNum": "204"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.17", "content": "", "Variable": "DIALSTATUS", "Value": "CONGESTION", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "call,all", "UniqueID": "0f00dcaa884f-1509115802.17", "DialStatus": "CONGESTION", "content": "", "SubEvent": "End", "Event": "Dial"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.17", "Application": "GotoIf", "content": "", "AppData": "1?falloff", "Extension": "203", "Context": "osvpi_proc_proxy_out", "Priority": "9"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.17", "Application": "NoOp", "content": "", "AppData": "Got hangupcause 19 from peer 150010003 (did=150010003, cli=204, pres=allowed_not_screened, status=CONGESTION, proxy=opensipsfg)", "Extension": "203", "Context": "osvpi_proc_proxy_out", "Priority": "12"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.17", "Application": "ExecIf", "content": "", "AppData": "0?Hangup(USER_BUSY)", "Extension": "203", "Context": "osvpi_proc_proxy_out", "Priority": "13"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.17", "Application": "Hangup", "content": "", "AppData": "NO_ANSWER", "Extension": "203", "Context": "osvpi_proc_proxy_out", "Priority": "14"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "call,all", "Cause": "16", "Uniqueid": "0f00dcaa884f-1509115802.17", "Event": "SoftHangupRequest", "content": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.17", "Application": "GotoIf", "content": "", "AppData": "1?nosip", "Extension": "onhangup", "Context": "handlers", "Priority": "1"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.17", "Application": "GosubIf", "content": "", "AppData": "0?osvpi_proc_httptouch,s,1()", "Extension": "onhangup", "Context": "handlers", "Priority": "3"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;1", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.16", "content": "", "Variable": "CHANLOCALSTATUS", "Value": "CONGESTION", "Event": "VarSet"}, - {"Privilege": "call,all", "Cause-txt": "User alerting, no answer", "Cause": "19", "Uniqueid": "0f00dcaa884f-1509115802.17", "Event": "Hangup", "content": "", "CallerIDName": "", "ConnectedLineName": "David Meadows", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;2", "AccountCode": "150010002", "CallerIDNum": "204", "ConnectedLineNum": "203"}, - {"Privilege": "call,all", "Cause-txt": "User alerting, no answer", "Cause": "19", "Uniqueid": "0f00dcaa884f-1509115802.16", "Event": "Hangup", "content": "", "CallerIDName": "David Meadows", "ConnectedLineName": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000004;1", "AccountCode": "150010002", "CallerIDNum": "203", "ConnectedLineNum": "204"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "DIALSTATUS", "Value": "NOANSWER", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "call,all", "UniqueID": "0f00dcaa884f-1509115802.15", "DialStatus": "NOANSWER", "content": "", "SubEvent": "End", "Event": "Dial"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "GotoIf", "content": "", "AppData": "1?osvpi_proc_hangup,203,1", "Extension": "203", "Context": "osvpi_account_call_int", "Priority": "13"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "Hangup", "content": "", "AppData": "19", "Extension": "203", "Context": "osvpi_proc_hangup", "Priority": "1"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "call,all", "Cause": "16", "Uniqueid": "0f00dcaa884f-1509115802.15", "Event": "SoftHangupRequest", "content": ""}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "GotoIf", "content": "", "AppData": "0?nosip", "Extension": "onhangup", "Context": "handlers", "Priority": "1"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "NoOp", "content": "", "AppData": "LOG: rtpqos: caller=172.20.0.254:47658;asterisk=0.0.0.0:17458;ssrc=1864393946;themssrc=3211629858;lp=139;rxjitter=0.000000;rxcount=120;txjitter=0.000063;txcount=118;rlp=0;rtt=0.000000;billsec=6", "Extension": "onhangup", "Context": "handlers", "Priority": "2"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509115802.15", "Application": "GosubIf", "content": "", "AppData": "0?osvpi_proc_httptouch,s,1()", "Extension": "onhangup", "Context": "handlers", "Priority": "3"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "RTPAUDIOQOS", "Value": "ssrc=1864393946;themssrc=3211629858;lp=139;rxjitter=0.000000;rxcount=120;txjitter=0.000063;txcount=118;rlp=0;rtt=0.000000", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "RTPAUDIOQOSJITTER", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "RTPAUDIOQOSLOSS", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "RTPAUDIOQOSRTT", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000006", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509115802.15", "content": "", "Variable": "RTPAUDIOQOS", "Value": "ssrc=1864393946;themssrc=3211629858;lp=139;rxjitter=0.000000;rxcount=120;txjitter=0.000063;txcount=118;rlp=0;rtt=0.000000", "Event": "VarSet"}, - {"Privilege": "call,all", "Cause-txt": "User alerting, no answer", "Cause": "19", "Uniqueid": "0f00dcaa884f-1509115802.15", "Event": "Hangup", "content": "", "CallerIDName": "", "ConnectedLineName": "David Meadows", "Channel": "SIP/150010004-00000006", "AccountCode": "150010002", "CallerIDNum": "204", "ConnectedLineNum": "202"} -] + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000015", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1530000295.403", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.403", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000015", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1530000295.403", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.403", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000015", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1530000295.403", "Priority": "5", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.403", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000015", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1530000295.403", "Priority": "6", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.403", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000e;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "07b796be1962-1530000295.403", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.406", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "07b796be1962-1530000295.403", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.408", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000e;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1530000295.403", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.406", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000e;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1530000295.403", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.406", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000e;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1530000295.403", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.406", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730151", "Language": "en", "Linkedid": "07b796be1962-1530000295.403", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.408", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730151", "Language": "en", "Linkedid": "07b796be1962-1530000295.403", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.408", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730151", "Language": "en", "Linkedid": "07b796be1962-1530000295.403", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.408", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730151", "LocalOneAccountCode": "150010001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "202", "LocalOneChannel": "Local/ID730151@osvpi_route_phoneaccount-0000000e;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Andrew Garza", "LocalOneConnectedLineNum": "201", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "202", "LocalOneLanguage": "en", "LocalOneLinkedid": "07b796be1962-1530000295.403", "LocalOnePriority": "1", "LocalOneUniqueid": "07b796be1962-1530000295.406", "LocalOptimization": "Yes", "LocalTwoAccountCode": "150010001", "LocalTwoCallerIDName": "Andrew Garza", "LocalTwoCallerIDNum": "201", "LocalTwoChannel": "Local/ID730151@osvpi_route_phoneaccount-0000000e;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "202", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730151", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "07b796be1962-1530000295.403", "LocalTwoPriority": "1", "LocalTwoUniqueid": "07b796be1962-1530000295.408", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000015", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-0000000e;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "202", "DestLanguage": "en", "DestLinkedid": "07b796be1962-1530000295.403", "DestPriority": "1", "DestUniqueid": "07b796be1962-1530000295.406", "DialString": "ID730151@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1530000295.403", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.403", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010002-00000016", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "07b796be1962-1530000295.403", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.411", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000016", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1530000295.403", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.411", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000016", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1530000295.403", "OldAccountCode": "150010002", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.411", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000016", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1530000295.403", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.411", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "SIP/150010002-00000016", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "202", "DestLanguage": "nl", "DestLinkedid": "07b796be1962-1530000295.403", "DestPriority": "1", "DestUniqueid": "07b796be1962-1530000295.411", "DialString": "150010002/150010002/172.20.0.13!!201", "Event": "DialBegin", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1530000295.403", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.408", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000016", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1530000295.403", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.411", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000e;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1530000295.403", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.406", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000016", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1530000295.403", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.411", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "SIP/150010002-00000016", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "07b796be1962-1530000295.403", "DestPriority": "1", "DestUniqueid": "07b796be1962-1530000295.411", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1530000295.403", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.408", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000e;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1530000295.403", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.408", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000e;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1530000295.403", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.406", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "59078e7f-d34c-4b80-b87f-1908dfeda0f2", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000015", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-0000000e;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "07b796be1962-1530000295.403", "DestPriority": "1", "DestUniqueid": "07b796be1962-1530000295.406", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1530000295.403", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.403", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000015", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1530000295.403", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.403", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "59078e7f-d34c-4b80-b87f-1908dfeda0f2", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000016", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "07b796be1962-1530000295.403", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.411", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "59078e7f-d34c-4b80-b87f-1908dfeda0f2", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000e;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1530000295.403", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.408", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "d2781b2a-ccf6-417d-8f9c-2f709b59eac1", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "d2781b2a-ccf6-417d-8f9c-2f709b59eac1", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000e;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "07b796be1962-1530000295.403", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.406", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "d2781b2a-ccf6-417d-8f9c-2f709b59eac1", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000015", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1530000295.403", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.403", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "59078e7f-d34c-4b80-b87f-1908dfeda0f2", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000016", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "07b796be1962-1530000295.403", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.411", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "d2781b2a-ccf6-417d-8f9c-2f709b59eac1", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000e;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "07b796be1962-1530000295.403", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.406", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "d2781b2a-ccf6-417d-8f9c-2f709b59eac1", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000016", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "07b796be1962-1530000295.403", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "07b796be1962-1530000295.406", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.411", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "59078e7f-d34c-4b80-b87f-1908dfeda0f2", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000e;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1530000295.403", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.408", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "59078e7f-d34c-4b80-b87f-1908dfeda0f2", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000e;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "07b796be1962-1530000295.403", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.406", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000e;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "07b796be1962-1530000295.403", "Priority": "4", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.408", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "d2781b2a-ccf6-417d-8f9c-2f709b59eac1", "BridgeVideoSourceMode": "none", "Context": "osvpi_account_transfer", "Event": "BlindTransfer", "Extension": "203", "IsExternal": "Yes", "Privilege": "call,all", "Result": "Success", "SystemName": "07b796be1962", "TransfereeAccountCode": "150010001", "TransfereeCallerIDName": "Andrew Garza", "TransfereeCallerIDNum": "201", "TransfereeChannel": "SIP/150010001-00000015", "TransfereeChannelState": "6", "TransfereeChannelStateDesc": "Up", "TransfereeConnectedLineName": "", "TransfereeConnectedLineNum": "", "TransfereeContext": "osvpi_account_call_int", "TransfereeExten": "202", "TransfereeLanguage": "nl", "TransfereeLinkedid": "07b796be1962-1530000295.403", "TransfereePriority": "12", "TransfereeUniqueid": "07b796be1962-1530000295.403", "TransfererAccountCode": "150010001", "TransfererCallerIDName": "", "TransfererCallerIDNum": "202", "TransfererChannel": "SIP/150010002-00000016", "TransfererChannelState": "6", "TransfererChannelStateDesc": "Up", "TransfererConnectedLineName": "Andrew Garza", "TransfererConnectedLineNum": "201", "TransfererContext": "osvpi_account", "TransfererExten": "", "TransfererLanguage": "nl", "TransfererLinkedid": "07b796be1962-1530000295.403", "TransfererPriority": "1", "TransfererUniqueid": "07b796be1962-1530000295.411", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "d2781b2a-ccf6-417d-8f9c-2f709b59eac1", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000016", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "07b796be1962-1530000295.403", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.411", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010002-00000016", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "07b796be1962-1530000295.403", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.411", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "d2781b2a-ccf6-417d-8f9c-2f709b59eac1", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000015", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_transfer", "Event": "BridgeLeave", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1530000295.403", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.403", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "d2781b2a-ccf6-417d-8f9c-2f709b59eac1", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000015", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_transfer", "Event": "NewCallerid", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1530000295.403", "Priority": "3", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.403", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000015", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_transfer", "Event": "NewAccountCode", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1530000295.403", "OldAccountCode": "150010001", "Priority": "23", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.403", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000f;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730152", "Language": "en", "Linkedid": "07b796be1962-1530000295.403", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000299.437", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730152", "Language": "en", "Linkedid": "07b796be1962-1530000295.403", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000299.439", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000f;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1530000295.403", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000299.437", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000f;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1530000295.403", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000299.437", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000f;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1530000295.403", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000299.437", "content": ""}, + {"AccountCode": "150010002", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730152", "Language": "en", "Linkedid": "07b796be1962-1530000295.403", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000299.439", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730152", "Language": "en", "Linkedid": "07b796be1962-1530000295.403", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000299.439", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730152", "Language": "en", "Linkedid": "07b796be1962-1530000295.403", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000299.439", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730152", "LocalOneAccountCode": "150010001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "203", "LocalOneChannel": "Local/ID730152@osvpi_route_phoneaccount-0000000f;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "201", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "203", "LocalOneLanguage": "en", "LocalOneLinkedid": "07b796be1962-1530000295.403", "LocalOnePriority": "1", "LocalOneUniqueid": "07b796be1962-1530000299.437", "LocalOptimization": "Yes", "LocalTwoAccountCode": "150010002", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "201", "LocalTwoChannel": "Local/ID730152@osvpi_route_phoneaccount-0000000f;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "203", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730152", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "07b796be1962-1530000295.403", "LocalTwoPriority": "1", "LocalTwoUniqueid": "07b796be1962-1530000299.439", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000015", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "203", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-0000000f;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "203", "DestLanguage": "en", "DestLinkedid": "07b796be1962-1530000295.403", "DestPriority": "1", "DestUniqueid": "07b796be1962-1530000299.437", "DialString": "ID730152@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1530000295.403", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.403", "content": ""}, + {"AccountCode": "150010003", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010003-00000017", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "07b796be1962-1530000295.403", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000299.442", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-00000017", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1530000295.403", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000299.442", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-00000017", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1530000295.403", "OldAccountCode": "150010003", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000299.442", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-00000017", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1530000295.403", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000299.442", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "203", "DestChannel": "SIP/150010003-00000017", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "203", "DestLanguage": "nl", "DestLinkedid": "07b796be1962-1530000295.403", "DestPriority": "1", "DestUniqueid": "07b796be1962-1530000299.442", "DialString": "150010003/150010003/opensipsfg!!201", "Event": "DialBegin", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1530000295.403", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000299.439", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "203", "DestChannel": "SIP/150010003-00000017", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "203", "DestLanguage": "nl", "DestLinkedid": "07b796be1962-1530000295.403", "DestPriority": "1", "DestUniqueid": "07b796be1962-1530000299.442", "DialStatus": "BUSY", "Event": "DialEnd", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1530000295.403", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000299.439", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Cause": "19", "Cause-txt": "User alerting, no answer", "Channel": "SIP/150010003-00000017", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Hangup", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1530000295.403", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000299.442", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "201", "Cause": "19", "Cause-txt": "User alerting, no answer", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "07b796be1962-1530000295.403", "Priority": "4", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000299.439", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000015", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "203", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-0000000f;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "203", "DestLanguage": "en", "DestLinkedid": "07b796be1962-1530000295.403", "DestPriority": "1", "DestUniqueid": "07b796be1962-1530000299.437", "DialStatus": "NOANSWER", "Event": "DialEnd", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1530000295.403", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.403", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Cause": "19", "Cause-txt": "User alerting, no answer", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000f;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1530000295.403", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000299.437", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "201", "Cause": "19", "Cause-txt": "User alerting, no answer", "Channel": "SIP/150010001-00000015", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "07b796be1962-1530000295.403", "Priority": "4", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000295.403", "content": ""} +] \ No newline at end of file diff --git a/tests/fixtures/xfer_blind/xfer_blind_group.json b/tests/fixtures/xfer_blind/xfer_blind_group.json index 79dca1b..a8b7f0f 100644 --- a/tests/fixtures/xfer_blind/xfer_blind_group.json +++ b/tests/fixtures/xfer_blind/xfer_blind_group.json @@ -1,766 +1,115 @@ [ - {"Status": "Fully Booted", "Privilege": "system,all", "content": "", "Event": "FullyBooted"}, - {"AccountCode": "150010002", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "CallerIDName": "Bob", "Exten": "204", "Event": "Newchannel", "Privilege": "call,all", "content": "", "ChannelState": "0", "ChannelStateDesc": "Down", "Context": "osvpi_account", "CallerIDNum": "150010002"}, - {"Event": "VarSet", "Variable": "SIPURI", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "sip:150010002@10.13.36.116:5061"}, - {"Event": "VarSet", "Variable": "SIPDOMAIN", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "10.13.37.110"}, - {"Event": "VarSet", "Variable": "SIPCALLID", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "96cba102-ead179ab@10.13.36.116"}, - {"Event": "VarSet", "Variable": "__client_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "15001"}, - {"Event": "VarSet", "Variable": "__account_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "150010002"}, - {"Event": "VarSet", "Variable": "__record_call", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "no"}, - {"Event": "VarSet", "Variable": "__intprefix", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "31"}, - {"Event": "VarSet", "Variable": "__limit_account", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "4"}, - {"Event": "VarSet", "Variable": "__limit_client", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "0"}, - {"Event": "VarSet", "Variable": "__hide_ext_cliname", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "1"}, - {"Event": "VarSet", "Variable": "__TRANSFER_CONTEXT", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "osvpi_account_transfer"}, - {"ChannelStateDesc": "Ring", "Event": "Newstate", "Privilege": "call,all", "ConnectedLineName": "", "Channel": "SIP/150010002-0000000f", "ChannelState": "4", "ConnectedLineNum": "", "content": "", "CallerIDNum": "150010002", "Uniqueid": "0f00dcaa884f-1509117819.36", "CallerIDName": "Bob"}, - {"Application": "ExecIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account", "AppData": "0?GotoIf(0?osvpi_proc_hangup_insecure,204,1)", "Priority": "1"}, - {"Application": "Gosub", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account", "AppData": "osvpi_proc_check_forwards,s,1", "Priority": "2"}, - {"Event": "VarSet", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "0"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "s", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_check_forwards", "AppData": "0?check,1", "Priority": "1"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "s", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_check_forwards", "AppData": "LOCAL(tmp)=70", "Priority": "2"}, - {"Event": "VarSet", "Variable": "LOCAL(tmp)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "70"}, - {"Application": "ExecIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "s", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_check_forwards", "AppData": "0?Goto(init,1)", "Priority": "3"}, - {"Application": "ExecIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "s", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_check_forwards", "AppData": "1?Goto(init,1)", "Priority": "4"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "init", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_check_forwards", "AppData": "MASTER_CHANNEL(SIP_MAX_FORWARDS)=16", "Priority": "1"}, - {"Event": "VarSet", "Variable": "SIP_MAX_FORWARDS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "16"}, - {"Application": "NoOp", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "init", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_check_forwards", "AppData": "DEBUG: MaxForwards: initialized to: 16", "Priority": "2"}, - {"Application": "Return", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "init", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_check_forwards", "AppData": "", "Priority": "3"}, - {"Event": "VarSet", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account", "AppData": "0?osvpi_account_transfer,204,1", "Priority": "3"}, - {"Application": "NoOp", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account", "AppData": "ENTRY POINT username=150010002,ip=172.20.0.13/172.20.0.13,from=sip:150010002@10.13.37.110,contact=sip:150010002@10.13.36.116:5061,ua=Cisco/SPA504G-7.5.3,name=Bob,num=150010002,pres=allowed_not_screened", "Priority": "4"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account", "AppData": "is_transfer=0", "Priority": "5"}, - {"Event": "VarSet", "Variable": "is_transfer", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "0"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account", "AppData": "CDR(amaflags)=BILLING", "Priority": "6"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account", "AppData": "user_privacy=0", "Priority": "7"}, - {"Event": "VarSet", "Variable": "user_privacy", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "0"}, - {"Application": "ExecIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account", "AppData": "1?Set(__supports_progress=1)", "Priority": "8"}, - {"Event": "VarSet", "Variable": "__supports_progress", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "1"}, - {"Application": "Gosub", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account", "AppData": "osvpi_proc_record_call,s-no,1(out,15001,150010002)", "Priority": "9"}, - {"Event": "VarSet", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "out"}, - {"Event": "VarSet", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "15001"}, - {"Event": "VarSet", "Variable": "LOCAL(ARG3)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "150010002"}, - {"Event": "VarSet", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "3"}, - {"Application": "Return", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "s-no", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_record_call", "AppData": "", "Priority": "1"}, - {"Event": "VarSet", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account", "AppData": "l_tmp=", "Priority": "10"}, - {"Event": "VarSet", "Variable": "l_tmp", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Application": "ExecIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account", "AppData": "1?Set(l_tmp=)", "Priority": "11"}, - {"Event": "VarSet", "Variable": "l_tmp", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account", "AppData": "1?checkprivacy", "Priority": "12"}, - {"Application": "ExecIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account", "AppData": "0?Set(CALLERID(pres)=allowed_passed_screen)", "Priority": "16"}, - {"Application": "ExecIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account", "AppData": "0?Set(CALLERID(pres)=prohib_passed_screen)", "Priority": "17"}, - {"Application": "ExecIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account", "AppData": "0?Set(CHANNEL(musicclass)=)", "Priority": "18"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account", "AppData": "1?continue", "Priority": "19"}, - {"Application": "Gosub", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account", "AppData": "osvpi_proc_set_i18n_region,31,1", "Priority": "22"}, - {"Event": "VarSet", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "0"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "31", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_set_i18n_region", "AppData": "i18n_region=NL", "Priority": "1"}, - {"Event": "VarSet", "Variable": "i18n_region", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "NL"}, - {"Application": "Return", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "31", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_set_i18n_region", "AppData": "", "Priority": "2"}, - {"Event": "VarSet", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Application": "Goto", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account", "AppData": "osvpi_account_emergency_NL,204,1", "Priority": "23"}, - {"Application": "Goto", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_emergency_NL", "AppData": "osvpi_account_no_emergency,204,1", "Priority": "1"}, - {"Application": "Goto", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_no_emergency", "AppData": "osvpi_account,204,no-emergency", "Priority": "1"}, - {"Application": "Goto", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account", "AppData": "osvpi_account_clean,204,1", "Priority": "24"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_clean", "AppData": "return=osvpi_account_clean", "Priority": "1"}, - {"Event": "VarSet", "Variable": "return", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "osvpi_account_clean"}, - {"Application": "Goto", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_clean", "AppData": "osvpi_return_to_canonical,31i204,1", "Priority": "2"}, - {"Event": "VarSet", "Variable": "INVALID_EXTEN", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "31i204"}, - {"Application": "Goto", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "i", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_return_to_canonical", "AppData": "osvpi_account_clean,204,local", "Priority": "1"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_clean", "AppData": "0?extern", "Priority": "3"}, - {"Application": "Gosub", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_clean", "AppData": "osvpi_proc_set_callerid,204,1(150010002,0,0)", "Priority": "4"}, - {"Event": "VarSet", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "150010002"}, - {"Event": "VarSet", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "0"}, - {"Event": "VarSet", "Variable": "LOCAL(ARG3)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "0"}, - {"Event": "VarSet", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "3"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_set_callerid", "AppData": "0?done", "Priority": "1"}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "1"}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "SUCCESS"}, - {"Event": "VarSet", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "set,privacy,name,number_int,number_ext"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_set_callerid", "AppData": "ARRAY(LOCAL(set),LOCAL(privacy),LOCAL(name),LOCAL(number_int),LOCAL(number_ext))=1,0,David Meadows,202,+31150010002", "Priority": "2"}, - {"Event": "VarSet", "Variable": "LOCAL(set)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "1"}, - {"Event": "VarSet", "Variable": "LOCAL(privacy)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "0"}, - {"Event": "VarSet", "Variable": "LOCAL(name)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "David Meadows"}, - {"Event": "VarSet", "Variable": "LOCAL(number_int)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "202"}, - {"Event": "VarSet", "Variable": "LOCAL(number_ext)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "+31150010002"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_set_callerid", "AppData": "0?presentation", "Priority": "3"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_set_callerid", "AppData": "CALLERID(pres)=allowed_passed_screen", "Priority": "4"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_set_callerid", "AppData": "CALLERID(name)=David Meadows", "Priority": "5"}, - {"CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "Event": "NewCallerid", "Privilege": "call,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "CallerIDNum": "150010002", "CallerIDName": "David Meadows"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_set_callerid", "AppData": "CALLERID(num)=202", "Priority": "6"}, - {"CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "Event": "NewCallerid", "Privilege": "call,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "CallerIDNum": "202", "CallerIDName": "David Meadows"}, - {"Application": "ExecIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_set_callerid", "AppData": "0?Set(CALLERID(pres)=prohib_passed_screen)", "Priority": "7"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_set_callerid", "AppData": "CALLERID(ANI)=202", "Priority": "8"}, - {"Application": "Gosub", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_set_callerid", "AppData": "osvpi_proc_set_callerid_internal,204,1", "Priority": "9"}, - {"Event": "VarSet", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARG3)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "0"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_set_callerid_internal", "AppData": "1?nop", "Priority": "1"}, - {"Application": "ExecIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_set_callerid_internal", "AppData": "0?Set(CALLERID(ANI)=20)", "Priority": "5"}, - {"Application": "Return", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_set_callerid_internal", "AppData": "", "Priority": "6"}, - {"Event": "VarSet", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Application": "Return", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_set_callerid", "AppData": "", "Priority": "10"}, - {"Event": "VarSet", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_clean", "AppData": "3?osvpi_account_call_int,204,1:i,1", "Priority": "5"}, - {"Application": "Gosub", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_call_int", "AppData": "osvpi_proc_check_limits,204,1", "Priority": "1"}, - {"Event": "VarSet", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "0"}, - {"Application": "NoOp", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_check_limits", "AppData": "DEBUG: call_limit: client 0/0 and account 0/4", "Priority": "1"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_check_limits", "AppData": "0?osvpi_handle_limit,204,client", "Priority": "2"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_check_limits", "AppData": "0?osvpi_handle_limit,204,account", "Priority": "3"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_check_limits", "AppData": "GROUP(account_lim)=150010002", "Priority": "4"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_check_limits", "AppData": "GROUP(client_lim)=15001", "Priority": "5"}, - {"Application": "Return", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_check_limits", "AppData": "", "Priority": "6"}, - {"Event": "VarSet", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Application": "Gosub", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_call_int", "AppData": "osvpi_proc_check_recurse,204,1(15001)", "Priority": "2"}, - {"Event": "VarSet", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "15001"}, - {"Event": "VarSet", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "1"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_check_recurse", "AppData": "LOCAL(exten)=15001:204", "Priority": "1"}, - {"Event": "VarSet", "Variable": "LOCAL(exten)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "15001:204"}, - {"Application": "NoOp", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_check_recurse", "AppData": "Recursion checking 15001:204 against ", "Priority": "2"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_check_recurse", "AppData": "LOCAL(n)=0", "Priority": "3"}, - {"Event": "VarSet", "Variable": "LOCAL(n)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "0"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_check_recurse", "AppData": "LOCAL(i)=1", "Priority": "4"}, - {"Event": "VarSet", "Variable": "LOCAL(i)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "1"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_check_recurse", "AppData": "1?add", "Priority": "5"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_check_recurse", "AppData": "__EXTEN_LIST=15001:204 ", "Priority": "9"}, - {"Event": "VarSet", "Variable": "__EXTEN_LIST", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "15001:204 "}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_check_recurse", "AppData": "__EXTEN_LIST_LAST_EDIT_TIME=1509117819", "Priority": "10"}, - {"Event": "VarSet", "Variable": "__EXTEN_LIST_LAST_EDIT_TIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "1509117819"}, - {"Application": "Return", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_check_recurse", "AppData": "", "Priority": "11"}, - {"Event": "VarSet", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_call_int", "AppData": "__ORIG_EXTEN=204", "Priority": "3"}, - {"Event": "VarSet", "Variable": "__ORIG_EXTEN", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "204"}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "0"}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "NODATA"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_call_int", "AppData": "ARRAY(conference_id,user_password,admin_password,conference_language)=", "Priority": "4"}, - {"Event": "VarSet", "Variable": "conference_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Event": "VarSet", "Variable": "user_password", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Event": "VarSet", "Variable": "admin_password", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Event": "VarSet", "Variable": "conference_language", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_call_int", "AppData": "0?osvpi_route_conference,ID,1", "Priority": "5"}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "0"}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "NODATA"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_call_int", "AppData": "ARRAY(route_id,client_timezone)=", "Priority": "6"}, - {"Event": "VarSet", "Variable": "route_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Event": "VarSet", "Variable": "client_timezone", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_call_int", "AppData": "0?osvpi_route_root,204,restart", "Priority": "7"}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "0"}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "NODATA"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_call_int", "AppData": "ARRAY(all_extensions,limited_extensions,password,account_spy_language)=", "Priority": "8"}, - {"Event": "VarSet", "Variable": "all_extensions", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Event": "VarSet", "Variable": "limited_extensions", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Event": "VarSet", "Variable": "password", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Event": "VarSet", "Variable": "account_spy_language", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_call_int", "AppData": "0?osvpi_account_spy,204,1", "Priority": "9"}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "1"}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "SUCCESS"}, - {"Event": "VarSet", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "interfaces"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_call_int", "AppData": "ARRAY(interfaces)=Local/ID690153@osvpi_route_phoneaccount", "Priority": "10"}, - {"Event": "VarSet", "Variable": "interfaces", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "Local/ID690153@osvpi_route_phoneaccount"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_call_int", "AppData": "0?osvpi_handle_unallocated,204,1", "Priority": "11"}, - {"Application": "Dial", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "204", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_call_int", "AppData": "Local/ID690153@osvpi_route_phoneaccount", "Priority": "12"}, - {"Event": "VarSet", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Event": "VarSet", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Event": "VarSet", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Event": "VarSet", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"AccountCode": "", "Uniqueid": "0f00dcaa884f-1509117819.37", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;1", "CallerIDName": "", "Exten": "ID690153", "Event": "Newchannel", "Privilege": "call,all", "content": "", "ChannelState": "0", "ChannelStateDesc": "Down", "Context": "osvpi_route_phoneaccount", "CallerIDNum": ""}, - {"AccountCode": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "CallerIDName": "", "Exten": "ID690153", "Event": "Newchannel", "Privilege": "call,all", "content": "", "ChannelState": "4", "ChannelStateDesc": "Ring", "Context": "osvpi_route_phoneaccount", "CallerIDNum": ""}, - {"Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.37", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;1", "Value": "ID690153@osvpi_route_phoneaccount"}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Event": "NewCallerid", "Privilege": "call,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.37", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;1", "CallerIDNum": "204", "CallerIDName": ""}, - {"Exten": "ID690153", "Event": "LocalBridge", "Channel1": "Local/ID690153@osvpi_route_phoneaccount-0000000a;1", "Privilege": "call,all", "content": "", "Context": "osvpi_route_phoneaccount", "Channel2": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Uniqueid2": "0f00dcaa884f-1509117819.38", "Uniqueid1": "0f00dcaa884f-1509117819.37", "LocalOptimization": "Yes"}, - {"ConnectedLineName": "", "DestUniqueID": "0f00dcaa884f-1509117819.37", "Destination": "Local/ID690153@osvpi_route_phoneaccount-0000000a;1", "Channel": "SIP/150010002-0000000f", "SubEvent": "Begin", "CallerIDName": "David Meadows", "ConnectedLineNum": "", "Event": "Dial", "Privilege": "call,all", "content": "", "Dialstring": "ID690153@osvpi_route_phoneaccount", "CallerIDNum": "202", "UniqueID": "0f00dcaa884f-1509117819.36"}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "1"}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "SUCCESS"}, - {"Event": "VarSet", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Extension": "ID690153", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_route_phoneaccount", "AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=150010004,accountid,dutch,from,,0", "Priority": "1"}, - {"Event": "VarSet", "Variable": "__dst_account_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "150010004"}, - {"Event": "VarSet", "Variable": "l_mangle_did", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "accountid"}, - {"Event": "VarSet", "Variable": "l_mangle_cli", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "dutch"}, - {"Event": "VarSet", "Variable": "l_cli_header", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "from"}, - {"Event": "VarSet", "Variable": "l_primary_pickupgroup", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": ""}, - {"Event": "VarSet", "Variable": "app_account", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "0"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Extension": "ID690153", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_route_phoneaccount", "AppData": "0?vialer", "Priority": "2"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Extension": "ID690153", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_route_phoneaccount", "AppData": "_PICKUPMARK=", "Priority": "3"}, - {"Event": "VarSet", "Variable": "_PICKUPMARK", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": ""}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Extension": "ID690153", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_route_phoneaccount", "AppData": "l_trunk=0", "Priority": "4"}, - {"Event": "VarSet", "Variable": "l_trunk", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "0"}, - {"Application": "Goto", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Extension": "ID690153", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_route_phoneaccount", "AppData": "osvpi_route_account,ID690153,1", "Priority": "5"}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "1"}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "SUCCESS"}, - {"Event": "VarSet", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "proxy"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Extension": "ID690153", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_route_account", "AppData": "ARRAY(l_proxy)=172.20.0.13", "Priority": "1"}, - {"Event": "VarSet", "Variable": "l_proxy", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "172.20.0.13"}, - {"Application": "Gosub", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Extension": "ID690153", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_route_account", "AppData": "osvpi_proc_mangle_number,accountid,1(150010004,204)", "Priority": "2"}, - {"Event": "VarSet", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "150010004"}, - {"Event": "VarSet", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "204"}, - {"Event": "VarSet", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "2"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Extension": "accountid", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_proc_mangle_number", "AppData": "MANGLED_EXTEN=150010004", "Priority": "1"}, - {"Event": "VarSet", "Variable": "MANGLED_EXTEN", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "150010004"}, - {"Application": "Return", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Extension": "accountid", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_proc_mangle_number", "AppData": "", "Priority": "2"}, - {"Event": "VarSet", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": ""}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Extension": "ID690153", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_route_account", "AppData": "l_did=150010004", "Priority": "3"}, - {"Event": "VarSet", "Variable": "l_did", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "150010004"}, - {"Application": "Gosub", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Extension": "ID690153", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_route_account", "AppData": "osvpi_proc_mangle_number,dutch,1(150010004,202)", "Priority": "4"}, - {"Event": "VarSet", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "150010004"}, - {"Event": "VarSet", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "202"}, - {"Event": "VarSet", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "2"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Extension": "dutch", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_proc_mangle_number", "AppData": "1?fullzero,1", "Priority": "1"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Extension": "fullzero", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_proc_mangle_number", "AppData": "MANGLED_EXTEN=202", "Priority": "1"}, - {"Event": "VarSet", "Variable": "MANGLED_EXTEN", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "202"}, - {"Application": "Return", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Extension": "fullzero", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_proc_mangle_number", "AppData": "", "Priority": "2"}, - {"Event": "VarSet", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": ""}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Extension": "ID690153", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_route_account", "AppData": "l_mangle_cli_hdr=from-dutch", "Priority": "5"}, - {"Event": "VarSet", "Variable": "l_mangle_cli_hdr", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "from-dutch"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Extension": "ID690153", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_route_account", "AppData": "l_fromuser=", "Priority": "6"}, - {"Event": "VarSet", "Variable": "l_fromuser", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": ""}, - {"Application": "ExecIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Extension": "ID690153", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_route_account", "AppData": "1?Set(l_fromuser=202)", "Priority": "7"}, - {"Event": "VarSet", "Variable": "l_fromuser", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "202"}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "1"}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "SUCCESS"}, - {"Event": "VarSet", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "IF((SELECT 1 FROM baseaccount_account ba INNER JOIN userdestination_selecteduserdestination udsud ON udsud.phoneaccount_id = ba.id INNER JOIN userdestination_userdestination udud ON udud.id = udsud.userdestination_id INNER JOIN crm_cloudctiuser cccu O"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Extension": "ID690153", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_route_account", "AppData": "ARRAY(cloudcti)=0", "Priority": "8"}, - {"Event": "VarSet", "Variable": "cloudcti", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "0"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Extension": "ID690153", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_route_account", "AppData": "1?skipcloudcti", "Priority": "9"}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "1"}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "SUCCESS"}, - {"Event": "VarSet", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "GROUP_CONCAT(DISTINCT(csw.url) SEPARATOR ' '),internal_number,GROUP_CONCAT(DISTINCT(ud.internal_number) SEPARATOR ' ')"}, - {"Event": "VarSet", "Variable": "accountinternalnumber", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "204"}, - {"Event": "VarSet", "Variable": "userinternalnumbers", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": ""}, - {"Application": "Goto", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Extension": "ID690153", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_route_account", "AppData": "osvpi_proc_proxy_out,204,1", "Priority": "13"}, - {"Application": "SIPAddHeader", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Extension": "204", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_proc_proxy_out", "AppData": "X-Accountcode: 150010004", "Priority": "1"}, - {"Event": "VarSet", "Variable": "__SIPADDHEADER01", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "X-Accountcode: 150010004"}, - {"Application": "SIPAddHeader", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Extension": "204", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_proc_proxy_out", "AppData": "X-Insecure-Protection: geheim", "Priority": "2"}, - {"Event": "VarSet", "Variable": "__SIPADDHEADER02", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "X-Insecure-Protection: geheim"}, - {"Application": "SIPAddHeader", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Extension": "204", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_proc_proxy_out", "AppData": "X-Mangle-Cli: from-dutch", "Priority": "3"}, - {"Event": "VarSet", "Variable": "__SIPADDHEADER03", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "X-Mangle-Cli: from-dutch"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Extension": "204", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_proc_proxy_out", "AppData": "_dial_options_callaccept=", "Priority": "4"}, - {"Event": "VarSet", "Variable": "_dial_options_callaccept", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": ""}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Extension": "204", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_proc_proxy_out", "AppData": "_dial_options_callnotify=", "Priority": "5"}, - {"Event": "VarSet", "Variable": "_dial_options_callnotify", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": ""}, - {"Application": "ExecIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Extension": "204", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_proc_proxy_out", "AppData": "0?Set(l_proxy=opensipsfg)", "Priority": "6"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Extension": "204", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_proc_proxy_out", "AppData": "l_extra_options=", "Priority": "7"}, - {"Event": "VarSet", "Variable": "l_extra_options", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": ""}, - {"Application": "Dial", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Extension": "204", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Context": "osvpi_proc_proxy_out", "AppData": "SIP/150010004/150010004/172.20.0.13!!202,,", "Priority": "8"}, - {"Event": "VarSet", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": ""}, - {"Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": ""}, - {"Event": "VarSet", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": ""}, - {"Event": "VarSet", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": ""}, - {"Event": "VarSet", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": ""}, - {"AccountCode": "150010004", "Uniqueid": "0f00dcaa884f-1509117819.39", "Channel": "SIP/150010004-00000010", "CallerIDName": "", "Exten": "", "Event": "Newchannel", "Privilege": "call,all", "content": "", "ChannelState": "0", "ChannelStateDesc": "Down", "Context": "osvpi_account", "CallerIDNum": ""}, - {"Event": "VarSet", "Variable": "SIPCALLID", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.39", "Channel": "SIP/150010004-00000010", "Value": "37d14cb23cebd5ee59ad86d01058df76@test.voipgrid.nl"}, - {"Event": "VarSet", "Variable": "__client_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.39", "Channel": "SIP/150010004-00000010", "Value": "15001"}, - {"Event": "VarSet", "Variable": "__account_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.39", "Channel": "SIP/150010004-00000010", "Value": "150010004"}, - {"Event": "VarSet", "Variable": "__record_call", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.39", "Channel": "SIP/150010004-00000010", "Value": "no"}, - {"Event": "VarSet", "Variable": "__intprefix", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.39", "Channel": "SIP/150010004-00000010", "Value": "31"}, - {"Event": "VarSet", "Variable": "__limit_account", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.39", "Channel": "SIP/150010004-00000010", "Value": "4"}, - {"Event": "VarSet", "Variable": "__limit_client", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.39", "Channel": "SIP/150010004-00000010", "Value": "0"}, - {"Event": "VarSet", "Variable": "__hide_ext_cliname", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.39", "Channel": "SIP/150010004-00000010", "Value": "1"}, - {"Event": "VarSet", "Variable": "__TRANSFER_CONTEXT", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.39", "Channel": "SIP/150010004-00000010", "Value": "osvpi_account_transfer"}, - {"Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.39", "Channel": "SIP/150010004-00000010", "Value": "150010004/150010004/172.20.0.13!!202"}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Event": "NewCallerid", "Privilege": "call,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.39", "Channel": "SIP/150010004-00000010", "CallerIDNum": "204", "CallerIDName": ""}, - {"ConnectedLineName": "", "DestUniqueID": "0f00dcaa884f-1509117819.39", "Destination": "SIP/150010004-00000010", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "SubEvent": "Begin", "CallerIDName": "David Meadows", "ConnectedLineNum": "204", "Event": "Dial", "Privilege": "call,all", "content": "", "Dialstring": "150010004/150010004/172.20.0.13!!202", "CallerIDNum": "202", "UniqueID": "0f00dcaa884f-1509117819.38"}, - {"ChannelStateDesc": "Ringing", "Event": "Newstate", "Privilege": "call,all", "ConnectedLineName": "David Meadows", "Channel": "SIP/150010004-00000010", "ChannelState": "5", "ConnectedLineNum": "202", "content": "", "CallerIDNum": "204", "Uniqueid": "0f00dcaa884f-1509117819.39", "CallerIDName": ""}, - {"ChannelStateDesc": "Ringing", "Event": "Newstate", "Privilege": "call,all", "ConnectedLineName": "David Meadows", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;1", "ChannelState": "5", "ConnectedLineNum": "202", "content": "", "CallerIDNum": "204", "Uniqueid": "0f00dcaa884f-1509117819.37", "CallerIDName": ""}, - {"ChannelStateDesc": "Up", "Event": "Newstate", "Privilege": "call,all", "ConnectedLineName": "David Meadows", "Channel": "SIP/150010004-00000010", "ChannelState": "6", "ConnectedLineNum": "202", "content": "", "CallerIDNum": "204", "Uniqueid": "0f00dcaa884f-1509117819.39", "CallerIDName": ""}, - {"Event": "VarSet", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "ANSWER"}, - {"Event": "VarSet", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "SIP/150010004-00000010"}, - {"Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "150010004/150010004/172.20.0.13!!202"}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "SIP/150010004-00000010"}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.39", "Channel": "SIP/150010004-00000010", "Value": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2"}, - {"ChannelStateDesc": "Up", "Event": "Newstate", "Privilege": "call,all", "ConnectedLineName": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "ChannelState": "6", "ConnectedLineNum": "204", "content": "", "CallerIDNum": "202", "Uniqueid": "0f00dcaa884f-1509117819.38", "CallerIDName": "David Meadows"}, - {"AccountCode": "150010002", "Event": "NewAccountCode", "Privilege": "call,all", "content": "", "OldAccountCode": "150010002", "Channel": "SIP/150010004-00000010", "Uniqueid": "0f00dcaa884f-1509117819.39"}, - {"ChannelStateDesc": "Up", "Event": "Newstate", "Privilege": "call,all", "ConnectedLineName": "David Meadows", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;1", "ChannelState": "6", "ConnectedLineNum": "202", "content": "", "CallerIDNum": "204", "Uniqueid": "0f00dcaa884f-1509117819.37", "CallerIDName": ""}, - {"Uniqueid2": "0f00dcaa884f-1509117819.39", "Event": "Bridge", "Channel1": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Privilege": "call,all", "content": "", "Bridgestate": "Link", "Channel2": "SIP/150010004-00000010", "CallerID2": "204", "Uniqueid1": "0f00dcaa884f-1509117819.38", "Bridgetype": "core", "CallerID1": "202"}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "SIP/150010004-00000010"}, - {"Event": "VarSet", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "37d14cb23cebd5ee59ad86d01058df76@test.voipgrid.nl"}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.39", "Channel": "SIP/150010004-00000010", "Value": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2"}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "SIP/150010004-00000010"}, - {"Event": "VarSet", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "37d14cb23cebd5ee59ad86d01058df76@test.voipgrid.nl"}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.39", "Channel": "SIP/150010004-00000010", "Value": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2"}, - {"Event": "VarSet", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "ANSWER"}, - {"Event": "VarSet", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "Local/ID690153@osvpi_route_phoneaccount-0000000a;1"}, - {"Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "ID690153@osvpi_route_phoneaccount"}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "Local/ID690153@osvpi_route_phoneaccount-0000000a;1"}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.37", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;1", "Value": "SIP/150010002-0000000f"}, - {"ChannelStateDesc": "Up", "Event": "Newstate", "Privilege": "call,all", "ConnectedLineName": "", "Channel": "SIP/150010002-0000000f", "ChannelState": "6", "ConnectedLineNum": "", "content": "", "CallerIDNum": "202", "Uniqueid": "0f00dcaa884f-1509117819.36", "CallerIDName": "David Meadows"}, - {"AccountCode": "150010002", "Event": "NewAccountCode", "Privilege": "call,all", "content": "", "OldAccountCode": "150010002", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;1", "Uniqueid": "0f00dcaa884f-1509117819.37"}, - {"Uniqueid2": "0f00dcaa884f-1509117819.37", "Event": "Bridge", "Channel1": "SIP/150010002-0000000f", "Privilege": "call,all", "content": "", "Bridgestate": "Link", "Channel2": "Local/ID690153@osvpi_route_phoneaccount-0000000a;1", "CallerID2": "204", "Uniqueid1": "0f00dcaa884f-1509117819.36", "Bridgetype": "core", "CallerID1": "202"}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "Local/ID690153@osvpi_route_phoneaccount-0000000a;1"}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.37", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;1", "Value": "SIP/150010002-0000000f"}, - {"Event": "VarSet", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.37", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;1", "Value": "96cba102-ead179ab@10.13.36.116"}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "Local/ID690153@osvpi_route_phoneaccount-0000000a;1"}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.37", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;1", "Value": "SIP/150010002-0000000f"}, - {"Event": "VarSet", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.37", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;1", "Value": "96cba102-ead179ab@10.13.36.116"}, - {"Event": "Masquerade", "Privilege": "call,all", "content": "", "Original": "Local/ID690153@osvpi_route_phoneaccount-0000000a;1", "Clone": "SIP/150010004-00000010", "CloneState": "Up", "OriginalState": "Up"}, - {"Event": "Rename", "Privilege": "call,all", "content": "", "Newname": "SIP/150010004-00000010", "Channel": "SIP/150010004-00000010", "Uniqueid": "0f00dcaa884f-1509117819.39"}, - {"Event": "Rename", "Privilege": "call,all", "content": "", "Newname": "SIP/150010004-00000010", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;1", "Uniqueid": "0f00dcaa884f-1509117819.37"}, - {"Event": "Rename", "Privilege": "call,all", "content": "", "Newname": "Local/ID690153@osvpi_route_phoneaccount-0000000a;1", "Channel": "SIP/150010004-00000010", "Uniqueid": "0f00dcaa884f-1509117819.39"}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Event": "NewCallerid", "Privilege": "call,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.37", "Channel": "SIP/150010004-00000010", "CallerIDNum": "204", "CallerIDName": ""}, - {"Uniqueid2": "0f00dcaa884f-1509117819.39", "Event": "Bridge", "Channel1": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Privilege": "call,all", "content": "", "Bridgestate": "Unlink", "Channel2": "Local/ID690153@osvpi_route_phoneaccount-0000000a;1", "CallerID2": "204", "Uniqueid1": "0f00dcaa884f-1509117819.38", "Bridgetype": "core", "CallerID1": "202"}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "SIP/150010004-00000010"}, - {"Event": "VarSet", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "1"}, - {"Event": "VarSet", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "2"}, - {"Event": "VarSet", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "37d14cb23cebd5ee59ad86d01058df76@test.voipgrid.nl"}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.37", "Channel": "SIP/150010004-00000010", "Value": "SIP/150010002-0000000f"}, - {"Event": "VarSet", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.37", "Channel": "SIP/150010004-00000010", "Value": "96cba102-ead179ab@10.13.36.116"}, - {"Event": "HangupRequest", "Privilege": "call,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2"}, - {"AccountCode": "150010002", "Cause-txt": "Normal Clearing", "CallerIDNum": "204", "ConnectedLineName": "David Meadows", "Uniqueid": "0f00dcaa884f-1509117819.39", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;1", "CallerIDName": "", "ConnectedLineNum": "202", "Event": "Hangup", "Privilege": "call,all", "content": "", "Cause": "16"}, - {"Event": "VarSet", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Value": "ANSWER"}, - {"Event": "Dial", "Privilege": "call,all", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "SubEvent": "End", "DialStatus": "ANSWER", "UniqueID": "0f00dcaa884f-1509117819.38"}, - {"Event": "SoftHangupRequest", "Privilege": "call,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Cause": "16"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Extension": "onhangup", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Context": "handlers", "AppData": "1?nosip", "Priority": "1"}, - {"Application": "GosubIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Extension": "onhangup", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "Context": "handlers", "AppData": "0?osvpi_proc_httptouch,s,1()", "Priority": "3"}, - {"AccountCode": "150010002", "Cause-txt": "Normal Clearing", "CallerIDNum": "202", "ConnectedLineName": "", "Uniqueid": "0f00dcaa884f-1509117819.38", "Channel": "Local/ID690153@osvpi_route_phoneaccount-0000000a;2", "CallerIDName": "David Meadows", "ConnectedLineNum": "204", "Event": "Hangup", "Privilege": "call,all", "content": "", "Cause": "16"}, - {"Event": "MusicOnHold", "Privilege": "call,all", "content": "", "Class": "default", "Channel": "SIP/150010002-0000000f", "State": "Start", "UniqueID": "0f00dcaa884f-1509117819.36"}, - {"TheirLastSR": "0", "SentRTP": "40000", "SentNTP": "1509117828.2834489344", "FractionLost": "0", "DLSR": "20356.6920 (sec)", "SentPackets": "250", "IAJitter": "0.0002", "Event": "RTCPSent", "Privilege": "reporting,all", "content": "", "CumulativeLoss": "0", "To": "172.20.0.254:49985", "OurSSRC": "1704659548", "SentOctets": "40000"}, - {"TheirLastSR": "0", "SentRTP": "80000", "SentNTP": "1509117833.2835959808", "FractionLost": "0", "DLSR": "20361.6920 (sec)", "SentPackets": "500", "IAJitter": "0.0001", "Event": "RTCPSent", "Privilege": "reporting,all", "content": "", "CumulativeLoss": "0", "To": "172.20.0.254:49985", "OurSSRC": "1704659548", "SentOctets": "80000"}, - {"Event": "MusicOnHold", "Privilege": "call,all", "content": "", "Channel": "SIP/150010002-0000000f", "State": "Stop", "UniqueID": "0f00dcaa884f-1509117819.36"}, - {"TheirLastSR": "0", "SentRTP": "90400", "SentNTP": "1509117838.2836033536", "FractionLost": "0", "DLSR": "20366.6920 (sec)", "SentPackets": "565", "IAJitter": "0.0001", "Event": "RTCPSent", "Privilege": "reporting,all", "content": "", "CumulativeLoss": "0", "To": "172.20.0.254:49985", "OurSSRC": "1704659548", "SentOctets": "90400"}, - {"Event": "MusicOnHold", "Privilege": "call,all", "content": "", "Class": "default", "Channel": "SIP/150010002-0000000f", "State": "Start", "UniqueID": "0f00dcaa884f-1509117819.36"}, - {"Event": "VarSet", "Variable": "SIPREFERRINGCONTEXT", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "osvpi_account"}, - {"Event": "VarSet", "Variable": "SIPREFERREDBYHDR", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "\"Dave\" "}, - {"Event": "VarSet", "Variable": "BLINDTRANSFER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.37", "Channel": "SIP/150010004-00000010", "Value": "SIP/150010002-0000000f"}, - {"Event": "VarSet", "Variable": "BLINDTRANSFER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "SIP/150010004-00000010"}, - {"Event": "VarSet", "Variable": "SIPDOMAIN", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "10.13.37.110"}, - {"Event": "VarSet", "Variable": "SIPTRANSFER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "yes"}, - {"Event": "VarSet", "Variable": "_SIPTRANSFER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "yes"}, - {"Event": "VarSet", "Variable": "_SIPTRANSFER_REFERER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Event": "MusicOnHold", "Privilege": "call,all", "content": "", "Channel": "SIP/150010002-0000000f", "State": "Stop", "UniqueID": "0f00dcaa884f-1509117819.36"}, - {"Event": "MusicOnHold", "Privilege": "call,all", "content": "", "Channel": "SIP/150010002-0000000f", "State": "Stop", "UniqueID": "0f00dcaa884f-1509117819.36"}, - {"TargetUniqueid": "0f00dcaa884f-1509117819.36", "Privilege": "call,all", "TransferExten": "403", "TargetChannel": "SIP/150010002-0000000f", "Channel": "SIP/150010004-00000010", "TransferType": "Blind", "Event": "Transfer", "SIP-Callid": "37d14cb23cebd5ee59ad86d01058df76@test.voipgrid.nl", "Uniqueid": "0f00dcaa884f-1509117819.37", "content": "", "TransferMethod": "SIP", "TransferContext": "osvpi_account_transfer"}, - {"Uniqueid2": "0f00dcaa884f-1509117819.37", "Event": "Bridge", "Channel1": "SIP/150010002-0000000f", "Privilege": "call,all", "content": "", "Bridgestate": "Unlink", "Channel2": "SIP/150010004-00000010", "CallerID2": "204", "Uniqueid1": "0f00dcaa884f-1509117819.36", "Bridgetype": "core", "CallerID1": "202"}, - {"Event": "VarSet", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "22"}, - {"Event": "VarSet", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "23"}, - {"AccountCode": "150010002", "Cause-txt": "Normal Clearing", "CallerIDNum": "204", "ConnectedLineName": "David Meadows", "Uniqueid": "0f00dcaa884f-1509117819.37", "Channel": "SIP/150010004-00000010", "CallerIDName": "", "ConnectedLineNum": "202", "Event": "Hangup", "Privilege": "call,all", "content": "", "Cause": "16"}, - {"Event": "VarSet", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "ANSWER"}, - {"Event": "Dial", "Privilege": "call,all", "content": "", "Channel": "SIP/150010002-0000000f", "SubEvent": "End", "DialStatus": "ANSWER", "UniqueID": "0f00dcaa884f-1509117819.36"}, - {"Application": "NoOp", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_transfer", "AppData": "DEBUG: XFER: accountcode=150010002 client_id=15001 account_id=150010002", "Priority": "1"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_transfer", "AppData": "0?accountinfo", "Priority": "2"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_transfer", "AppData": "CALLERID(name)=", "Priority": "3"}, - {"CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "Event": "NewCallerid", "Privilege": "call,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "CallerIDNum": "202", "CallerIDName": ""}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_transfer", "AppData": "CALLERID(num)=202", "Priority": "4"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_transfer", "AppData": "CALLERID(pres)=allowed_passed_screen", "Priority": "5"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_transfer", "AppData": "l_changed=1", "Priority": "6"}, - {"Event": "VarSet", "Variable": "l_changed", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "1"}, - {"Application": "ForkCDR", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_transfer", "AppData": "ATe", "Priority": "7"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_transfer", "AppData": "1?blindxfer:code302or482", "Priority": "8"}, - {"Application": "NoOp", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_transfer", "AppData": "DEBUG: REFER: SIPTRANSFER=yes BLINDTRANSFER=SIP/150010004-00000010 BRIDGEPEER=SIP/150010004-00000010 SIPTRANSFER_REFERER=", "Priority": "9"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_transfer", "AppData": "seconds_since_last_exten_list_addition=23", "Priority": "10"}, - {"Event": "VarSet", "Variable": "seconds_since_last_exten_list_addition", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "23"}, - {"Application": "ExecIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_transfer", "AppData": "1?Set(__EXTEN_LIST=)", "Priority": "11"}, - {"Event": "VarSet", "Variable": "__EXTEN_LIST", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_transfer", "AppData": "l_tmp=", "Priority": "12"}, - {"Event": "VarSet", "Variable": "l_tmp", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Application": "ExecIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_transfer", "AppData": "1?Set(l_tmp=150010004@10.13.37.110)", "Priority": "13"}, - {"Event": "VarSet", "Variable": "l_tmp", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "150010004@10.13.37.110"}, - {"Application": "ExecIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_transfer", "AppData": "0?Hangup()", "Priority": "14"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_transfer", "AppData": "l_tmp=150010004", "Priority": "15"}, - {"Event": "VarSet", "Variable": "l_tmp", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "150010004"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_transfer", "AppData": "0?arefersb", "Priority": "16"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_transfer", "AppData": "1?brefersa", "Priority": "17"}, - {"Application": "NoOp", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_transfer", "AppData": "New caller is 150010004", "Priority": "22"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_transfer", "AppData": "CDR(accountcode)=150010004", "Priority": "23"}, - {"AccountCode": "150010004", "Event": "NewAccountCode", "Privilege": "call,all", "content": "", "OldAccountCode": "150010002", "Channel": "SIP/150010002-0000000f", "Uniqueid": "0f00dcaa884f-1509117819.36"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_transfer", "AppData": "__account_id=150010004", "Priority": "24"}, - {"Event": "VarSet", "Variable": "__account_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "150010004"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_transfer", "AppData": "__dst_account_id=", "Priority": "25"}, - {"Event": "VarSet", "Variable": "__dst_account_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Application": "Goto", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_transfer", "AppData": "proceed", "Priority": "26"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_transfer", "AppData": "__TRANSFER_CONTEXT=osvpi_account_transfer", "Priority": "33"}, - {"Event": "VarSet", "Variable": "__TRANSFER_CONTEXT", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "osvpi_account_transfer"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_transfer", "AppData": "user_privacy=0", "Priority": "34"}, - {"Event": "VarSet", "Variable": "user_privacy", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "0"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_transfer", "AppData": "is_transfer=1", "Priority": "35"}, - {"Event": "VarSet", "Variable": "is_transfer", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "1"}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "1"}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "SUCCESS"}, - {"Event": "VarSet", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "client_id,intprefix,internal_number,limit_account,limit_client"}, - {"Application": "ExecIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_transfer", "AppData": "1?Set(ARRAY(__client_id,__intprefix,dummy,__limit_account,__limit_client)=15001,31,204,4,0)", "Priority": "36"}, - {"Event": "VarSet", "Variable": "__client_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "15001"}, - {"Event": "VarSet", "Variable": "__intprefix", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "31"}, - {"Event": "VarSet", "Variable": "dummy", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "204"}, - {"Event": "VarSet", "Variable": "__limit_account", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "4"}, - {"Event": "VarSet", "Variable": "__limit_client", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "0"}, - {"Application": "ExecIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_transfer", "AppData": "0?Set(CHANNEL(musicclass)=)", "Priority": "37"}, - {"Application": "NoOp", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_transfer", "AppData": "DEBUG: CLI: name=\"\" num=202 ANI=202 presence=allowed_passed_screen", "Priority": "38"}, - {"Application": "Goto", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_transfer", "AppData": "osvpi_account,403,checkspeeddial", "Priority": "39"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account", "AppData": "1?continue", "Priority": "19"}, - {"Application": "Gosub", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account", "AppData": "osvpi_proc_set_i18n_region,31,1", "Priority": "22"}, - {"Event": "VarSet", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "0"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "31", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_set_i18n_region", "AppData": "i18n_region=NL", "Priority": "1"}, - {"Event": "VarSet", "Variable": "i18n_region", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "NL"}, - {"Application": "Return", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "31", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_set_i18n_region", "AppData": "", "Priority": "2"}, - {"Event": "VarSet", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Application": "Goto", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account", "AppData": "osvpi_account_emergency_NL,403,1", "Priority": "23"}, - {"Application": "Goto", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_emergency_NL", "AppData": "osvpi_account_no_emergency,403,1", "Priority": "1"}, - {"Application": "Goto", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_no_emergency", "AppData": "osvpi_account,403,no-emergency", "Priority": "1"}, - {"Application": "Goto", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account", "AppData": "osvpi_account_clean,403,1", "Priority": "24"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_clean", "AppData": "return=osvpi_account_clean", "Priority": "1"}, - {"Event": "VarSet", "Variable": "return", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "osvpi_account_clean"}, - {"Application": "Goto", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_clean", "AppData": "osvpi_return_to_canonical,31i403,1", "Priority": "2"}, - {"Event": "VarSet", "Variable": "INVALID_EXTEN", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "31i403"}, - {"Application": "Goto", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "i", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_return_to_canonical", "AppData": "osvpi_account_clean,403,local", "Priority": "1"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_clean", "AppData": "0?extern", "Priority": "3"}, - {"Application": "Gosub", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_clean", "AppData": "osvpi_proc_set_callerid,403,1(150010004,0,0)", "Priority": "4"}, - {"Event": "VarSet", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "150010004"}, - {"Event": "VarSet", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "0"}, - {"Event": "VarSet", "Variable": "LOCAL(ARG3)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "0"}, - {"Event": "VarSet", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "3"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_set_callerid", "AppData": "1?done", "Priority": "1"}, - {"Application": "Return", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_set_callerid", "AppData": "", "Priority": "10"}, - {"Event": "VarSet", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_clean", "AppData": "3?osvpi_account_call_int,403,1:i,1", "Priority": "5"}, - {"Application": "Gosub", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_call_int", "AppData": "osvpi_proc_check_limits,403,1", "Priority": "1"}, - {"Event": "VarSet", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "0"}, - {"Application": "NoOp", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_check_limits", "AppData": "DEBUG: call_limit: client 1/0 and account 0/4", "Priority": "1"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_check_limits", "AppData": "0?osvpi_handle_limit,403,client", "Priority": "2"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_check_limits", "AppData": "0?osvpi_handle_limit,403,account", "Priority": "3"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_check_limits", "AppData": "GROUP(account_lim)=150010004", "Priority": "4"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_check_limits", "AppData": "GROUP(client_lim)=15001", "Priority": "5"}, - {"Application": "Return", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_check_limits", "AppData": "", "Priority": "6"}, - {"Event": "VarSet", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Application": "Gosub", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_call_int", "AppData": "osvpi_proc_check_recurse,403,1(15001)", "Priority": "2"}, - {"Event": "VarSet", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "15001"}, - {"Event": "VarSet", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "1"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_check_recurse", "AppData": "LOCAL(exten)=15001:403", "Priority": "1"}, - {"Event": "VarSet", "Variable": "LOCAL(exten)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "15001:403"}, - {"Application": "NoOp", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_check_recurse", "AppData": "Recursion checking 15001:403 against ", "Priority": "2"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_check_recurse", "AppData": "LOCAL(n)=0", "Priority": "3"}, - {"Event": "VarSet", "Variable": "LOCAL(n)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "0"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_check_recurse", "AppData": "LOCAL(i)=1", "Priority": "4"}, - {"Event": "VarSet", "Variable": "LOCAL(i)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "1"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_check_recurse", "AppData": "1?add", "Priority": "5"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_check_recurse", "AppData": "__EXTEN_LIST=15001:403 ", "Priority": "9"}, - {"Event": "VarSet", "Variable": "__EXTEN_LIST", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "15001:403 "}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_check_recurse", "AppData": "__EXTEN_LIST_LAST_EDIT_TIME=1509117842", "Priority": "10"}, - {"Event": "VarSet", "Variable": "__EXTEN_LIST_LAST_EDIT_TIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "1509117842"}, - {"Application": "Return", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_proc_check_recurse", "AppData": "", "Priority": "11"}, - {"Event": "VarSet", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_call_int", "AppData": "__ORIG_EXTEN=403", "Priority": "3"}, - {"Event": "VarSet", "Variable": "__ORIG_EXTEN", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "403"}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "0"}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "NODATA"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_call_int", "AppData": "ARRAY(conference_id,user_password,admin_password,conference_language)=", "Priority": "4"}, - {"Event": "VarSet", "Variable": "conference_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Event": "VarSet", "Variable": "user_password", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Event": "VarSet", "Variable": "admin_password", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Event": "VarSet", "Variable": "conference_language", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_call_int", "AppData": "0?osvpi_route_conference,ID,1", "Priority": "5"}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "0"}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "NODATA"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_call_int", "AppData": "ARRAY(route_id,client_timezone)=", "Priority": "6"}, - {"Event": "VarSet", "Variable": "route_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Event": "VarSet", "Variable": "client_timezone", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_call_int", "AppData": "0?osvpi_route_root,403,restart", "Priority": "7"}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "0"}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "NODATA"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_call_int", "AppData": "ARRAY(all_extensions,limited_extensions,password,account_spy_language)=", "Priority": "8"}, - {"Event": "VarSet", "Variable": "all_extensions", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Event": "VarSet", "Variable": "limited_extensions", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Event": "VarSet", "Variable": "password", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Event": "VarSet", "Variable": "account_spy_language", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_call_int", "AppData": "0?osvpi_account_spy,403,1", "Priority": "9"}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "1"}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "SUCCESS"}, - {"Event": "VarSet", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "interfaces"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_call_int", "AppData": "ARRAY(interfaces)=Local/ID690150@osvpi_route_phoneaccount&Local/ID690152@osvpi_route_phoneaccount", "Priority": "10"}, - {"Event": "VarSet", "Variable": "interfaces", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "Local/ID690150@osvpi_route_phoneaccount&Local/ID690152@osvpi_route_phoneaccount"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_call_int", "AppData": "0?osvpi_handle_unallocated,403,1", "Priority": "11"}, - {"Application": "Dial", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "403", "Channel": "SIP/150010002-0000000f", "Context": "osvpi_account_call_int", "AppData": "Local/ID690150@osvpi_route_phoneaccount&Local/ID690152@osvpi_route_phoneaccount", "Priority": "12"}, - {"Event": "VarSet", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Event": "VarSet", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Event": "VarSet", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"Event": "VarSet", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": ""}, - {"AccountCode": "", "Uniqueid": "0f00dcaa884f-1509117842.40", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;1", "CallerIDName": "", "Exten": "ID690150", "Event": "Newchannel", "Privilege": "call,all", "content": "", "ChannelState": "0", "ChannelStateDesc": "Down", "Context": "osvpi_route_phoneaccount", "CallerIDNum": ""}, - {"AccountCode": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "CallerIDName": "", "Exten": "ID690150", "Event": "Newchannel", "Privilege": "call,all", "content": "", "ChannelState": "4", "ChannelStateDesc": "Ring", "Context": "osvpi_route_phoneaccount", "CallerIDNum": ""}, - {"Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.40", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;1", "Value": "ID690150@osvpi_route_phoneaccount"}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Event": "NewCallerid", "Privilege": "call,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.40", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;1", "CallerIDNum": "403", "CallerIDName": ""}, - {"AccountCode": "", "Uniqueid": "0f00dcaa884f-1509117842.42", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;1", "CallerIDName": "", "Exten": "ID690152", "Event": "Newchannel", "Privilege": "call,all", "content": "", "ChannelState": "0", "ChannelStateDesc": "Down", "Context": "osvpi_route_phoneaccount", "CallerIDNum": ""}, - {"AccountCode": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "CallerIDName": "", "Exten": "ID690152", "Event": "Newchannel", "Privilege": "call,all", "content": "", "ChannelState": "4", "ChannelStateDesc": "Ring", "Context": "osvpi_route_phoneaccount", "CallerIDNum": ""}, - {"Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.42", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;1", "Value": "ID690152@osvpi_route_phoneaccount"}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Event": "NewCallerid", "Privilege": "call,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.42", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;1", "CallerIDNum": "403", "CallerIDName": ""}, - {"Exten": "ID690150", "Event": "LocalBridge", "Channel1": "Local/ID690150@osvpi_route_phoneaccount-0000000b;1", "Privilege": "call,all", "content": "", "Context": "osvpi_route_phoneaccount", "Channel2": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Uniqueid2": "0f00dcaa884f-1509117842.41", "Uniqueid1": "0f00dcaa884f-1509117842.40", "LocalOptimization": "Yes"}, - {"ConnectedLineName": "", "DestUniqueID": "0f00dcaa884f-1509117842.40", "Destination": "Local/ID690150@osvpi_route_phoneaccount-0000000b;1", "Channel": "SIP/150010002-0000000f", "SubEvent": "Begin", "CallerIDName": "", "ConnectedLineNum": "", "Event": "Dial", "Privilege": "call,all", "content": "", "Dialstring": "ID690150@osvpi_route_phoneaccount", "CallerIDNum": "202", "UniqueID": "0f00dcaa884f-1509117819.36"}, - {"Exten": "ID690152", "Event": "LocalBridge", "Channel1": "Local/ID690152@osvpi_route_phoneaccount-0000000c;1", "Privilege": "call,all", "content": "", "Context": "osvpi_route_phoneaccount", "Channel2": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Uniqueid2": "0f00dcaa884f-1509117842.43", "Uniqueid1": "0f00dcaa884f-1509117842.42", "LocalOptimization": "Yes"}, - {"ConnectedLineName": "", "DestUniqueID": "0f00dcaa884f-1509117842.42", "Destination": "Local/ID690152@osvpi_route_phoneaccount-0000000c;1", "Channel": "SIP/150010002-0000000f", "SubEvent": "Begin", "CallerIDName": "", "ConnectedLineNum": "", "Event": "Dial", "Privilege": "call,all", "content": "", "Dialstring": "ID690152@osvpi_route_phoneaccount", "CallerIDNum": "202", "UniqueID": "0f00dcaa884f-1509117819.36"}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": "1"}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": "SUCCESS"}, - {"Event": "VarSet", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account"}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "1"}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "SUCCESS"}, - {"Event": "VarSet", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Extension": "ID690152", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Context": "osvpi_route_phoneaccount", "AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=150010003,accountid,dutch,from,,0", "Priority": "1"}, - {"Event": "VarSet", "Variable": "__dst_account_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": "150010003"}, - {"Event": "VarSet", "Variable": "l_mangle_did", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": "accountid"}, - {"Event": "VarSet", "Variable": "l_mangle_cli", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": "dutch"}, - {"Event": "VarSet", "Variable": "l_cli_header", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": "from"}, - {"Event": "VarSet", "Variable": "l_primary_pickupgroup", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": ""}, - {"Event": "VarSet", "Variable": "app_account", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": "0"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Extension": "ID690152", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Context": "osvpi_route_phoneaccount", "AppData": "0?vialer", "Priority": "2"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Extension": "ID690152", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Context": "osvpi_route_phoneaccount", "AppData": "_PICKUPMARK=", "Priority": "3"}, - {"Event": "VarSet", "Variable": "_PICKUPMARK", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": ""}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Extension": "ID690152", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Context": "osvpi_route_phoneaccount", "AppData": "l_trunk=0", "Priority": "4"}, - {"Event": "VarSet", "Variable": "l_trunk", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": "0"}, - {"Application": "Goto", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Extension": "ID690152", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Context": "osvpi_route_phoneaccount", "AppData": "osvpi_route_account,ID690152,1", "Priority": "5"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Extension": "ID690150", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Context": "osvpi_route_phoneaccount", "AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=150010001,accountid,dutch,from,,0", "Priority": "1"}, - {"Event": "VarSet", "Variable": "__dst_account_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "150010001"}, - {"Event": "VarSet", "Variable": "l_mangle_did", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "accountid"}, - {"Event": "VarSet", "Variable": "l_mangle_cli", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "dutch"}, - {"Event": "VarSet", "Variable": "l_cli_header", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "from"}, - {"Event": "VarSet", "Variable": "l_primary_pickupgroup", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": ""}, - {"Event": "VarSet", "Variable": "app_account", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "0"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Extension": "ID690150", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Context": "osvpi_route_phoneaccount", "AppData": "0?vialer", "Priority": "2"}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": "1"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Extension": "ID690150", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Context": "osvpi_route_phoneaccount", "AppData": "_PICKUPMARK=", "Priority": "3"}, - {"Event": "VarSet", "Variable": "_PICKUPMARK", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": ""}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": "SUCCESS"}, - {"Event": "VarSet", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": "proxy"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Extension": "ID690150", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Context": "osvpi_route_phoneaccount", "AppData": "l_trunk=0", "Priority": "4"}, - {"Event": "VarSet", "Variable": "l_trunk", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "0"}, - {"Application": "Goto", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Extension": "ID690150", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Context": "osvpi_route_phoneaccount", "AppData": "osvpi_route_account,ID690150,1", "Priority": "5"}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "1"}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "SUCCESS"}, - {"Event": "VarSet", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "proxy"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Extension": "ID690152", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Context": "osvpi_route_account", "AppData": "ARRAY(l_proxy)=172.20.0.13", "Priority": "1"}, - {"Event": "VarSet", "Variable": "l_proxy", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": "172.20.0.13"}, - {"Application": "Gosub", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Extension": "ID690152", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Context": "osvpi_route_account", "AppData": "osvpi_proc_mangle_number,accountid,1(150010003,403)", "Priority": "2"}, - {"Event": "VarSet", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": "150010003"}, - {"Event": "VarSet", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": "403"}, - {"Event": "VarSet", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": "2"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Extension": "accountid", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Context": "osvpi_proc_mangle_number", "AppData": "MANGLED_EXTEN=150010003", "Priority": "1"}, - {"Event": "VarSet", "Variable": "MANGLED_EXTEN", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": "150010003"}, - {"Application": "Return", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Extension": "accountid", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Context": "osvpi_proc_mangle_number", "AppData": "", "Priority": "2"}, - {"Event": "VarSet", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": ""}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Extension": "ID690152", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Context": "osvpi_route_account", "AppData": "l_did=150010003", "Priority": "3"}, - {"Event": "VarSet", "Variable": "l_did", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": "150010003"}, - {"Application": "Gosub", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Extension": "ID690152", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Context": "osvpi_route_account", "AppData": "osvpi_proc_mangle_number,dutch,1(150010003,202)", "Priority": "4"}, - {"Event": "VarSet", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": "150010003"}, - {"Event": "VarSet", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": "202"}, - {"Event": "VarSet", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": "2"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Extension": "dutch", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Context": "osvpi_proc_mangle_number", "AppData": "1?fullzero,1", "Priority": "1"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Extension": "fullzero", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Context": "osvpi_proc_mangle_number", "AppData": "MANGLED_EXTEN=202", "Priority": "1"}, - {"Event": "VarSet", "Variable": "MANGLED_EXTEN", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": "202"}, - {"Application": "Return", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Extension": "fullzero", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Context": "osvpi_proc_mangle_number", "AppData": "", "Priority": "2"}, - {"Event": "VarSet", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": ""}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Extension": "ID690152", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Context": "osvpi_route_account", "AppData": "l_mangle_cli_hdr=from-dutch", "Priority": "5"}, - {"Event": "VarSet", "Variable": "l_mangle_cli_hdr", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": "from-dutch"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Extension": "ID690152", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Context": "osvpi_route_account", "AppData": "l_fromuser=", "Priority": "6"}, - {"Event": "VarSet", "Variable": "l_fromuser", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": ""}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Extension": "ID690150", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Context": "osvpi_route_account", "AppData": "ARRAY(l_proxy)=172.20.0.13", "Priority": "1"}, - {"Event": "VarSet", "Variable": "l_proxy", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "172.20.0.13"}, - {"Application": "Gosub", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Extension": "ID690150", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Context": "osvpi_route_account", "AppData": "osvpi_proc_mangle_number,accountid,1(150010001,403)", "Priority": "2"}, - {"Application": "ExecIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Extension": "ID690152", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Context": "osvpi_route_account", "AppData": "1?Set(l_fromuser=202)", "Priority": "7"}, - {"Event": "VarSet", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "150010001"}, - {"Event": "VarSet", "Variable": "l_fromuser", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": "202"}, - {"Event": "VarSet", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "403"}, - {"Event": "VarSet", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "2"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Extension": "accountid", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Context": "osvpi_proc_mangle_number", "AppData": "MANGLED_EXTEN=150010001", "Priority": "1"}, - {"Event": "VarSet", "Variable": "MANGLED_EXTEN", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "150010001"}, - {"Application": "Return", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Extension": "accountid", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Context": "osvpi_proc_mangle_number", "AppData": "", "Priority": "2"}, - {"Event": "VarSet", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": ""}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Extension": "ID690150", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Context": "osvpi_route_account", "AppData": "l_did=150010001", "Priority": "3"}, - {"Event": "VarSet", "Variable": "l_did", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "150010001"}, - {"Application": "Gosub", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Extension": "ID690150", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Context": "osvpi_route_account", "AppData": "osvpi_proc_mangle_number,dutch,1(150010001,202)", "Priority": "4"}, - {"Event": "VarSet", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "150010001"}, - {"Event": "VarSet", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "202"}, - {"Event": "VarSet", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "2"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Extension": "dutch", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Context": "osvpi_proc_mangle_number", "AppData": "1?fullzero,1", "Priority": "1"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Extension": "fullzero", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Context": "osvpi_proc_mangle_number", "AppData": "MANGLED_EXTEN=202", "Priority": "1"}, - {"Event": "VarSet", "Variable": "MANGLED_EXTEN", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "202"}, - {"Application": "Return", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Extension": "fullzero", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Context": "osvpi_proc_mangle_number", "AppData": "", "Priority": "2"}, - {"Event": "VarSet", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": ""}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Extension": "ID690150", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Context": "osvpi_route_account", "AppData": "l_mangle_cli_hdr=from-dutch", "Priority": "5"}, - {"Event": "VarSet", "Variable": "l_mangle_cli_hdr", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "from-dutch"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Extension": "ID690150", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Context": "osvpi_route_account", "AppData": "l_fromuser=", "Priority": "6"}, - {"Event": "VarSet", "Variable": "l_fromuser", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": ""}, - {"Application": "ExecIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Extension": "ID690150", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Context": "osvpi_route_account", "AppData": "1?Set(l_fromuser=202)", "Priority": "7"}, - {"Event": "VarSet", "Variable": "l_fromuser", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "202"}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": "1"}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": "SUCCESS"}, - {"Event": "VarSet", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": "IF((SELECT 1 FROM baseaccount_account ba INNER JOIN userdestination_selecteduserdestination udsud ON udsud.phoneaccount_id = ba.id INNER JOIN userdestination_userdestination udud ON udud.id = udsud.userdestination_id INNER JOIN crm_cloudctiuser cccu O"}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "1"}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "SUCCESS"}, - {"Event": "VarSet", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "IF((SELECT 1 FROM baseaccount_account ba INNER JOIN userdestination_selecteduserdestination udsud ON udsud.phoneaccount_id = ba.id INNER JOIN userdestination_userdestination udud ON udud.id = udsud.userdestination_id INNER JOIN crm_cloudctiuser cccu O"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Extension": "ID690152", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Context": "osvpi_route_account", "AppData": "ARRAY(cloudcti)=0", "Priority": "8"}, - {"Event": "VarSet", "Variable": "cloudcti", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": "0"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Extension": "ID690152", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Context": "osvpi_route_account", "AppData": "1?skipcloudcti", "Priority": "9"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Extension": "ID690150", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Context": "osvpi_route_account", "AppData": "ARRAY(cloudcti)=0", "Priority": "8"}, - {"Event": "VarSet", "Variable": "cloudcti", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "0"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Extension": "ID690150", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Context": "osvpi_route_account", "AppData": "1?skipcloudcti", "Priority": "9"}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": "1"}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": "SUCCESS"}, - {"Event": "VarSet", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": "GROUP_CONCAT(DISTINCT(csw.url) SEPARATOR ' '),internal_number,GROUP_CONCAT(DISTINCT(ud.internal_number) SEPARATOR ' ')"}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "1"}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "SUCCESS"}, - {"Event": "VarSet", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "GROUP_CONCAT(DISTINCT(csw.url) SEPARATOR ' '),internal_number,GROUP_CONCAT(DISTINCT(ud.internal_number) SEPARATOR ' ')"}, - {"Event": "VarSet", "Variable": "accountinternalnumber", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": "203"}, - {"Event": "VarSet", "Variable": "userinternalnumbers", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": "603"}, - {"Application": "Goto", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Extension": "ID690152", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Context": "osvpi_route_account", "AppData": "osvpi_proc_proxy_out,403,1", "Priority": "13"}, - {"Application": "SIPAddHeader", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Extension": "403", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Context": "osvpi_proc_proxy_out", "AppData": "X-Accountcode: 150010003", "Priority": "1"}, - {"Event": "VarSet", "Variable": "__SIPADDHEADER01", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": "X-Accountcode: 150010003"}, - {"Application": "SIPAddHeader", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Extension": "403", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Context": "osvpi_proc_proxy_out", "AppData": "X-Insecure-Protection: geheim", "Priority": "2"}, - {"Event": "VarSet", "Variable": "__SIPADDHEADER02", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": "X-Insecure-Protection: geheim"}, - {"Application": "SIPAddHeader", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Extension": "403", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Context": "osvpi_proc_proxy_out", "AppData": "X-Mangle-Cli: from-dutch", "Priority": "3"}, - {"Event": "VarSet", "Variable": "__SIPADDHEADER03", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": "X-Mangle-Cli: from-dutch"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Extension": "403", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Context": "osvpi_proc_proxy_out", "AppData": "_dial_options_callaccept=", "Priority": "4"}, - {"Event": "VarSet", "Variable": "_dial_options_callaccept", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": ""}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Extension": "403", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Context": "osvpi_proc_proxy_out", "AppData": "_dial_options_callnotify=", "Priority": "5"}, - {"Event": "VarSet", "Variable": "_dial_options_callnotify", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": ""}, - {"Application": "ExecIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Extension": "403", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Context": "osvpi_proc_proxy_out", "AppData": "0?Set(l_proxy=opensipsfg)", "Priority": "6"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Extension": "403", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Context": "osvpi_proc_proxy_out", "AppData": "l_extra_options=", "Priority": "7"}, - {"Event": "VarSet", "Variable": "l_extra_options", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": ""}, - {"Application": "Dial", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Extension": "403", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Context": "osvpi_proc_proxy_out", "AppData": "SIP/150010003/150010003/172.20.0.13!!202,,", "Priority": "8"}, - {"Event": "VarSet", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": ""}, - {"Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": ""}, - {"Event": "VarSet", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": ""}, - {"Event": "VarSet", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": ""}, - {"Event": "VarSet", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": ""}, - {"Event": "VarSet", "Variable": "accountinternalnumber", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "201"}, - {"Event": "VarSet", "Variable": "userinternalnumbers", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "601"}, - {"Application": "Goto", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Extension": "ID690150", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Context": "osvpi_route_account", "AppData": "osvpi_proc_proxy_out,403,1", "Priority": "13"}, - {"Application": "SIPAddHeader", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Extension": "403", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Context": "osvpi_proc_proxy_out", "AppData": "X-Accountcode: 150010001", "Priority": "1"}, - {"Event": "VarSet", "Variable": "__SIPADDHEADER01", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "X-Accountcode: 150010001"}, - {"Application": "SIPAddHeader", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Extension": "403", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Context": "osvpi_proc_proxy_out", "AppData": "X-Insecure-Protection: geheim", "Priority": "2"}, - {"Event": "VarSet", "Variable": "__SIPADDHEADER02", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "X-Insecure-Protection: geheim"}, - {"Application": "SIPAddHeader", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Extension": "403", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Context": "osvpi_proc_proxy_out", "AppData": "X-Mangle-Cli: from-dutch", "Priority": "3"}, - {"Event": "VarSet", "Variable": "__SIPADDHEADER03", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "X-Mangle-Cli: from-dutch"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Extension": "403", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Context": "osvpi_proc_proxy_out", "AppData": "_dial_options_callaccept=", "Priority": "4"}, - {"Event": "VarSet", "Variable": "_dial_options_callaccept", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": ""}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Extension": "403", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Context": "osvpi_proc_proxy_out", "AppData": "_dial_options_callnotify=", "Priority": "5"}, - {"Event": "VarSet", "Variable": "_dial_options_callnotify", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": ""}, - {"Application": "ExecIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Extension": "403", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Context": "osvpi_proc_proxy_out", "AppData": "0?Set(l_proxy=opensipsfg)", "Priority": "6"}, - {"Application": "Set", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Extension": "403", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Context": "osvpi_proc_proxy_out", "AppData": "l_extra_options=", "Priority": "7"}, - {"Event": "VarSet", "Variable": "l_extra_options", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": ""}, - {"Application": "Dial", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Extension": "403", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Context": "osvpi_proc_proxy_out", "AppData": "SIP/150010001/150010001/172.20.0.13!!202,,", "Priority": "8"}, - {"Event": "VarSet", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": ""}, - {"Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": ""}, - {"Event": "VarSet", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": ""}, - {"Event": "VarSet", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": ""}, - {"Event": "VarSet", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": ""}, - {"AccountCode": "150010003", "Uniqueid": "0f00dcaa884f-1509117842.44", "Channel": "SIP/150010003-00000011", "CallerIDName": "", "Exten": "", "Event": "Newchannel", "Privilege": "call,all", "content": "", "ChannelState": "0", "ChannelStateDesc": "Down", "Context": "osvpi_account", "CallerIDNum": ""}, - {"Event": "VarSet", "Variable": "SIPCALLID", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.44", "Channel": "SIP/150010003-00000011", "Value": "4e776daa08bb092b76549c6e78a619d1@test.voipgrid.nl"}, - {"Event": "VarSet", "Variable": "__client_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.44", "Channel": "SIP/150010003-00000011", "Value": "15001"}, - {"Event": "VarSet", "Variable": "__account_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.44", "Channel": "SIP/150010003-00000011", "Value": "150010003"}, - {"Event": "VarSet", "Variable": "__record_call", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.44", "Channel": "SIP/150010003-00000011", "Value": "no"}, - {"Event": "VarSet", "Variable": "__intprefix", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.44", "Channel": "SIP/150010003-00000011", "Value": "31"}, - {"Event": "VarSet", "Variable": "__limit_account", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.44", "Channel": "SIP/150010003-00000011", "Value": "4"}, - {"Event": "VarSet", "Variable": "__limit_client", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.44", "Channel": "SIP/150010003-00000011", "Value": "0"}, - {"Event": "VarSet", "Variable": "__hide_ext_cliname", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.44", "Channel": "SIP/150010003-00000011", "Value": "1"}, - {"Event": "VarSet", "Variable": "__TRANSFER_CONTEXT", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.44", "Channel": "SIP/150010003-00000011", "Value": "osvpi_account_transfer"}, - {"Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.44", "Channel": "SIP/150010003-00000011", "Value": "150010003/150010003/172.20.0.13!!202"}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Event": "NewCallerid", "Privilege": "call,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.44", "Channel": "SIP/150010003-00000011", "CallerIDNum": "403", "CallerIDName": ""}, - {"ConnectedLineName": "", "DestUniqueID": "0f00dcaa884f-1509117842.44", "Destination": "SIP/150010003-00000011", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "SubEvent": "Begin", "CallerIDName": "", "ConnectedLineNum": "403", "Event": "Dial", "Privilege": "call,all", "content": "", "Dialstring": "150010003/150010003/172.20.0.13!!202", "CallerIDNum": "202", "UniqueID": "0f00dcaa884f-1509117842.43"}, - {"AccountCode": "150010001", "Uniqueid": "0f00dcaa884f-1509117842.45", "Channel": "SIP/150010001-00000012", "CallerIDName": "", "Exten": "", "Event": "Newchannel", "Privilege": "call,all", "content": "", "ChannelState": "0", "ChannelStateDesc": "Down", "Context": "osvpi_account", "CallerIDNum": ""}, - {"Event": "VarSet", "Variable": "SIPCALLID", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.45", "Channel": "SIP/150010001-00000012", "Value": "6019cfc6307857a46931e1af371c751d@test.voipgrid.nl"}, - {"Event": "VarSet", "Variable": "__client_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.45", "Channel": "SIP/150010001-00000012", "Value": "15001"}, - {"Event": "VarSet", "Variable": "__account_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.45", "Channel": "SIP/150010001-00000012", "Value": "150010001"}, - {"Event": "VarSet", "Variable": "__record_call", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.45", "Channel": "SIP/150010001-00000012", "Value": "no"}, - {"Event": "VarSet", "Variable": "__intprefix", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.45", "Channel": "SIP/150010001-00000012", "Value": "31"}, - {"Event": "VarSet", "Variable": "__limit_account", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.45", "Channel": "SIP/150010001-00000012", "Value": "4"}, - {"Event": "VarSet", "Variable": "__limit_client", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.45", "Channel": "SIP/150010001-00000012", "Value": "0"}, - {"Event": "VarSet", "Variable": "__hide_ext_cliname", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.45", "Channel": "SIP/150010001-00000012", "Value": "1"}, - {"Event": "VarSet", "Variable": "__TRANSFER_CONTEXT", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.45", "Channel": "SIP/150010001-00000012", "Value": "osvpi_account_transfer"}, - {"Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.45", "Channel": "SIP/150010001-00000012", "Value": "150010001/150010001/172.20.0.13!!202"}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Event": "NewCallerid", "Privilege": "call,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.45", "Channel": "SIP/150010001-00000012", "CallerIDNum": "403", "CallerIDName": ""}, - {"ConnectedLineName": "", "DestUniqueID": "0f00dcaa884f-1509117842.45", "Destination": "SIP/150010001-00000012", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "SubEvent": "Begin", "CallerIDName": "", "ConnectedLineNum": "403", "Event": "Dial", "Privilege": "call,all", "content": "", "Dialstring": "150010001/150010001/172.20.0.13!!202", "CallerIDNum": "202", "UniqueID": "0f00dcaa884f-1509117842.41"}, - {"ChannelStateDesc": "Ringing", "Event": "Newstate", "Privilege": "call,all", "ConnectedLineName": "", "Channel": "SIP/150010001-00000012", "ChannelState": "5", "ConnectedLineNum": "202", "content": "", "CallerIDNum": "403", "Uniqueid": "0f00dcaa884f-1509117842.45", "CallerIDName": ""}, - {"ChannelStateDesc": "Ringing", "Event": "Newstate", "Privilege": "call,all", "ConnectedLineName": "", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;1", "ChannelState": "5", "ConnectedLineNum": "202", "content": "", "CallerIDNum": "403", "Uniqueid": "0f00dcaa884f-1509117842.40", "CallerIDName": ""}, - {"ChannelStateDesc": "Ringing", "Event": "Newstate", "Privilege": "call,all", "ConnectedLineName": "", "Channel": "SIP/150010003-00000011", "ChannelState": "5", "ConnectedLineNum": "202", "content": "", "CallerIDNum": "403", "Uniqueid": "0f00dcaa884f-1509117842.44", "CallerIDName": ""}, - {"ChannelStateDesc": "Ringing", "Event": "Newstate", "Privilege": "call,all", "ConnectedLineName": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;1", "ChannelState": "5", "ConnectedLineNum": "202", "content": "", "CallerIDNum": "403", "Uniqueid": "0f00dcaa884f-1509117842.42", "CallerIDName": ""}, - {"TheirLastSR": "0", "SentRTP": "159336", "SentNTP": "1509117843.2835369984", "FractionLost": "133", "DLSR": "20371.6920 (sec)", "SentPackets": "769", "IAJitter": "0.0001", "Event": "RTCPSent", "Privilege": "reporting,all", "content": "", "CumulativeLoss": "226", "To": "172.20.0.254:49985", "OurSSRC": "1704659548", "SentOctets": "123040"}, - {"ChannelStateDesc": "Up", "Event": "Newstate", "Privilege": "call,all", "ConnectedLineName": "", "Channel": "SIP/150010001-00000012", "ChannelState": "6", "ConnectedLineNum": "202", "content": "", "CallerIDNum": "403", "Uniqueid": "0f00dcaa884f-1509117842.45", "CallerIDName": ""}, - {"Event": "VarSet", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "ANSWER"}, - {"Event": "VarSet", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "SIP/150010001-00000012"}, - {"Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "150010001/150010001/172.20.0.13!!202"}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "SIP/150010001-00000012"}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.45", "Channel": "SIP/150010001-00000012", "Value": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2"}, - {"ChannelStateDesc": "Up", "Event": "Newstate", "Privilege": "call,all", "ConnectedLineName": "", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "ChannelState": "6", "ConnectedLineNum": "403", "content": "", "CallerIDNum": "202", "Uniqueid": "0f00dcaa884f-1509117842.41", "CallerIDName": ""}, - {"AccountCode": "150010004", "Event": "NewAccountCode", "Privilege": "call,all", "content": "", "OldAccountCode": "150010004", "Channel": "SIP/150010001-00000012", "Uniqueid": "0f00dcaa884f-1509117842.45"}, - {"ChannelStateDesc": "Up", "Event": "Newstate", "Privilege": "call,all", "ConnectedLineName": "", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;1", "ChannelState": "6", "ConnectedLineNum": "202", "content": "", "CallerIDNum": "403", "Uniqueid": "0f00dcaa884f-1509117842.40", "CallerIDName": ""}, - {"Uniqueid2": "0f00dcaa884f-1509117842.45", "Event": "Bridge", "Channel1": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Privilege": "call,all", "content": "", "Bridgestate": "Link", "Channel2": "SIP/150010001-00000012", "CallerID2": "403", "Uniqueid1": "0f00dcaa884f-1509117842.41", "Bridgetype": "core", "CallerID1": "202"}, - {"Event": "VarSet", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "ANSWER"}, - {"Event": "HangupRequest", "Privilege": "call,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2"}, - {"AccountCode": "150010004", "Cause-txt": "Answered elsewhere", "CallerIDNum": "403", "ConnectedLineName": "", "Uniqueid": "0f00dcaa884f-1509117842.42", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;1", "CallerIDName": "", "ConnectedLineNum": "202", "Event": "Hangup", "Privilege": "call,all", "content": "", "Cause": "26"}, - {"Event": "VarSet", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "Local/ID690150@osvpi_route_phoneaccount-0000000b;1"}, - {"Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "ID690150@osvpi_route_phoneaccount"}, - {"AccountCode": "150010004", "Cause-txt": "Answered elsewhere", "CallerIDNum": "403", "ConnectedLineName": "", "Uniqueid": "0f00dcaa884f-1509117842.44", "Channel": "SIP/150010003-00000011", "CallerIDName": "", "ConnectedLineNum": "202", "Event": "Hangup", "Privilege": "call,all", "content": "", "Cause": "26"}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "Local/ID690150@osvpi_route_phoneaccount-0000000b;1"}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.40", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;1", "Value": "SIP/150010002-0000000f"}, - {"AccountCode": "150010004", "Event": "NewAccountCode", "Privilege": "call,all", "content": "", "OldAccountCode": "150010004", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;1", "Uniqueid": "0f00dcaa884f-1509117842.40"}, - {"Event": "VarSet", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Value": "CANCEL"}, - {"Event": "Dial", "Privilege": "call,all", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "SubEvent": "End", "DialStatus": "CANCEL", "UniqueID": "0f00dcaa884f-1509117842.43"}, - {"Uniqueid2": "0f00dcaa884f-1509117842.40", "Event": "Bridge", "Channel1": "SIP/150010002-0000000f", "Privilege": "call,all", "content": "", "Bridgestate": "Link", "Channel2": "Local/ID690150@osvpi_route_phoneaccount-0000000b;1", "CallerID2": "403", "Uniqueid1": "0f00dcaa884f-1509117819.36", "Bridgetype": "core", "CallerID1": "202"}, - {"Event": "SoftHangupRequest", "Privilege": "call,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Cause": "16"}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "Local/ID690150@osvpi_route_phoneaccount-0000000b;1"}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.40", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;1", "Value": "SIP/150010002-0000000f"}, - {"Event": "VarSet", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.40", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;1", "Value": "96cba102-ead179ab@10.13.36.116"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Extension": "onhangup", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Context": "handlers", "AppData": "1?nosip", "Priority": "1"}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "Local/ID690150@osvpi_route_phoneaccount-0000000b;1"}, - {"Application": "GosubIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Extension": "onhangup", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "Context": "handlers", "AppData": "0?osvpi_proc_httptouch,s,1()", "Priority": "3"}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.40", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;1", "Value": "SIP/150010002-0000000f"}, - {"Event": "VarSet", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.40", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;1", "Value": "96cba102-ead179ab@10.13.36.116"}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "SIP/150010001-00000012"}, - {"Event": "VarSet", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "6019cfc6307857a46931e1af371c751d@test.voipgrid.nl"}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.45", "Channel": "SIP/150010001-00000012", "Value": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2"}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "SIP/150010001-00000012"}, - {"Event": "VarSet", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "6019cfc6307857a46931e1af371c751d@test.voipgrid.nl"}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.45", "Channel": "SIP/150010001-00000012", "Value": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2"}, - {"AccountCode": "150010004", "Cause-txt": "Answered elsewhere", "CallerIDNum": "202", "ConnectedLineName": "", "Uniqueid": "0f00dcaa884f-1509117842.43", "Channel": "Local/ID690152@osvpi_route_phoneaccount-0000000c;2", "CallerIDName": "", "ConnectedLineNum": "403", "Event": "Hangup", "Privilege": "call,all", "content": "", "Cause": "26"}, - {"Event": "Masquerade", "Privilege": "call,all", "content": "", "Original": "Local/ID690150@osvpi_route_phoneaccount-0000000b;1", "Clone": "SIP/150010001-00000012", "CloneState": "Up", "OriginalState": "Up"}, - {"Event": "Rename", "Privilege": "call,all", "content": "", "Newname": "SIP/150010001-00000012", "Channel": "SIP/150010001-00000012", "Uniqueid": "0f00dcaa884f-1509117842.45"}, - {"Event": "Rename", "Privilege": "call,all", "content": "", "Newname": "SIP/150010001-00000012", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;1", "Uniqueid": "0f00dcaa884f-1509117842.40"}, - {"Event": "Rename", "Privilege": "call,all", "content": "", "Newname": "Local/ID690150@osvpi_route_phoneaccount-0000000b;1", "Channel": "SIP/150010001-00000012", "Uniqueid": "0f00dcaa884f-1509117842.45"}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Event": "NewCallerid", "Privilege": "call,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.40", "Channel": "SIP/150010001-00000012", "CallerIDNum": "403", "CallerIDName": ""}, - {"Uniqueid2": "0f00dcaa884f-1509117842.45", "Event": "Bridge", "Channel1": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Privilege": "call,all", "content": "", "Bridgestate": "Unlink", "Channel2": "Local/ID690150@osvpi_route_phoneaccount-0000000b;1", "CallerID2": "403", "Uniqueid1": "0f00dcaa884f-1509117842.41", "Bridgetype": "core", "CallerID1": "202"}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "SIP/150010001-00000012"}, - {"Event": "VarSet", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "1"}, - {"Event": "VarSet", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "6019cfc6307857a46931e1af371c751d@test.voipgrid.nl"}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.40", "Channel": "SIP/150010001-00000012", "Value": "SIP/150010002-0000000f"}, - {"Event": "VarSet", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.40", "Channel": "SIP/150010001-00000012", "Value": "96cba102-ead179ab@10.13.36.116"}, - {"Event": "VarSet", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "5"}, - {"Event": "HangupRequest", "Privilege": "call,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2"}, - {"AccountCode": "150010004", "Cause-txt": "Normal Clearing", "CallerIDNum": "403", "ConnectedLineName": "", "Uniqueid": "0f00dcaa884f-1509117842.45", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;1", "CallerIDName": "", "ConnectedLineNum": "202", "Event": "Hangup", "Privilege": "call,all", "content": "", "Cause": "16"}, - {"Event": "VarSet", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Value": "ANSWER"}, - {"Event": "Dial", "Privilege": "call,all", "content": "", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "SubEvent": "End", "DialStatus": "ANSWER", "UniqueID": "0f00dcaa884f-1509117842.41"}, - {"Event": "SoftHangupRequest", "Privilege": "call,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Cause": "16"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Extension": "onhangup", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Context": "handlers", "AppData": "1?nosip", "Priority": "1"}, - {"Application": "GosubIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Extension": "onhangup", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "Context": "handlers", "AppData": "0?osvpi_proc_httptouch,s,1()", "Priority": "3"}, - {"AccountCode": "150010004", "Cause-txt": "Normal Clearing", "CallerIDNum": "202", "ConnectedLineName": "", "Uniqueid": "0f00dcaa884f-1509117842.41", "Channel": "Local/ID690150@osvpi_route_phoneaccount-0000000b;2", "CallerIDName": "", "ConnectedLineNum": "403", "Event": "Hangup", "Privilege": "call,all", "content": "", "Cause": "16"}, - {"SequenceNumberCycles": "0", "From": "172.20.0.254:43103", "SenderSSRC": "0", "HighestSequence": "12875", "LastSR": "0.0000000000", "DLSR": "32768.0000(sec)", "FractionLost": "0", "IAJitter": "18", "Event": "RTCPReceived", "ReceptionReports": "1", "Privilege": "reporting,all", "content": "", "PacketsLost": "0", "PT": "200(Sender Report)"}, - {"TheirLastSR": "0", "SentRTP": "184296", "SentNTP": "1509117848.2836418560", "FractionLost": "0", "DLSR": "20376.6920 (sec)", "SentPackets": "925", "IAJitter": "0.0001", "Event": "RTCPSent", "Privilege": "reporting,all", "content": "", "CumulativeLoss": "226", "To": "172.20.0.254:49985", "OurSSRC": "1720004952", "SentOctets": "148000"}, - {"TheirLastSR": "1335371825", "SentRTP": "75195304", "SentNTP": "1509117851.3320860672", "FractionLost": "0", "DLSR": "3.6210 (sec)", "SentPackets": "20", "IAJitter": "0.0000", "Event": "RTCPSent", "Privilege": "reporting,all", "content": "", "CumulativeLoss": "0", "To": "172.20.0.254:43103", "OurSSRC": "961151730", "SentOctets": "3200"}, - {"Event": "VarSet", "Variable": "RTPAUDIOQOS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.40", "Channel": "SIP/150010001-00000012", "Value": "ssrc=961151730;themssrc=3636890318;lp=0;rxjitter=0.000000;rxcount=1;txjitter=0.000000;txcount=20;rlp=0;rtt=0.000000"}, - {"Event": "VarSet", "Variable": "RTPAUDIOQOSBRIDGED", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "ssrc=961151730;themssrc=3636890318;lp=0;rxjitter=0.000000;rxcount=1;txjitter=0.000000;txcount=20;rlp=0;rtt=0.000000"}, - {"Event": "VarSet", "Variable": "RTPAUDIOQOSJITTER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.40", "Channel": "SIP/150010001-00000012", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;"}, - {"Event": "VarSet", "Variable": "RTPAUDIOQOSJITTERBRIDGED", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;"}, - {"Event": "VarSet", "Variable": "RTPAUDIOQOSLOSS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.40", "Channel": "SIP/150010001-00000012", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;"}, - {"Event": "VarSet", "Variable": "RTPAUDIOQOSLOSSBRIDGED", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;"}, - {"Event": "VarSet", "Variable": "RTPAUDIOQOSRTT", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.40", "Channel": "SIP/150010001-00000012", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;"}, - {"Event": "VarSet", "Variable": "RTPAUDIOQOSRTTBRIDGED", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;"}, - {"Event": "VarSet", "Variable": "RTPAUDIOQOS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "ssrc=1720004952;themssrc=2139934282;lp=226;rxjitter=0.000000;rxcount=950;txjitter=0.000068;txcount=925;rlp=0;rtt=0.000000"}, - {"Event": "VarSet", "Variable": "RTPAUDIOQOSBRIDGED", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.40", "Channel": "SIP/150010001-00000012", "Value": "ssrc=1720004952;themssrc=2139934282;lp=226;rxjitter=0.000000;rxcount=950;txjitter=0.000068;txcount=925;rlp=0;rtt=0.000000"}, - {"Event": "VarSet", "Variable": "RTPAUDIOQOSJITTER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;"}, - {"Event": "VarSet", "Variable": "RTPAUDIOQOSJITTERBRIDGED", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.40", "Channel": "SIP/150010001-00000012", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;"}, - {"Event": "VarSet", "Variable": "RTPAUDIOQOSLOSS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;"}, - {"Event": "VarSet", "Variable": "RTPAUDIOQOSLOSSBRIDGED", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.40", "Channel": "SIP/150010001-00000012", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;"}, - {"Event": "VarSet", "Variable": "RTPAUDIOQOSRTT", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;"}, - {"Event": "VarSet", "Variable": "RTPAUDIOQOSRTTBRIDGED", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.40", "Channel": "SIP/150010001-00000012", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;"}, - {"Event": "HangupRequest", "Privilege": "call,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117842.40", "Channel": "SIP/150010001-00000012"}, - {"Uniqueid2": "0f00dcaa884f-1509117842.40", "Event": "Bridge", "Channel1": "SIP/150010002-0000000f", "Privilege": "call,all", "content": "", "Bridgestate": "Unlink", "Channel2": "SIP/150010001-00000012", "CallerID2": "403", "Uniqueid1": "0f00dcaa884f-1509117819.36", "Bridgetype": "core", "CallerID1": "202"}, - {"Event": "VarSet", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "10"}, - {"AccountCode": "150010004", "Cause-txt": "Normal Clearing", "CallerIDNum": "403", "ConnectedLineName": "", "Uniqueid": "0f00dcaa884f-1509117842.40", "Channel": "SIP/150010001-00000012", "CallerIDName": "", "ConnectedLineNum": "202", "Event": "Hangup", "Privilege": "call,all", "content": "", "Cause": "16"}, - {"Event": "VarSet", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "ANSWER"}, - {"Event": "Dial", "Privilege": "call,all", "content": "", "Channel": "SIP/150010002-0000000f", "SubEvent": "End", "DialStatus": "ANSWER", "UniqueID": "0f00dcaa884f-1509117819.36"}, - {"Event": "SoftHangupRequest", "Privilege": "call,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Cause": "16"}, - {"Application": "GotoIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "onhangup", "Channel": "SIP/150010002-0000000f", "Context": "handlers", "AppData": "0?nosip", "Priority": "1"}, - {"Application": "NoOp", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "onhangup", "Channel": "SIP/150010002-0000000f", "Context": "handlers", "AppData": "LOG: rtpqos: caller=172.20.0.254:49984;asterisk=0.0.0.0:14758;ssrc=1720004952;themssrc=2139934282;lp=226;rxjitter=0.000000;rxcount=951;txjitter=0.000571;txcount=925;rlp=0;rtt=0.000000;billsec=0", "Priority": "2"}, - {"Application": "GosubIf", "Event": "Newexten", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Extension": "onhangup", "Channel": "SIP/150010002-0000000f", "Context": "handlers", "AppData": "0?osvpi_proc_httptouch,s,1()", "Priority": "3"}, - {"Event": "VarSet", "Variable": "RTPAUDIOQOS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "ssrc=1720004952;themssrc=2139934282;lp=226;rxjitter=0.000000;rxcount=951;txjitter=0.000571;txcount=925;rlp=0;rtt=0.000000"}, - {"Event": "VarSet", "Variable": "RTPAUDIOQOSJITTER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;"}, - {"Event": "VarSet", "Variable": "RTPAUDIOQOSLOSS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;"}, - {"Event": "VarSet", "Variable": "RTPAUDIOQOSRTT", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;"}, - {"Event": "VarSet", "Variable": "RTPAUDIOQOS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "Value": "ssrc=1720004952;themssrc=2139934282;lp=226;rxjitter=0.000000;rxcount=951;txjitter=0.000571;txcount=925;rlp=0;rtt=0.000000"}, - {"AccountCode": "150010004", "Cause-txt": "Normal Clearing", "CallerIDNum": "202", "ConnectedLineName": "", "Uniqueid": "0f00dcaa884f-1509117819.36", "Channel": "SIP/150010002-0000000f", "CallerIDName": "", "ConnectedLineNum": "", "Event": "Hangup", "Privilege": "call,all", "content": "", "Cause": "16"} + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000017", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newchannel", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.278", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000017", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.278", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000017", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "10", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.278", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000c;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730150", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.280", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730150", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.281", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000c;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.280", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000c;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.280", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000c;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.280", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730150", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.281", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730150", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.281", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730150", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.281", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730150", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31150010001", "LocalOneChannel": "Local/ID730150@osvpi_route_phoneaccount-0000000c;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31260010001", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "+31150010001", "LocalOneLanguage": "en", "LocalOneLinkedid": "f29ea68048f6-1530014341.278", "LocalOnePriority": "1", "LocalOneUniqueid": "f29ea68048f6-1530014341.280", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31260010001", "LocalTwoChannel": "Local/ID730150@osvpi_route_phoneaccount-0000000c;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31150010001", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730150", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "f29ea68048f6-1530014341.278", "LocalTwoPriority": "1", "LocalTwoUniqueid": "f29ea68048f6-1530014341.281", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000017", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/ID730150@osvpi_route_phoneaccount-0000000c;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "+31150010001", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530014341.278", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530014341.280", "DialString": "ID730150@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.278", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010001-00000018", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.286", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000018", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.286", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000018", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530014341.278", "OldAccountCode": "150010001", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.286", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000018", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.286", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "SIP/150010001-00000018", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "+31150010001", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530014341.278", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530014341.286", "DialString": "150010001/150010001/172.20.0.13!!0260010001", "Event": "DialBegin", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.281", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000018", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.286", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000c;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.280", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000018", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.286", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "SIP/150010001-00000018", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530014341.278", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530014341.286", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.281", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000c;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.281", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000c;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.280", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2459fdcd-f730-478b-818d-a06083b93f16", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000017", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/ID730150@osvpi_route_phoneaccount-0000000c;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530014341.278", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530014341.280", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.278", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000017", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.278", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2459fdcd-f730-478b-818d-a06083b93f16", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000018", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.286", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2459fdcd-f730-478b-818d-a06083b93f16", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000c;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.281", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "8071547d-f4a9-4205-9a5b-d260060c2d49", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "146e35de-db3e-4e8e-9478-51f5f96fa809", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "3dffaa84-8afe-48f5-b487-c63b052584e1", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "8071547d-f4a9-4205-9a5b-d260060c2d49", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000c;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.280", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "8071547d-f4a9-4205-9a5b-d260060c2d49", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000017", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.278", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "3dffaa84-8afe-48f5-b487-c63b052584e1", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "8071547d-f4a9-4205-9a5b-d260060c2d49", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000017", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.278", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2459fdcd-f730-478b-818d-a06083b93f16", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000c;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.281", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2459fdcd-f730-478b-818d-a06083b93f16", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000017", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "f29ea68048f6-1530014341.281", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.278", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "8071547d-f4a9-4205-9a5b-d260060c2d49", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000c;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.280", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "8071547d-f4a9-4205-9a5b-d260060c2d49", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000c;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.281", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000c;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.280", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2459fdcd-f730-478b-818d-a06083b93f16", "BridgeVideoSourceMode": "none", "Context": "osvpi_account_transfer", "Event": "BlindTransfer", "Extension": "401", "IsExternal": "Yes", "Privilege": "call,all", "Result": "Success", "SystemName": "f29ea68048f6", "TransfereeAccountCode": "15001", "TransfereeCallerIDName": "", "TransfereeCallerIDNum": "+31260010001", "TransfereeChannel": "SIP/voipgrid-siproute-docker-00000017", "TransfereeChannelState": "6", "TransfereeChannelStateDesc": "Up", "TransfereeConnectedLineName": "", "TransfereeConnectedLineNum": "", "TransfereeContext": "osvpi_route_phoneaccount_step", "TransfereeExten": "+31150010001", "TransfereeLanguage": "nl", "TransfereeLinkedid": "f29ea68048f6-1530014341.278", "TransfereePriority": "1", "TransfereeUniqueid": "f29ea68048f6-1530014341.278", "TransfererAccountCode": "15001", "TransfererCallerIDName": "", "TransfererCallerIDNum": "+31150010001", "TransfererChannel": "SIP/150010001-00000018", "TransfererChannelState": "6", "TransfererChannelStateDesc": "Up", "TransfererConnectedLineName": "", "TransfererConnectedLineNum": "+31260010001", "TransfererContext": "osvpi_account", "TransfererExten": "", "TransfererLanguage": "nl", "TransfererLinkedid": "f29ea68048f6-1530014341.278", "TransfererPriority": "1", "TransfererUniqueid": "f29ea68048f6-1530014341.286", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2459fdcd-f730-478b-818d-a06083b93f16", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000018", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.286", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010001-00000018", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.286", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2459fdcd-f730-478b-818d-a06083b93f16", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000017", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_transfer", "Event": "BridgeLeave", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.278", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2459fdcd-f730-478b-818d-a06083b93f16", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000017", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_transfer", "Event": "NewAccountCode", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530014341.278", "OldAccountCode": "15001", "Priority": "23", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.278", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730152", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.328", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730152", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.330", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.328", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.328", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.328", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000e;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.333", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.335", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000e;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.333", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000e;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.333", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000e;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.333", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730152", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.330", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730152", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.330", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730152", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.330", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730152", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "401", "LocalOneChannel": "Local/ID730152@osvpi_route_phoneaccount-0000000d;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31260010001", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "401", "LocalOneLanguage": "en", "LocalOneLinkedid": "f29ea68048f6-1530014341.278", "LocalOnePriority": "1", "LocalOneUniqueid": "f29ea68048f6-1530014347.328", "LocalOptimization": "Yes", "LocalTwoAccountCode": "150010001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31260010001", "LocalTwoChannel": "Local/ID730152@osvpi_route_phoneaccount-0000000d;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "401", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730152", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "f29ea68048f6-1530014341.278", "LocalTwoPriority": "1", "LocalTwoUniqueid": "f29ea68048f6-1530014347.330", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000017", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-0000000d;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "401", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530014341.278", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530014347.328", "DialString": "ID730152@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.278", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730151", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.335", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730151", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.335", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730151", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.335", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730151", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "401", "LocalOneChannel": "Local/ID730151@osvpi_route_phoneaccount-0000000e;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31260010001", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "401", "LocalOneLanguage": "en", "LocalOneLinkedid": "f29ea68048f6-1530014341.278", "LocalOnePriority": "1", "LocalOneUniqueid": "f29ea68048f6-1530014347.333", "LocalOptimization": "Yes", "LocalTwoAccountCode": "150010001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31260010001", "LocalTwoChannel": "Local/ID730151@osvpi_route_phoneaccount-0000000e;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "401", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730151", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "f29ea68048f6-1530014341.278", "LocalTwoPriority": "1", "LocalTwoUniqueid": "f29ea68048f6-1530014347.335", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000017", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-0000000e;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "401", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530014341.278", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530014347.333", "DialString": "ID730151@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.278", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010002-00000019", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.338", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010002-00000019", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.338", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010002-00000019", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530014341.278", "OldAccountCode": "150010002", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.338", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010002-00000019", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.338", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "SIP/150010002-00000019", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "401", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530014341.278", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530014347.338", "DialString": "150010002/150010002/172.20.0.13!!0260010001", "Event": "DialBegin", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.335", "content": ""}, + {"AccountCode": "150010003", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010003-0000001a", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.341", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010003-0000001a", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.341", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010003-0000001a", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530014341.278", "OldAccountCode": "150010003", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.341", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010003-0000001a", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.341", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "SIP/150010003-0000001a", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "401", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530014341.278", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530014347.341", "DialString": "150010003/150010003/172.20.0.13!!0260010001", "Event": "DialBegin", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.330", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010003-0000001a", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.341", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000d;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.328", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010002-00000019", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.338", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000e;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.333", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010003-0000001a", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.341", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "SIP/150010003-0000001a", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530014341.278", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530014347.341", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.330", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000d;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.330", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.328", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000017", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-0000000e;1", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "401", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530014341.278", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530014347.333", "DialStatus": "CANCEL", "Event": "DialEnd", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.278", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "e8720be4-dd43-47f7-95f2-91a5a653bcfb", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "401", "Cause": "26", "Cause-txt": "Answered elsewhere", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000e;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.333", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "SIP/150010002-00000019", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "401", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530014341.278", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530014347.338", "DialStatus": "CANCEL", "Event": "DialEnd", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.335", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "401", "Cause": "26", "Cause-txt": "Answered elsewhere", "Channel": "SIP/150010002-00000019", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Hangup", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.338", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000017", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-0000000d;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530014341.278", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530014347.328", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.278", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "7513edaa-36c5-4fb3-8da0-bd1bee48cf53", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "e8720be4-dd43-47f7-95f2-91a5a653bcfb", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010003-0000001a", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.341", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "26", "Cause-txt": "Answered elsewhere", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.335", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "e8720be4-dd43-47f7-95f2-91a5a653bcfb", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000d;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.330", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "7513edaa-36c5-4fb3-8da0-bd1bee48cf53", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.328", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "7513edaa-36c5-4fb3-8da0-bd1bee48cf53", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000017", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.278", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "7513edaa-36c5-4fb3-8da0-bd1bee48cf53", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000017", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.278", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "e8720be4-dd43-47f7-95f2-91a5a653bcfb", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000d;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.330", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "e8720be4-dd43-47f7-95f2-91a5a653bcfb", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000017", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "12", "Privilege": "call,all", "SwapUniqueid": "f29ea68048f6-1530014347.330", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.278", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "7513edaa-36c5-4fb3-8da0-bd1bee48cf53", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.328", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "7513edaa-36c5-4fb3-8da0-bd1bee48cf53", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "401", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.328", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000000d;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.330", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "e8720be4-dd43-47f7-95f2-91a5a653bcfb", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010003-0000001a", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.341", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "e8720be4-dd43-47f7-95f2-91a5a653bcfb", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000017", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.278", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "401", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010003-0000001a", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014347.341", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "e8720be4-dd43-47f7-95f2-91a5a653bcfb", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/voipgrid-siproute-docker-00000017", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "f29ea68048f6-1530014341.278", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530014341.278", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "146e35de-db3e-4e8e-9478-51f5f96fa809", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""} ] diff --git a/tests/fixtures/xfer_blind/xfer_blind_group_no_answer.json b/tests/fixtures/xfer_blind/xfer_blind_group_no_answer.json index cfe72cf..a69dd96 100644 --- a/tests/fixtures/xfer_blind/xfer_blind_group_no_answer.json +++ b/tests/fixtures/xfer_blind/xfer_blind_group_no_answer.json @@ -1,709 +1,74 @@ [ - {"content": "", "Status": "Fully Booted", "Event": "FullyBooted", "Privilege": "system,all"}, - {"Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "Newchannel", "ChannelState": "0", "Context": "osvpi_account", "AccountCode": "150010002", "CallerIDNum": "150010002", "Exten": "204", "CallerIDName": "Bob", "Privilege": "call,all", "ChannelStateDesc": "Down", "content": ""}, - {"Value": "sip:150010002@10.13.36.116:5061", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "SIPURI", "content": ""}, - {"Value": "10.13.37.110", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "SIPDOMAIN", "content": ""}, - {"Value": "840cf2ec-1c73fb73@10.13.36.116", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "SIPCALLID", "content": ""}, - {"Value": "15001", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__client_id", "content": ""}, - {"Value": "150010002", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__account_id", "content": ""}, - {"Value": "no", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__record_call", "content": ""}, - {"Value": "31", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__intprefix", "content": ""}, - {"Value": "4", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__limit_account", "content": ""}, - {"Value": "0", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__limit_client", "content": ""}, - {"Value": "1", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__hide_ext_cliname", "content": ""}, - {"Value": "osvpi_account_transfer", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__TRANSFER_CONTEXT", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509119608.56", "content": "", "Channel": "SIP/150010002-00000017", "CallerIDNum": "150010002", "ChannelState": "4", "ConnectedLineNum": "", "ConnectedLineName": "", "ChannelStateDesc": "Ring", "Privilege": "call,all", "CallerIDName": "Bob", "Event": "Newstate"}, - {"Extension": "204", "Application": "ExecIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "0?GotoIf(0?osvpi_proc_hangup_insecure,204,1)", "Context": "osvpi_account", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "204", "Application": "Gosub", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "2", "Privilege": "dialplan,all", "AppData": "osvpi_proc_check_forwards,s,1", "Context": "osvpi_account", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "0", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARGC)", "content": ""}, - {"Extension": "s", "Application": "GotoIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "0?check,1", "Context": "osvpi_proc_check_forwards", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "s", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "2", "Privilege": "dialplan,all", "AppData": "LOCAL(tmp)=70", "Context": "osvpi_proc_check_forwards", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "70", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(tmp)", "content": ""}, - {"Extension": "s", "Application": "ExecIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "3", "Privilege": "dialplan,all", "AppData": "0?Goto(init,1)", "Context": "osvpi_proc_check_forwards", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "s", "Application": "ExecIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "4", "Privilege": "dialplan,all", "AppData": "1?Goto(init,1)", "Context": "osvpi_proc_check_forwards", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "init", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "MASTER_CHANNEL(SIP_MAX_FORWARDS)=16", "Context": "osvpi_proc_check_forwards", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "16", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "SIP_MAX_FORWARDS", "content": ""}, - {"Extension": "init", "Application": "NoOp", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "2", "Privilege": "dialplan,all", "AppData": "DEBUG: MaxForwards: initialized to: 16", "Context": "osvpi_proc_check_forwards", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "init", "Application": "Return", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "3", "Privilege": "dialplan,all", "AppData": "", "Context": "osvpi_proc_check_forwards", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "GOSUB_RETVAL", "content": ""}, - {"Extension": "204", "Application": "GotoIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "3", "Privilege": "dialplan,all", "AppData": "0?osvpi_account_transfer,204,1", "Context": "osvpi_account", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "204", "Application": "NoOp", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "4", "Privilege": "dialplan,all", "AppData": "ENTRY POINT username=150010002,ip=172.20.0.13/172.20.0.13,from=sip:150010002@10.13.37.110,contact=sip:150010002@10.13.36.116:5061,ua=Cisco/SPA504G-7.5.3,name=Bob,num=150010002,pres=allowed_not_screened", "Context": "osvpi_account", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "204", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "5", "Privilege": "dialplan,all", "AppData": "is_transfer=0", "Context": "osvpi_account", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "0", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "is_transfer", "content": ""}, - {"Extension": "204", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "6", "Privilege": "dialplan,all", "AppData": "CDR(amaflags)=BILLING", "Context": "osvpi_account", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "204", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "7", "Privilege": "dialplan,all", "AppData": "user_privacy=0", "Context": "osvpi_account", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "0", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "user_privacy", "content": ""}, - {"Extension": "204", "Application": "ExecIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "8", "Privilege": "dialplan,all", "AppData": "1?Set(__supports_progress=1)", "Context": "osvpi_account", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "1", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__supports_progress", "content": ""}, - {"Extension": "204", "Application": "Gosub", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "9", "Privilege": "dialplan,all", "AppData": "osvpi_proc_record_call,s-no,1(out,15001,150010002)", "Context": "osvpi_account", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "out", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG1)", "content": ""}, - {"Value": "15001", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG2)", "content": ""}, - {"Value": "150010002", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG3)", "content": ""}, - {"Value": "3", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARGC)", "content": ""}, - {"Extension": "s-no", "Application": "Return", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "", "Context": "osvpi_proc_record_call", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "GOSUB_RETVAL", "content": ""}, - {"Extension": "204", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "10", "Privilege": "dialplan,all", "AppData": "l_tmp=", "Context": "osvpi_account", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "l_tmp", "content": ""}, - {"Extension": "204", "Application": "ExecIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "11", "Privilege": "dialplan,all", "AppData": "1?Set(l_tmp=)", "Context": "osvpi_account", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "l_tmp", "content": ""}, - {"Extension": "204", "Application": "GotoIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "12", "Privilege": "dialplan,all", "AppData": "1?checkprivacy", "Context": "osvpi_account", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "204", "Application": "ExecIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "16", "Privilege": "dialplan,all", "AppData": "0?Set(CALLERID(pres)=allowed_passed_screen)", "Context": "osvpi_account", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "204", "Application": "ExecIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "17", "Privilege": "dialplan,all", "AppData": "0?Set(CALLERID(pres)=prohib_passed_screen)", "Context": "osvpi_account", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "204", "Application": "ExecIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "18", "Privilege": "dialplan,all", "AppData": "0?Set(CHANNEL(musicclass)=)", "Context": "osvpi_account", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "204", "Application": "GotoIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "19", "Privilege": "dialplan,all", "AppData": "1?continue", "Context": "osvpi_account", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "204", "Application": "Gosub", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "22", "Privilege": "dialplan,all", "AppData": "osvpi_proc_set_i18n_region,31,1", "Context": "osvpi_account", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "0", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARGC)", "content": ""}, - {"Extension": "31", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "i18n_region=NL", "Context": "osvpi_proc_set_i18n_region", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "NL", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "i18n_region", "content": ""}, - {"Extension": "31", "Application": "Return", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "2", "Privilege": "dialplan,all", "AppData": "", "Context": "osvpi_proc_set_i18n_region", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "GOSUB_RETVAL", "content": ""}, - {"Extension": "204", "Application": "Goto", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "23", "Privilege": "dialplan,all", "AppData": "osvpi_account_emergency_NL,204,1", "Context": "osvpi_account", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "204", "Application": "Goto", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "osvpi_account_no_emergency,204,1", "Context": "osvpi_account_emergency_NL", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "204", "Application": "Goto", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "osvpi_account,204,no-emergency", "Context": "osvpi_account_no_emergency", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "204", "Application": "Goto", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "24", "Privilege": "dialplan,all", "AppData": "osvpi_account_clean,204,1", "Context": "osvpi_account", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "204", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "return=osvpi_account_clean", "Context": "osvpi_account_clean", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "osvpi_account_clean", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "return", "content": ""}, - {"Extension": "204", "Application": "Goto", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "2", "Privilege": "dialplan,all", "AppData": "osvpi_return_to_canonical,31i204,1", "Context": "osvpi_account_clean", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "31i204", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "INVALID_EXTEN", "content": ""}, - {"Extension": "i", "Application": "Goto", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "osvpi_account_clean,204,local", "Context": "osvpi_return_to_canonical", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "204", "Application": "GotoIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "3", "Privilege": "dialplan,all", "AppData": "0?extern", "Context": "osvpi_account_clean", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "204", "Application": "Gosub", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "4", "Privilege": "dialplan,all", "AppData": "osvpi_proc_set_callerid,204,1(150010002,0,0)", "Context": "osvpi_account_clean", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "150010002", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG1)", "content": ""}, - {"Value": "0", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG2)", "content": ""}, - {"Value": "0", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG3)", "content": ""}, - {"Value": "3", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARGC)", "content": ""}, - {"Extension": "204", "Application": "GotoIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "0?done", "Context": "osvpi_proc_set_callerid", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "1", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCROWS", "content": ""}, - {"Value": "SUCCESS", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCSTATUS", "content": ""}, - {"Value": "set,privacy,name,number_int,number_ext", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "~ODBCFIELDS~", "content": ""}, - {"Extension": "204", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "2", "Privilege": "dialplan,all", "AppData": "ARRAY(LOCAL(set),LOCAL(privacy),LOCAL(name),LOCAL(number_int),LOCAL(number_ext))=1,0,David Meadows,202,+31150010002", "Context": "osvpi_proc_set_callerid", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "1", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(set)", "content": ""}, - {"Value": "0", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(privacy)", "content": ""}, - {"Value": "David Meadows", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(name)", "content": ""}, - {"Value": "202", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(number_int)", "content": ""}, - {"Value": "+31150010002", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(number_ext)", "content": ""}, - {"Extension": "204", "Application": "GotoIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "3", "Privilege": "dialplan,all", "AppData": "0?presentation", "Context": "osvpi_proc_set_callerid", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "204", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "4", "Privilege": "dialplan,all", "AppData": "CALLERID(pres)=allowed_passed_screen", "Context": "osvpi_proc_set_callerid", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "204", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "5", "Privilege": "dialplan,all", "AppData": "CALLERID(name)=David Meadows", "Context": "osvpi_proc_set_callerid", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "CallerIDNum": "150010002", "Privilege": "call,all", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "content": "", "CallerIDName": "David Meadows", "Event": "NewCallerid"}, - {"Extension": "204", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "6", "Privilege": "dialplan,all", "AppData": "CALLERID(num)=202", "Context": "osvpi_proc_set_callerid", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "CallerIDNum": "202", "Privilege": "call,all", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "content": "", "CallerIDName": "David Meadows", "Event": "NewCallerid"}, - {"Extension": "204", "Application": "ExecIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "7", "Privilege": "dialplan,all", "AppData": "0?Set(CALLERID(pres)=prohib_passed_screen)", "Context": "osvpi_proc_set_callerid", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "204", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "8", "Privilege": "dialplan,all", "AppData": "CALLERID(ANI)=202", "Context": "osvpi_proc_set_callerid", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "204", "Application": "Gosub", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "9", "Privilege": "dialplan,all", "AppData": "osvpi_proc_set_callerid_internal,204,1", "Context": "osvpi_proc_set_callerid", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG1)", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG2)", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG3)", "content": ""}, - {"Value": "0", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARGC)", "content": ""}, - {"Extension": "204", "Application": "GotoIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "1?nop", "Context": "osvpi_proc_set_callerid_internal", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "204", "Application": "ExecIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "5", "Privilege": "dialplan,all", "AppData": "0?Set(CALLERID(ANI)=20)", "Context": "osvpi_proc_set_callerid_internal", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "204", "Application": "Return", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "6", "Privilege": "dialplan,all", "AppData": "", "Context": "osvpi_proc_set_callerid_internal", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "GOSUB_RETVAL", "content": ""}, - {"Extension": "204", "Application": "Return", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "10", "Privilege": "dialplan,all", "AppData": "", "Context": "osvpi_proc_set_callerid", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "GOSUB_RETVAL", "content": ""}, - {"Extension": "204", "Application": "GotoIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "5", "Privilege": "dialplan,all", "AppData": "3?osvpi_account_call_int,204,1:i,1", "Context": "osvpi_account_clean", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "204", "Application": "Gosub", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "osvpi_proc_check_limits,204,1", "Context": "osvpi_account_call_int", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "0", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARGC)", "content": ""}, - {"Extension": "204", "Application": "NoOp", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "DEBUG: call_limit: client 0/0 and account 0/4", "Context": "osvpi_proc_check_limits", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "204", "Application": "GotoIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "2", "Privilege": "dialplan,all", "AppData": "0?osvpi_handle_limit,204,client", "Context": "osvpi_proc_check_limits", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "204", "Application": "GotoIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "3", "Privilege": "dialplan,all", "AppData": "0?osvpi_handle_limit,204,account", "Context": "osvpi_proc_check_limits", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "204", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "4", "Privilege": "dialplan,all", "AppData": "GROUP(account_lim)=150010002", "Context": "osvpi_proc_check_limits", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "204", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "5", "Privilege": "dialplan,all", "AppData": "GROUP(client_lim)=15001", "Context": "osvpi_proc_check_limits", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "204", "Application": "Return", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "6", "Privilege": "dialplan,all", "AppData": "", "Context": "osvpi_proc_check_limits", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "GOSUB_RETVAL", "content": ""}, - {"Extension": "204", "Application": "Gosub", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "2", "Privilege": "dialplan,all", "AppData": "osvpi_proc_check_recurse,204,1(15001)", "Context": "osvpi_account_call_int", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "15001", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG1)", "content": ""}, - {"Value": "1", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARGC)", "content": ""}, - {"Extension": "204", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "LOCAL(exten)=15001:204", "Context": "osvpi_proc_check_recurse", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "15001:204", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(exten)", "content": ""}, - {"Extension": "204", "Application": "NoOp", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "2", "Privilege": "dialplan,all", "AppData": "Recursion checking 15001:204 against ", "Context": "osvpi_proc_check_recurse", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "204", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "3", "Privilege": "dialplan,all", "AppData": "LOCAL(n)=0", "Context": "osvpi_proc_check_recurse", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "0", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(n)", "content": ""}, - {"Extension": "204", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "4", "Privilege": "dialplan,all", "AppData": "LOCAL(i)=1", "Context": "osvpi_proc_check_recurse", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "1", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(i)", "content": ""}, - {"Extension": "204", "Application": "GotoIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "5", "Privilege": "dialplan,all", "AppData": "1?add", "Context": "osvpi_proc_check_recurse", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "204", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "9", "Privilege": "dialplan,all", "AppData": "__EXTEN_LIST=15001:204 ", "Context": "osvpi_proc_check_recurse", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "15001:204 ", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__EXTEN_LIST", "content": ""}, - {"Extension": "204", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "10", "Privilege": "dialplan,all", "AppData": "__EXTEN_LIST_LAST_EDIT_TIME=1509119608", "Context": "osvpi_proc_check_recurse", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "1509119608", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__EXTEN_LIST_LAST_EDIT_TIME", "content": ""}, - {"Extension": "204", "Application": "Return", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "11", "Privilege": "dialplan,all", "AppData": "", "Context": "osvpi_proc_check_recurse", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "GOSUB_RETVAL", "content": ""}, - {"Extension": "204", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "3", "Privilege": "dialplan,all", "AppData": "__ORIG_EXTEN=204", "Context": "osvpi_account_call_int", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "204", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__ORIG_EXTEN", "content": ""}, - {"Value": "0", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCROWS", "content": ""}, - {"Value": "NODATA", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCSTATUS", "content": ""}, - {"Extension": "204", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "4", "Privilege": "dialplan,all", "AppData": "ARRAY(conference_id,user_password,admin_password,conference_language)=", "Context": "osvpi_account_call_int", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "conference_id", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "user_password", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "admin_password", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "conference_language", "content": ""}, - {"Extension": "204", "Application": "GotoIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "5", "Privilege": "dialplan,all", "AppData": "0?osvpi_route_conference,ID,1", "Context": "osvpi_account_call_int", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "0", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCROWS", "content": ""}, - {"Value": "NODATA", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCSTATUS", "content": ""}, - {"Extension": "204", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "6", "Privilege": "dialplan,all", "AppData": "ARRAY(route_id,client_timezone)=", "Context": "osvpi_account_call_int", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "route_id", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "client_timezone", "content": ""}, - {"Extension": "204", "Application": "GotoIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "7", "Privilege": "dialplan,all", "AppData": "0?osvpi_route_root,204,restart", "Context": "osvpi_account_call_int", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "0", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCROWS", "content": ""}, - {"Value": "NODATA", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCSTATUS", "content": ""}, - {"Extension": "204", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "8", "Privilege": "dialplan,all", "AppData": "ARRAY(all_extensions,limited_extensions,password,account_spy_language)=", "Context": "osvpi_account_call_int", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "all_extensions", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "limited_extensions", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "password", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "account_spy_language", "content": ""}, - {"Extension": "204", "Application": "GotoIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "9", "Privilege": "dialplan,all", "AppData": "0?osvpi_account_spy,204,1", "Context": "osvpi_account_call_int", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "1", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCROWS", "content": ""}, - {"Value": "SUCCESS", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCSTATUS", "content": ""}, - {"Value": "interfaces", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "~ODBCFIELDS~", "content": ""}, - {"Extension": "204", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "10", "Privilege": "dialplan,all", "AppData": "ARRAY(interfaces)=Local/ID690153@osvpi_route_phoneaccount", "Context": "osvpi_account_call_int", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "Local/ID690153@osvpi_route_phoneaccount", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "interfaces", "content": ""}, - {"Extension": "204", "Application": "GotoIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "11", "Privilege": "dialplan,all", "AppData": "0?osvpi_handle_unallocated,204,1", "Context": "osvpi_account_call_int", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "204", "Application": "Dial", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "12", "Privilege": "dialplan,all", "AppData": "Local/ID690153@osvpi_route_phoneaccount", "Context": "osvpi_account_call_int", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "DIALSTATUS", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "DIALEDPEERNUMBER", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "DIALEDPEERNAME", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ANSWEREDTIME", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "DIALEDTIME", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509119608.57", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;1", "Event": "Newchannel", "ChannelState": "0", "Context": "osvpi_route_phoneaccount", "AccountCode": "", "CallerIDNum": "", "Exten": "ID690153", "CallerIDName": "", "Privilege": "call,all", "ChannelStateDesc": "Down", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "Newchannel", "ChannelState": "4", "Context": "osvpi_route_phoneaccount", "AccountCode": "", "CallerIDNum": "", "Exten": "ID690153", "CallerIDName": "", "Privilege": "call,all", "ChannelStateDesc": "Ring", "content": ""}, - {"Value": "ID690153@osvpi_route_phoneaccount", "Uniqueid": "0f00dcaa884f-1509119608.57", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;1", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "DIALEDPEERNUMBER", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509119608.57", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;1", "CallerIDNum": "204", "Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": "", "CallerIDName": "", "Event": "NewCallerid"}, - {"Uniqueid1": "0f00dcaa884f-1509119608.57", "Channel1": "Local/ID690153@osvpi_route_phoneaccount-00000010;1", "content": "", "Privilege": "call,all", "Channel2": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Context": "osvpi_route_phoneaccount", "LocalOptimization": "Yes", "Uniqueid2": "0f00dcaa884f-1509119608.58", "Exten": "ID690153", "Event": "LocalBridge"}, - {"DestUniqueID": "0f00dcaa884f-1509119608.57", "Channel": "SIP/150010002-00000017", "Event": "Dial", "Destination": "Local/ID690153@osvpi_route_phoneaccount-00000010;1", "UniqueID": "0f00dcaa884f-1509119608.56", "Dialstring": "ID690153@osvpi_route_phoneaccount", "CallerIDName": "David Meadows", "Privilege": "call,all", "content": "", "ConnectedLineName": "", "SubEvent": "Begin", "ConnectedLineNum": "", "CallerIDNum": "202"}, - {"Value": "1", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCROWS", "content": ""}, - {"Value": "SUCCESS", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCSTATUS", "content": ""}, - {"Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "~ODBCFIELDS~", "content": ""}, - {"Extension": "ID690153", "Application": "Set", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=150010004,accountid,dutch,from,,0", "Context": "osvpi_route_phoneaccount", "Uniqueid": "0f00dcaa884f-1509119608.58", "content": ""}, - {"Value": "150010004", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__dst_account_id", "content": ""}, - {"Value": "accountid", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "l_mangle_did", "content": ""}, - {"Value": "dutch", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "l_mangle_cli", "content": ""}, - {"Value": "from", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "l_cli_header", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "l_primary_pickupgroup", "content": ""}, - {"Value": "0", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "app_account", "content": ""}, - {"Extension": "ID690153", "Application": "GotoIf", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "Newexten", "Priority": "2", "Privilege": "dialplan,all", "AppData": "0?vialer", "Context": "osvpi_route_phoneaccount", "Uniqueid": "0f00dcaa884f-1509119608.58", "content": ""}, - {"Extension": "ID690153", "Application": "Set", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "Newexten", "Priority": "3", "Privilege": "dialplan,all", "AppData": "_PICKUPMARK=", "Context": "osvpi_route_phoneaccount", "Uniqueid": "0f00dcaa884f-1509119608.58", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "_PICKUPMARK", "content": ""}, - {"Extension": "ID690153", "Application": "Set", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "Newexten", "Priority": "4", "Privilege": "dialplan,all", "AppData": "l_trunk=0", "Context": "osvpi_route_phoneaccount", "Uniqueid": "0f00dcaa884f-1509119608.58", "content": ""}, - {"Value": "0", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "l_trunk", "content": ""}, - {"Extension": "ID690153", "Application": "Goto", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "Newexten", "Priority": "5", "Privilege": "dialplan,all", "AppData": "osvpi_route_account,ID690153,1", "Context": "osvpi_route_phoneaccount", "Uniqueid": "0f00dcaa884f-1509119608.58", "content": ""}, - {"Value": "1", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCROWS", "content": ""}, - {"Value": "SUCCESS", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCSTATUS", "content": ""}, - {"Value": "proxy", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "~ODBCFIELDS~", "content": ""}, - {"Extension": "ID690153", "Application": "Set", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "ARRAY(l_proxy)=172.20.0.13", "Context": "osvpi_route_account", "Uniqueid": "0f00dcaa884f-1509119608.58", "content": ""}, - {"Value": "172.20.0.13", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "l_proxy", "content": ""}, - {"Extension": "ID690153", "Application": "Gosub", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "Newexten", "Priority": "2", "Privilege": "dialplan,all", "AppData": "osvpi_proc_mangle_number,accountid,1(150010004,204)", "Context": "osvpi_route_account", "Uniqueid": "0f00dcaa884f-1509119608.58", "content": ""}, - {"Value": "150010004", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG1)", "content": ""}, - {"Value": "204", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG2)", "content": ""}, - {"Value": "2", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARGC)", "content": ""}, - {"Extension": "accountid", "Application": "Set", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "MANGLED_EXTEN=150010004", "Context": "osvpi_proc_mangle_number", "Uniqueid": "0f00dcaa884f-1509119608.58", "content": ""}, - {"Value": "150010004", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "MANGLED_EXTEN", "content": ""}, - {"Extension": "accountid", "Application": "Return", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "Newexten", "Priority": "2", "Privilege": "dialplan,all", "AppData": "", "Context": "osvpi_proc_mangle_number", "Uniqueid": "0f00dcaa884f-1509119608.58", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "GOSUB_RETVAL", "content": ""}, - {"Extension": "ID690153", "Application": "Set", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "Newexten", "Priority": "3", "Privilege": "dialplan,all", "AppData": "l_did=150010004", "Context": "osvpi_route_account", "Uniqueid": "0f00dcaa884f-1509119608.58", "content": ""}, - {"Value": "150010004", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "l_did", "content": ""}, - {"Extension": "ID690153", "Application": "Gosub", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "Newexten", "Priority": "4", "Privilege": "dialplan,all", "AppData": "osvpi_proc_mangle_number,dutch,1(150010004,202)", "Context": "osvpi_route_account", "Uniqueid": "0f00dcaa884f-1509119608.58", "content": ""}, - {"Value": "150010004", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG1)", "content": ""}, - {"Value": "202", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG2)", "content": ""}, - {"Value": "2", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARGC)", "content": ""}, - {"Extension": "dutch", "Application": "GotoIf", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "1?fullzero,1", "Context": "osvpi_proc_mangle_number", "Uniqueid": "0f00dcaa884f-1509119608.58", "content": ""}, - {"Extension": "fullzero", "Application": "Set", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "MANGLED_EXTEN=202", "Context": "osvpi_proc_mangle_number", "Uniqueid": "0f00dcaa884f-1509119608.58", "content": ""}, - {"Value": "202", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "MANGLED_EXTEN", "content": ""}, - {"Extension": "fullzero", "Application": "Return", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "Newexten", "Priority": "2", "Privilege": "dialplan,all", "AppData": "", "Context": "osvpi_proc_mangle_number", "Uniqueid": "0f00dcaa884f-1509119608.58", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "GOSUB_RETVAL", "content": ""}, - {"Extension": "ID690153", "Application": "Set", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "Newexten", "Priority": "5", "Privilege": "dialplan,all", "AppData": "l_mangle_cli_hdr=from-dutch", "Context": "osvpi_route_account", "Uniqueid": "0f00dcaa884f-1509119608.58", "content": ""}, - {"Value": "from-dutch", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "l_mangle_cli_hdr", "content": ""}, - {"Extension": "ID690153", "Application": "Set", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "Newexten", "Priority": "6", "Privilege": "dialplan,all", "AppData": "l_fromuser=", "Context": "osvpi_route_account", "Uniqueid": "0f00dcaa884f-1509119608.58", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "l_fromuser", "content": ""}, - {"Extension": "ID690153", "Application": "ExecIf", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "Newexten", "Priority": "7", "Privilege": "dialplan,all", "AppData": "1?Set(l_fromuser=202)", "Context": "osvpi_route_account", "Uniqueid": "0f00dcaa884f-1509119608.58", "content": ""}, - {"Value": "202", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "l_fromuser", "content": ""}, - {"Value": "1", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCROWS", "content": ""}, - {"Value": "SUCCESS", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCSTATUS", "content": ""}, - {"Value": "IF((SELECT 1 FROM baseaccount_account ba INNER JOIN userdestination_selecteduserdestination udsud ON udsud.phoneaccount_id = ba.id INNER JOIN userdestination_userdestination udud ON udud.id = udsud.userdestination_id INNER JOIN crm_cloudctiuser cccu O", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "~ODBCFIELDS~", "content": ""}, - {"Extension": "ID690153", "Application": "Set", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "Newexten", "Priority": "8", "Privilege": "dialplan,all", "AppData": "ARRAY(cloudcti)=0", "Context": "osvpi_route_account", "Uniqueid": "0f00dcaa884f-1509119608.58", "content": ""}, - {"Value": "0", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "cloudcti", "content": ""}, - {"Extension": "ID690153", "Application": "GotoIf", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "Newexten", "Priority": "9", "Privilege": "dialplan,all", "AppData": "1?skipcloudcti", "Context": "osvpi_route_account", "Uniqueid": "0f00dcaa884f-1509119608.58", "content": ""}, - {"Value": "1", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCROWS", "content": ""}, - {"Value": "SUCCESS", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCSTATUS", "content": ""}, - {"Value": "GROUP_CONCAT(DISTINCT(csw.url) SEPARATOR ' '),internal_number,GROUP_CONCAT(DISTINCT(ud.internal_number) SEPARATOR ' ')", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "~ODBCFIELDS~", "content": ""}, - {"Extension": "ID690153", "Application": "Set", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "Newexten", "Priority": "11", "Privilege": "dialplan,all", "AppData": "ARRAY(webhooks,accountinternalnumber,userinternalnumbers)=,204,", "Context": "osvpi_route_account", "Uniqueid": "0f00dcaa884f-1509119608.58", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "webhooks", "content": ""}, - {"Value": "204", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "accountinternalnumber", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "userinternalnumbers", "content": ""}, - {"Extension": "ID690153", "Application": "Goto", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "Newexten", "Priority": "13", "Privilege": "dialplan,all", "AppData": "osvpi_proc_proxy_out,204,1", "Context": "osvpi_route_account", "Uniqueid": "0f00dcaa884f-1509119608.58", "content": ""}, - {"Extension": "204", "Application": "SIPAddHeader", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "X-Accountcode: 150010004", "Context": "osvpi_proc_proxy_out", "Uniqueid": "0f00dcaa884f-1509119608.58", "content": ""}, - {"Value": "X-Accountcode: 150010004", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__SIPADDHEADER01", "content": ""}, - {"Extension": "204", "Application": "SIPAddHeader", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "Newexten", "Priority": "2", "Privilege": "dialplan,all", "AppData": "X-Insecure-Protection: geheim", "Context": "osvpi_proc_proxy_out", "Uniqueid": "0f00dcaa884f-1509119608.58", "content": ""}, - {"Value": "X-Insecure-Protection: geheim", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__SIPADDHEADER02", "content": ""}, - {"Extension": "204", "Application": "SIPAddHeader", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "Newexten", "Priority": "3", "Privilege": "dialplan,all", "AppData": "X-Mangle-Cli: from-dutch", "Context": "osvpi_proc_proxy_out", "Uniqueid": "0f00dcaa884f-1509119608.58", "content": ""}, - {"Value": "X-Mangle-Cli: from-dutch", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__SIPADDHEADER03", "content": ""}, - {"Extension": "204", "Application": "Set", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "Newexten", "Priority": "4", "Privilege": "dialplan,all", "AppData": "_dial_options_callaccept=", "Context": "osvpi_proc_proxy_out", "Uniqueid": "0f00dcaa884f-1509119608.58", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "_dial_options_callaccept", "content": ""}, - {"Extension": "204", "Application": "Set", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "Newexten", "Priority": "5", "Privilege": "dialplan,all", "AppData": "_dial_options_callnotify=", "Context": "osvpi_proc_proxy_out", "Uniqueid": "0f00dcaa884f-1509119608.58", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "_dial_options_callnotify", "content": ""}, - {"Extension": "204", "Application": "ExecIf", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "Newexten", "Priority": "6", "Privilege": "dialplan,all", "AppData": "0?Set(l_proxy=opensipsfg)", "Context": "osvpi_proc_proxy_out", "Uniqueid": "0f00dcaa884f-1509119608.58", "content": ""}, - {"Extension": "204", "Application": "Set", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "Newexten", "Priority": "7", "Privilege": "dialplan,all", "AppData": "l_extra_options=", "Context": "osvpi_proc_proxy_out", "Uniqueid": "0f00dcaa884f-1509119608.58", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "l_extra_options", "content": ""}, - {"Extension": "204", "Application": "Dial", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "Newexten", "Priority": "8", "Privilege": "dialplan,all", "AppData": "SIP/150010004/150010004/172.20.0.13!!202,,", "Context": "osvpi_proc_proxy_out", "Uniqueid": "0f00dcaa884f-1509119608.58", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "DIALSTATUS", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "DIALEDPEERNUMBER", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "DIALEDPEERNAME", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ANSWEREDTIME", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "DIALEDTIME", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509119608.59", "Channel": "SIP/150010004-00000018", "Event": "Newchannel", "ChannelState": "0", "Context": "osvpi_account", "AccountCode": "150010004", "CallerIDNum": "", "Exten": "", "CallerIDName": "", "Privilege": "call,all", "ChannelStateDesc": "Down", "content": ""}, - {"Value": "0c8ab5c82eb9bdd842306021458380d1@test.voipgrid.nl", "Uniqueid": "0f00dcaa884f-1509119608.59", "Channel": "SIP/150010004-00000018", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "SIPCALLID", "content": ""}, - {"Value": "15001", "Uniqueid": "0f00dcaa884f-1509119608.59", "Channel": "SIP/150010004-00000018", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__client_id", "content": ""}, - {"Value": "150010004", "Uniqueid": "0f00dcaa884f-1509119608.59", "Channel": "SIP/150010004-00000018", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__account_id", "content": ""}, - {"Value": "no", "Uniqueid": "0f00dcaa884f-1509119608.59", "Channel": "SIP/150010004-00000018", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__record_call", "content": ""}, - {"Value": "31", "Uniqueid": "0f00dcaa884f-1509119608.59", "Channel": "SIP/150010004-00000018", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__intprefix", "content": ""}, - {"Value": "4", "Uniqueid": "0f00dcaa884f-1509119608.59", "Channel": "SIP/150010004-00000018", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__limit_account", "content": ""}, - {"Value": "0", "Uniqueid": "0f00dcaa884f-1509119608.59", "Channel": "SIP/150010004-00000018", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__limit_client", "content": ""}, - {"Value": "1", "Uniqueid": "0f00dcaa884f-1509119608.59", "Channel": "SIP/150010004-00000018", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__hide_ext_cliname", "content": ""}, - {"Value": "osvpi_account_transfer", "Uniqueid": "0f00dcaa884f-1509119608.59", "Channel": "SIP/150010004-00000018", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__TRANSFER_CONTEXT", "content": ""}, - {"Value": "150010004/150010004/172.20.0.13!!202", "Uniqueid": "0f00dcaa884f-1509119608.59", "Channel": "SIP/150010004-00000018", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "DIALEDPEERNUMBER", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509119608.59", "Channel": "SIP/150010004-00000018", "CallerIDNum": "204", "Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": "", "CallerIDName": "", "Event": "NewCallerid"}, - {"DestUniqueID": "0f00dcaa884f-1509119608.59", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "Dial", "Destination": "SIP/150010004-00000018", "UniqueID": "0f00dcaa884f-1509119608.58", "Dialstring": "150010004/150010004/172.20.0.13!!202", "CallerIDName": "David Meadows", "Privilege": "call,all", "content": "", "ConnectedLineName": "", "SubEvent": "Begin", "ConnectedLineNum": "204", "CallerIDNum": "202"}, - {"Uniqueid": "0f00dcaa884f-1509119608.59", "content": "", "Channel": "SIP/150010004-00000018", "CallerIDNum": "204", "ChannelState": "5", "ConnectedLineNum": "202", "ConnectedLineName": "David Meadows", "ChannelStateDesc": "Ringing", "Privilege": "call,all", "CallerIDName": "", "Event": "Newstate"}, - {"Uniqueid": "0f00dcaa884f-1509119608.57", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;1", "CallerIDNum": "204", "ChannelState": "5", "ConnectedLineNum": "202", "ConnectedLineName": "David Meadows", "ChannelStateDesc": "Ringing", "Privilege": "call,all", "CallerIDName": "", "Event": "Newstate"}, - {"Uniqueid": "0f00dcaa884f-1509119608.59", "content": "", "Channel": "SIP/150010004-00000018", "CallerIDNum": "204", "ChannelState": "6", "ConnectedLineNum": "202", "ConnectedLineName": "David Meadows", "ChannelStateDesc": "Up", "Privilege": "call,all", "CallerIDName": "", "Event": "Newstate"}, - {"Value": "ANSWER", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "DIALSTATUS", "content": ""}, - {"Value": "SIP/150010004-00000018", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "DIALEDPEERNAME", "content": ""}, - {"Value": "150010004/150010004/172.20.0.13!!202", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "DIALEDPEERNUMBER", "content": ""}, - {"Value": "SIP/150010004-00000018", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "content": ""}, - {"Value": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Uniqueid": "0f00dcaa884f-1509119608.59", "Channel": "SIP/150010004-00000018", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509119608.58", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "CallerIDNum": "202", "ChannelState": "6", "ConnectedLineNum": "204", "ConnectedLineName": "", "ChannelStateDesc": "Up", "Privilege": "call,all", "CallerIDName": "David Meadows", "Event": "Newstate"}, - {"Uniqueid": "0f00dcaa884f-1509119608.57", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;1", "CallerIDNum": "204", "ChannelState": "6", "ConnectedLineNum": "202", "ConnectedLineName": "David Meadows", "ChannelStateDesc": "Up", "Privilege": "call,all", "CallerIDName": "", "Event": "Newstate"}, - {"Value": "ANSWER", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "DIALSTATUS", "content": ""}, - {"Value": "Local/ID690153@osvpi_route_phoneaccount-00000010;1", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "DIALEDPEERNAME", "content": ""}, - {"Value": "ID690153@osvpi_route_phoneaccount", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "DIALEDPEERNUMBER", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509119608.59", "Privilege": "call,all", "Channel": "SIP/150010004-00000018", "Event": "NewAccountCode", "OldAccountCode": "150010002", "AccountCode": "150010002", "content": ""}, - {"Value": "Local/ID690153@osvpi_route_phoneaccount-00000010;1", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "content": ""}, - {"Value": "SIP/150010002-00000017", "Uniqueid": "0f00dcaa884f-1509119608.57", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;1", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509119608.56", "content": "", "Channel": "SIP/150010002-00000017", "CallerIDNum": "202", "ChannelState": "6", "ConnectedLineNum": "", "ConnectedLineName": "", "ChannelStateDesc": "Up", "Privilege": "call,all", "CallerIDName": "David Meadows", "Event": "Newstate"}, - {"Bridgetype": "core", "CallerID1": "202", "Channel1": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "content": "", "Privilege": "call,all", "Channel2": "SIP/150010004-00000018", "Bridgestate": "Link", "Uniqueid2": "0f00dcaa884f-1509119608.59", "Uniqueid1": "0f00dcaa884f-1509119608.58", "CallerID2": "204", "Event": "Bridge"}, - {"Value": "SIP/150010004-00000018", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "content": ""}, - {"Value": "0c8ab5c82eb9bdd842306021458380d1@test.voipgrid.nl", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "BRIDGEPVTCALLID", "content": ""}, - {"Value": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Uniqueid": "0f00dcaa884f-1509119608.59", "Channel": "SIP/150010004-00000018", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "content": ""}, - {"Value": "SIP/150010004-00000018", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "content": ""}, - {"Value": "0c8ab5c82eb9bdd842306021458380d1@test.voipgrid.nl", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "BRIDGEPVTCALLID", "content": ""}, - {"Value": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Uniqueid": "0f00dcaa884f-1509119608.59", "Channel": "SIP/150010004-00000018", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509119608.57", "Privilege": "call,all", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;1", "Event": "NewAccountCode", "OldAccountCode": "150010002", "AccountCode": "150010002", "content": ""}, - {"Bridgetype": "core", "CallerID1": "202", "Channel1": "SIP/150010002-00000017", "content": "", "Privilege": "call,all", "Channel2": "Local/ID690153@osvpi_route_phoneaccount-00000010;1", "Bridgestate": "Link", "Uniqueid2": "0f00dcaa884f-1509119608.57", "Uniqueid1": "0f00dcaa884f-1509119608.56", "CallerID2": "204", "Event": "Bridge"}, - {"Value": "Local/ID690153@osvpi_route_phoneaccount-00000010;1", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "content": ""}, - {"Value": "SIP/150010002-00000017", "Uniqueid": "0f00dcaa884f-1509119608.57", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;1", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "content": ""}, - {"Value": "840cf2ec-1c73fb73@10.13.36.116", "Uniqueid": "0f00dcaa884f-1509119608.57", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;1", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "BRIDGEPVTCALLID", "content": ""}, - {"Value": "Local/ID690153@osvpi_route_phoneaccount-00000010;1", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "content": ""}, - {"Value": "SIP/150010002-00000017", "Uniqueid": "0f00dcaa884f-1509119608.57", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;1", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "content": ""}, - {"Value": "840cf2ec-1c73fb73@10.13.36.116", "Uniqueid": "0f00dcaa884f-1509119608.57", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;1", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "BRIDGEPVTCALLID", "content": ""}, - {"CloneState": "Up", "Event": "Masquerade", "Clone": "SIP/150010004-00000018", "Privilege": "call,all", "OriginalState": "Up", "Original": "Local/ID690153@osvpi_route_phoneaccount-00000010;1", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509119608.59", "Channel": "SIP/150010004-00000018", "Event": "Rename", "Privilege": "call,all", "Newname": "SIP/150010004-00000018", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509119608.57", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;1", "Event": "Rename", "Privilege": "call,all", "Newname": "SIP/150010004-00000018", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509119608.59", "Channel": "SIP/150010004-00000018", "Event": "Rename", "Privilege": "call,all", "Newname": "Local/ID690153@osvpi_route_phoneaccount-00000010;1", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509119608.57", "Channel": "SIP/150010004-00000018", "CallerIDNum": "204", "Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": "", "CallerIDName": "", "Event": "NewCallerid"}, - {"Bridgetype": "core", "CallerID1": "202", "Channel1": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "content": "", "Privilege": "call,all", "Channel2": "Local/ID690153@osvpi_route_phoneaccount-00000010;1", "Bridgestate": "Unlink", "Uniqueid2": "0f00dcaa884f-1509119608.59", "Uniqueid1": "0f00dcaa884f-1509119608.58", "CallerID2": "204", "Event": "Bridge"}, - {"Value": "0", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ANSWEREDTIME", "content": ""}, - {"Value": "SIP/150010004-00000018", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "content": ""}, - {"Value": "1", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "DIALEDTIME", "content": ""}, - {"Value": "0c8ab5c82eb9bdd842306021458380d1@test.voipgrid.nl", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "BRIDGEPVTCALLID", "content": ""}, - {"Value": "SIP/150010002-00000017", "Uniqueid": "0f00dcaa884f-1509119608.57", "Channel": "SIP/150010004-00000018", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "BRIDGEPEER", "content": ""}, - {"Value": "840cf2ec-1c73fb73@10.13.36.116", "Uniqueid": "0f00dcaa884f-1509119608.57", "Channel": "SIP/150010004-00000018", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "BRIDGEPVTCALLID", "content": ""}, - {"content": "", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "HangupRequest", "Privilege": "call,all"}, - {"Uniqueid": "0f00dcaa884f-1509119608.59", "ConnectedLineName": "David Meadows", "CallerIDNum": "204", "AccountCode": "150010002", "Event": "Hangup", "Cause-txt": "Normal Clearing", "CallerIDName": "", "Privilege": "call,all", "Cause": "16", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;1", "ConnectedLineNum": "202", "content": ""}, - {"Value": "ANSWER", "Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "DIALSTATUS", "content": ""}, - {"DialStatus": "ANSWER", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "Dial", "Privilege": "call,all", "content": "", "SubEvent": "End", "UniqueID": "0f00dcaa884f-1509119608.58"}, - {"Uniqueid": "0f00dcaa884f-1509119608.58", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "SoftHangupRequest", "Privilege": "call,all", "Cause": "16", "content": ""}, - {"Extension": "onhangup", "Application": "GotoIf", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "1?nosip", "Context": "handlers", "Uniqueid": "0f00dcaa884f-1509119608.58", "content": ""}, - {"Extension": "onhangup", "Application": "GosubIf", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "Event": "Newexten", "Priority": "3", "Privilege": "dialplan,all", "AppData": "0?osvpi_proc_httptouch,s,1()", "Context": "handlers", "Uniqueid": "0f00dcaa884f-1509119608.58", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509119608.58", "ConnectedLineName": "", "CallerIDNum": "202", "AccountCode": "150010002", "Event": "Hangup", "Cause-txt": "Normal Clearing", "CallerIDName": "David Meadows", "Privilege": "call,all", "Cause": "16", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000010;2", "ConnectedLineNum": "204", "content": ""}, - {"Channel": "SIP/150010002-00000017", "content": "", "Privilege": "call,all", "State": "Start", "Class": "default", "UniqueID": "0f00dcaa884f-1509119608.56", "Event": "MusicOnHold"}, - {"Value": "osvpi_account", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "SIPREFERRINGCONTEXT", "content": ""}, - {"Value": "\"Dave\" ", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "SIPREFERREDBYHDR", "content": ""}, - {"Value": "SIP/150010002-00000017", "Uniqueid": "0f00dcaa884f-1509119608.57", "Channel": "SIP/150010004-00000018", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "BLINDTRANSFER", "content": ""}, - {"content": "", "State": "Stop", "Event": "MusicOnHold", "Privilege": "call,all", "Channel": "SIP/150010002-00000017", "UniqueID": "0f00dcaa884f-1509119608.56"}, - {"Value": "SIP/150010004-00000018", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "BLINDTRANSFER", "content": ""}, - {"Value": "10.13.37.110", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "SIPDOMAIN", "content": ""}, - {"Value": "yes", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "SIPTRANSFER", "content": ""}, - {"Value": "yes", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "_SIPTRANSFER", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "_SIPTRANSFER_REFERER", "content": ""}, - {"content": "", "State": "Stop", "Event": "MusicOnHold", "Privilege": "call,all", "Channel": "SIP/150010002-00000017", "UniqueID": "0f00dcaa884f-1509119608.56"}, - {"TransferMethod": "SIP", "Uniqueid": "0f00dcaa884f-1509119608.57", "TargetChannel": "SIP/150010002-00000017", "Channel": "SIP/150010004-00000018", "Event": "Transfer", "TargetUniqueid": "0f00dcaa884f-1509119608.56", "TransferContext": "osvpi_account_transfer", "TransferType": "Blind", "TransferExten": "403", "Privilege": "call,all", "SIP-Callid": "0c8ab5c82eb9bdd842306021458380d1@test.voipgrid.nl", "content": ""}, - {"Bridgetype": "core", "CallerID1": "202", "Channel1": "SIP/150010002-00000017", "content": "", "Privilege": "call,all", "Channel2": "SIP/150010004-00000018", "Bridgestate": "Unlink", "Uniqueid2": "0f00dcaa884f-1509119608.57", "Uniqueid1": "0f00dcaa884f-1509119608.56", "CallerID2": "204", "Event": "Bridge"}, - {"Value": "5", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ANSWEREDTIME", "content": ""}, - {"Value": "6", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "DIALEDTIME", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509119608.57", "ConnectedLineName": "David Meadows", "CallerIDNum": "204", "AccountCode": "150010002", "Event": "Hangup", "Cause-txt": "Normal Clearing", "CallerIDName": "", "Privilege": "call,all", "Cause": "16", "Channel": "SIP/150010004-00000018", "ConnectedLineNum": "202", "content": ""}, - {"Value": "ANSWER", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "DIALSTATUS", "content": ""}, - {"DialStatus": "ANSWER", "Channel": "SIP/150010002-00000017", "Event": "Dial", "Privilege": "call,all", "content": "", "SubEvent": "End", "UniqueID": "0f00dcaa884f-1509119608.56"}, - {"Extension": "403", "Application": "NoOp", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "DEBUG: XFER: accountcode=150010002 client_id=15001 account_id=150010002", "Context": "osvpi_account_transfer", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "403", "Application": "GotoIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "2", "Privilege": "dialplan,all", "AppData": "0?accountinfo", "Context": "osvpi_account_transfer", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "403", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "3", "Privilege": "dialplan,all", "AppData": "CALLERID(name)=", "Context": "osvpi_account_transfer", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "CallerIDNum": "202", "Privilege": "call,all", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "content": "", "CallerIDName": "", "Event": "NewCallerid"}, - {"Extension": "403", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "4", "Privilege": "dialplan,all", "AppData": "CALLERID(num)=202", "Context": "osvpi_account_transfer", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "403", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "5", "Privilege": "dialplan,all", "AppData": "CALLERID(pres)=allowed_passed_screen", "Context": "osvpi_account_transfer", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "403", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "6", "Privilege": "dialplan,all", "AppData": "l_changed=1", "Context": "osvpi_account_transfer", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "1", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "l_changed", "content": ""}, - {"Extension": "403", "Application": "ForkCDR", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "7", "Privilege": "dialplan,all", "AppData": "ATe", "Context": "osvpi_account_transfer", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "403", "Application": "GotoIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "8", "Privilege": "dialplan,all", "AppData": "1?blindxfer:code302or482", "Context": "osvpi_account_transfer", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "403", "Application": "NoOp", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "9", "Privilege": "dialplan,all", "AppData": "DEBUG: REFER: SIPTRANSFER=yes BLINDTRANSFER=SIP/150010004-00000018 BRIDGEPEER=SIP/150010004-00000018 SIPTRANSFER_REFERER=", "Context": "osvpi_account_transfer", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "403", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "10", "Privilege": "dialplan,all", "AppData": "seconds_since_last_exten_list_addition=6", "Context": "osvpi_account_transfer", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "6", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "seconds_since_last_exten_list_addition", "content": ""}, - {"Extension": "403", "Application": "ExecIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "11", "Privilege": "dialplan,all", "AppData": "1?Set(__EXTEN_LIST=)", "Context": "osvpi_account_transfer", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__EXTEN_LIST", "content": ""}, - {"Extension": "403", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "12", "Privilege": "dialplan,all", "AppData": "l_tmp=", "Context": "osvpi_account_transfer", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "l_tmp", "content": ""}, - {"Extension": "403", "Application": "ExecIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "13", "Privilege": "dialplan,all", "AppData": "1?Set(l_tmp=150010004@10.13.37.110)", "Context": "osvpi_account_transfer", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "150010004@10.13.37.110", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "l_tmp", "content": ""}, - {"Extension": "403", "Application": "ExecIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "14", "Privilege": "dialplan,all", "AppData": "0?Hangup()", "Context": "osvpi_account_transfer", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "403", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "15", "Privilege": "dialplan,all", "AppData": "l_tmp=150010004", "Context": "osvpi_account_transfer", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "150010004", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "l_tmp", "content": ""}, - {"Extension": "403", "Application": "GotoIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "16", "Privilege": "dialplan,all", "AppData": "0?arefersb", "Context": "osvpi_account_transfer", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "403", "Application": "GotoIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "17", "Privilege": "dialplan,all", "AppData": "1?brefersa", "Context": "osvpi_account_transfer", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "403", "Application": "NoOp", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "22", "Privilege": "dialplan,all", "AppData": "New caller is 150010004", "Context": "osvpi_account_transfer", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "403", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "23", "Privilege": "dialplan,all", "AppData": "CDR(accountcode)=150010004", "Context": "osvpi_account_transfer", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509119608.56", "Privilege": "call,all", "Channel": "SIP/150010002-00000017", "Event": "NewAccountCode", "OldAccountCode": "150010002", "AccountCode": "150010004", "content": ""}, - {"Extension": "403", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "24", "Privilege": "dialplan,all", "AppData": "__account_id=150010004", "Context": "osvpi_account_transfer", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "150010004", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__account_id", "content": ""}, - {"Extension": "403", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "25", "Privilege": "dialplan,all", "AppData": "__dst_account_id=", "Context": "osvpi_account_transfer", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__dst_account_id", "content": ""}, - {"Extension": "403", "Application": "Goto", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "26", "Privilege": "dialplan,all", "AppData": "proceed", "Context": "osvpi_account_transfer", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "403", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "33", "Privilege": "dialplan,all", "AppData": "__TRANSFER_CONTEXT=osvpi_account_transfer", "Context": "osvpi_account_transfer", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "osvpi_account_transfer", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__TRANSFER_CONTEXT", "content": ""}, - {"Extension": "403", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "34", "Privilege": "dialplan,all", "AppData": "user_privacy=0", "Context": "osvpi_account_transfer", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "0", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "user_privacy", "content": ""}, - {"Extension": "403", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "35", "Privilege": "dialplan,all", "AppData": "is_transfer=1", "Context": "osvpi_account_transfer", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "1", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "is_transfer", "content": ""}, - {"Value": "1", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCROWS", "content": ""}, - {"Value": "SUCCESS", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCSTATUS", "content": ""}, - {"Value": "client_id,intprefix,internal_number,limit_account,limit_client", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "~ODBCFIELDS~", "content": ""}, - {"Extension": "403", "Application": "ExecIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "36", "Privilege": "dialplan,all", "AppData": "1?Set(ARRAY(__client_id,__intprefix,dummy,__limit_account,__limit_client)=15001,31,204,4,0)", "Context": "osvpi_account_transfer", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "15001", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__client_id", "content": ""}, - {"Value": "31", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__intprefix", "content": ""}, - {"Value": "204", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "dummy", "content": ""}, - {"Value": "4", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__limit_account", "content": ""}, - {"Value": "0", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__limit_client", "content": ""}, - {"Extension": "403", "Application": "ExecIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "37", "Privilege": "dialplan,all", "AppData": "0?Set(CHANNEL(musicclass)=)", "Context": "osvpi_account_transfer", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "403", "Application": "NoOp", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "38", "Privilege": "dialplan,all", "AppData": "DEBUG: CLI: name=\"\" num=202 ANI=202 presence=allowed_passed_screen", "Context": "osvpi_account_transfer", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "403", "Application": "Goto", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "39", "Privilege": "dialplan,all", "AppData": "osvpi_account,403,checkspeeddial", "Context": "osvpi_account_transfer", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "403", "Application": "GotoIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "19", "Privilege": "dialplan,all", "AppData": "1?continue", "Context": "osvpi_account", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "403", "Application": "Gosub", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "22", "Privilege": "dialplan,all", "AppData": "osvpi_proc_set_i18n_region,31,1", "Context": "osvpi_account", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "0", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARGC)", "content": ""}, - {"Extension": "31", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "i18n_region=NL", "Context": "osvpi_proc_set_i18n_region", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "NL", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "i18n_region", "content": ""}, - {"Extension": "31", "Application": "Return", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "2", "Privilege": "dialplan,all", "AppData": "", "Context": "osvpi_proc_set_i18n_region", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "GOSUB_RETVAL", "content": ""}, - {"Extension": "403", "Application": "Goto", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "23", "Privilege": "dialplan,all", "AppData": "osvpi_account_emergency_NL,403,1", "Context": "osvpi_account", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "403", "Application": "Goto", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "osvpi_account_no_emergency,403,1", "Context": "osvpi_account_emergency_NL", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "403", "Application": "Goto", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "osvpi_account,403,no-emergency", "Context": "osvpi_account_no_emergency", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "403", "Application": "Goto", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "24", "Privilege": "dialplan,all", "AppData": "osvpi_account_clean,403,1", "Context": "osvpi_account", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "403", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "return=osvpi_account_clean", "Context": "osvpi_account_clean", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "osvpi_account_clean", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "return", "content": ""}, - {"Extension": "403", "Application": "Goto", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "2", "Privilege": "dialplan,all", "AppData": "osvpi_return_to_canonical,31i403,1", "Context": "osvpi_account_clean", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "31i403", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "INVALID_EXTEN", "content": ""}, - {"Extension": "i", "Application": "Goto", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "osvpi_account_clean,403,local", "Context": "osvpi_return_to_canonical", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "403", "Application": "GotoIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "3", "Privilege": "dialplan,all", "AppData": "0?extern", "Context": "osvpi_account_clean", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "403", "Application": "Gosub", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "4", "Privilege": "dialplan,all", "AppData": "osvpi_proc_set_callerid,403,1(150010004,0,0)", "Context": "osvpi_account_clean", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "150010004", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG1)", "content": ""}, - {"Value": "0", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG2)", "content": ""}, - {"Value": "0", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG3)", "content": ""}, - {"Value": "3", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARGC)", "content": ""}, - {"Extension": "403", "Application": "GotoIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "1?done", "Context": "osvpi_proc_set_callerid", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "403", "Application": "Return", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "10", "Privilege": "dialplan,all", "AppData": "", "Context": "osvpi_proc_set_callerid", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "GOSUB_RETVAL", "content": ""}, - {"Extension": "403", "Application": "GotoIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "5", "Privilege": "dialplan,all", "AppData": "3?osvpi_account_call_int,403,1:i,1", "Context": "osvpi_account_clean", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "403", "Application": "Gosub", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "osvpi_proc_check_limits,403,1", "Context": "osvpi_account_call_int", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "0", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARGC)", "content": ""}, - {"Extension": "403", "Application": "NoOp", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "DEBUG: call_limit: client 1/0 and account 0/4", "Context": "osvpi_proc_check_limits", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "403", "Application": "GotoIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "2", "Privilege": "dialplan,all", "AppData": "0?osvpi_handle_limit,403,client", "Context": "osvpi_proc_check_limits", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "403", "Application": "GotoIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "3", "Privilege": "dialplan,all", "AppData": "0?osvpi_handle_limit,403,account", "Context": "osvpi_proc_check_limits", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "403", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "4", "Privilege": "dialplan,all", "AppData": "GROUP(account_lim)=150010004", "Context": "osvpi_proc_check_limits", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "403", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "5", "Privilege": "dialplan,all", "AppData": "GROUP(client_lim)=15001", "Context": "osvpi_proc_check_limits", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "403", "Application": "Return", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "6", "Privilege": "dialplan,all", "AppData": "", "Context": "osvpi_proc_check_limits", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "GOSUB_RETVAL", "content": ""}, - {"Extension": "403", "Application": "Gosub", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "2", "Privilege": "dialplan,all", "AppData": "osvpi_proc_check_recurse,403,1(15001)", "Context": "osvpi_account_call_int", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "15001", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG1)", "content": ""}, - {"Value": "1", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARGC)", "content": ""}, - {"Extension": "403", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "LOCAL(exten)=15001:403", "Context": "osvpi_proc_check_recurse", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "15001:403", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(exten)", "content": ""}, - {"Extension": "403", "Application": "NoOp", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "2", "Privilege": "dialplan,all", "AppData": "Recursion checking 15001:403 against ", "Context": "osvpi_proc_check_recurse", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "403", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "3", "Privilege": "dialplan,all", "AppData": "LOCAL(n)=0", "Context": "osvpi_proc_check_recurse", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "0", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(n)", "content": ""}, - {"Extension": "403", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "4", "Privilege": "dialplan,all", "AppData": "LOCAL(i)=1", "Context": "osvpi_proc_check_recurse", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "1", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(i)", "content": ""}, - {"Extension": "403", "Application": "GotoIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "5", "Privilege": "dialplan,all", "AppData": "1?add", "Context": "osvpi_proc_check_recurse", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "403", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "9", "Privilege": "dialplan,all", "AppData": "__EXTEN_LIST=15001:403 ", "Context": "osvpi_proc_check_recurse", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "15001:403 ", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__EXTEN_LIST", "content": ""}, - {"Extension": "403", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "10", "Privilege": "dialplan,all", "AppData": "__EXTEN_LIST_LAST_EDIT_TIME=1509119614", "Context": "osvpi_proc_check_recurse", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "1509119614", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__EXTEN_LIST_LAST_EDIT_TIME", "content": ""}, - {"Extension": "403", "Application": "Return", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "11", "Privilege": "dialplan,all", "AppData": "", "Context": "osvpi_proc_check_recurse", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "GOSUB_RETVAL", "content": ""}, - {"Extension": "403", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "3", "Privilege": "dialplan,all", "AppData": "__ORIG_EXTEN=403", "Context": "osvpi_account_call_int", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "403", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__ORIG_EXTEN", "content": ""}, - {"Value": "0", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCROWS", "content": ""}, - {"Value": "NODATA", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCSTATUS", "content": ""}, - {"Extension": "403", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "4", "Privilege": "dialplan,all", "AppData": "ARRAY(conference_id,user_password,admin_password,conference_language)=", "Context": "osvpi_account_call_int", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "conference_id", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "user_password", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "admin_password", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "conference_language", "content": ""}, - {"Extension": "403", "Application": "GotoIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "5", "Privilege": "dialplan,all", "AppData": "0?osvpi_route_conference,ID,1", "Context": "osvpi_account_call_int", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "0", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCROWS", "content": ""}, - {"Value": "NODATA", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCSTATUS", "content": ""}, - {"Extension": "403", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "6", "Privilege": "dialplan,all", "AppData": "ARRAY(route_id,client_timezone)=", "Context": "osvpi_account_call_int", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "route_id", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "client_timezone", "content": ""}, - {"Extension": "403", "Application": "GotoIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "7", "Privilege": "dialplan,all", "AppData": "0?osvpi_route_root,403,restart", "Context": "osvpi_account_call_int", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "0", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCROWS", "content": ""}, - {"Value": "NODATA", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCSTATUS", "content": ""}, - {"Extension": "403", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "8", "Privilege": "dialplan,all", "AppData": "ARRAY(all_extensions,limited_extensions,password,account_spy_language)=", "Context": "osvpi_account_call_int", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "all_extensions", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "limited_extensions", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "password", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "account_spy_language", "content": ""}, - {"Extension": "403", "Application": "GotoIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "9", "Privilege": "dialplan,all", "AppData": "0?osvpi_account_spy,403,1", "Context": "osvpi_account_call_int", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "1", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCROWS", "content": ""}, - {"Value": "SUCCESS", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCSTATUS", "content": ""}, - {"Value": "interfaces", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "~ODBCFIELDS~", "content": ""}, - {"Extension": "403", "Application": "Set", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "10", "Privilege": "dialplan,all", "AppData": "ARRAY(interfaces)=Local/ID690150@osvpi_route_phoneaccount&Local/ID690152@osvpi_route_phoneaccount", "Context": "osvpi_account_call_int", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "Local/ID690150@osvpi_route_phoneaccount&Local/ID690152@osvpi_route_phoneaccount", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "interfaces", "content": ""}, - {"Extension": "403", "Application": "GotoIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "11", "Privilege": "dialplan,all", "AppData": "0?osvpi_handle_unallocated,403,1", "Context": "osvpi_account_call_int", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "403", "Application": "Dial", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "12", "Privilege": "dialplan,all", "AppData": "Local/ID690150@osvpi_route_phoneaccount&Local/ID690152@osvpi_route_phoneaccount", "Context": "osvpi_account_call_int", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "DIALSTATUS", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "DIALEDPEERNUMBER", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "DIALEDPEERNAME", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ANSWEREDTIME", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "DIALEDTIME", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509119614.60", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;1", "Event": "Newchannel", "ChannelState": "0", "Context": "osvpi_route_phoneaccount", "AccountCode": "", "CallerIDNum": "", "Exten": "ID690150", "CallerIDName": "", "Privilege": "call,all", "ChannelStateDesc": "Down", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "Newchannel", "ChannelState": "4", "Context": "osvpi_route_phoneaccount", "AccountCode": "", "CallerIDNum": "", "Exten": "ID690150", "CallerIDName": "", "Privilege": "call,all", "ChannelStateDesc": "Ring", "content": ""}, - {"Value": "ID690150@osvpi_route_phoneaccount", "Uniqueid": "0f00dcaa884f-1509119614.60", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;1", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "DIALEDPEERNUMBER", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509119614.60", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;1", "CallerIDNum": "403", "Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": "", "CallerIDName": "", "Event": "NewCallerid"}, - {"Uniqueid": "0f00dcaa884f-1509119614.62", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;1", "Event": "Newchannel", "ChannelState": "0", "Context": "osvpi_route_phoneaccount", "AccountCode": "", "CallerIDNum": "", "Exten": "ID690152", "CallerIDName": "", "Privilege": "call,all", "ChannelStateDesc": "Down", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "Newchannel", "ChannelState": "4", "Context": "osvpi_route_phoneaccount", "AccountCode": "", "CallerIDNum": "", "Exten": "ID690152", "CallerIDName": "", "Privilege": "call,all", "ChannelStateDesc": "Ring", "content": ""}, - {"Value": "ID690152@osvpi_route_phoneaccount", "Uniqueid": "0f00dcaa884f-1509119614.62", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;1", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "DIALEDPEERNUMBER", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509119614.62", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;1", "CallerIDNum": "403", "Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": "", "CallerIDName": "", "Event": "NewCallerid"}, - {"Uniqueid1": "0f00dcaa884f-1509119614.60", "Channel1": "Local/ID690150@osvpi_route_phoneaccount-00000011;1", "content": "", "Privilege": "call,all", "Channel2": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Context": "osvpi_route_phoneaccount", "LocalOptimization": "Yes", "Uniqueid2": "0f00dcaa884f-1509119614.61", "Exten": "ID690150", "Event": "LocalBridge"}, - {"DestUniqueID": "0f00dcaa884f-1509119614.60", "Channel": "SIP/150010002-00000017", "Event": "Dial", "Destination": "Local/ID690150@osvpi_route_phoneaccount-00000011;1", "UniqueID": "0f00dcaa884f-1509119608.56", "Dialstring": "ID690150@osvpi_route_phoneaccount", "CallerIDName": "", "Privilege": "call,all", "content": "", "ConnectedLineName": "", "SubEvent": "Begin", "ConnectedLineNum": "", "CallerIDNum": "202"}, - {"Uniqueid1": "0f00dcaa884f-1509119614.62", "Channel1": "Local/ID690152@osvpi_route_phoneaccount-00000012;1", "content": "", "Privilege": "call,all", "Channel2": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Context": "osvpi_route_phoneaccount", "LocalOptimization": "Yes", "Uniqueid2": "0f00dcaa884f-1509119614.63", "Exten": "ID690152", "Event": "LocalBridge"}, - {"DestUniqueID": "0f00dcaa884f-1509119614.62", "Channel": "SIP/150010002-00000017", "Event": "Dial", "Destination": "Local/ID690152@osvpi_route_phoneaccount-00000012;1", "UniqueID": "0f00dcaa884f-1509119608.56", "Dialstring": "ID690152@osvpi_route_phoneaccount", "CallerIDName": "", "Privilege": "call,all", "content": "", "ConnectedLineName": "", "SubEvent": "Begin", "ConnectedLineNum": "", "CallerIDNum": "202"}, - {"Value": "1", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCROWS", "content": ""}, - {"Value": "SUCCESS", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCSTATUS", "content": ""}, - {"Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "~ODBCFIELDS~", "content": ""}, - {"Value": "1", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCROWS", "content": ""}, - {"Value": "SUCCESS", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCSTATUS", "content": ""}, - {"Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "~ODBCFIELDS~", "content": ""}, - {"Extension": "ID690152", "Application": "Set", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=150010003,accountid,dutch,from,,0", "Context": "osvpi_route_phoneaccount", "Uniqueid": "0f00dcaa884f-1509119614.63", "content": ""}, - {"Value": "150010003", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__dst_account_id", "content": ""}, - {"Value": "accountid", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "l_mangle_did", "content": ""}, - {"Value": "dutch", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "l_mangle_cli", "content": ""}, - {"Value": "from", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "l_cli_header", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "l_primary_pickupgroup", "content": ""}, - {"Value": "0", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "app_account", "content": ""}, - {"Extension": "ID690152", "Application": "GotoIf", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "Newexten", "Priority": "2", "Privilege": "dialplan,all", "AppData": "0?vialer", "Context": "osvpi_route_phoneaccount", "Uniqueid": "0f00dcaa884f-1509119614.63", "content": ""}, - {"Extension": "ID690152", "Application": "Set", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "Newexten", "Priority": "3", "Privilege": "dialplan,all", "AppData": "_PICKUPMARK=", "Context": "osvpi_route_phoneaccount", "Uniqueid": "0f00dcaa884f-1509119614.63", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "_PICKUPMARK", "content": ""}, - {"Extension": "ID690152", "Application": "Set", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "Newexten", "Priority": "4", "Privilege": "dialplan,all", "AppData": "l_trunk=0", "Context": "osvpi_route_phoneaccount", "Uniqueid": "0f00dcaa884f-1509119614.63", "content": ""}, - {"Value": "0", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "l_trunk", "content": ""}, - {"Extension": "ID690152", "Application": "Goto", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "Newexten", "Priority": "5", "Privilege": "dialplan,all", "AppData": "osvpi_route_account,ID690152,1", "Context": "osvpi_route_phoneaccount", "Uniqueid": "0f00dcaa884f-1509119614.63", "content": ""}, - {"Extension": "ID690150", "Application": "Set", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=150010001,accountid,dutch,from,,0", "Context": "osvpi_route_phoneaccount", "Uniqueid": "0f00dcaa884f-1509119614.61", "content": ""}, - {"Value": "150010001", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__dst_account_id", "content": ""}, - {"Value": "accountid", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "l_mangle_did", "content": ""}, - {"Value": "dutch", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "l_mangle_cli", "content": ""}, - {"Value": "from", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "l_cli_header", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "l_primary_pickupgroup", "content": ""}, - {"Value": "0", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "app_account", "content": ""}, - {"Extension": "ID690150", "Application": "GotoIf", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "Newexten", "Priority": "2", "Privilege": "dialplan,all", "AppData": "0?vialer", "Context": "osvpi_route_phoneaccount", "Uniqueid": "0f00dcaa884f-1509119614.61", "content": ""}, - {"Value": "0", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCROWS", "content": ""}, - {"Extension": "ID690150", "Application": "Set", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "Newexten", "Priority": "3", "Privilege": "dialplan,all", "AppData": "_PICKUPMARK=", "Context": "osvpi_route_phoneaccount", "Uniqueid": "0f00dcaa884f-1509119614.61", "content": ""}, - {"Value": "NODATA", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCSTATUS", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "_PICKUPMARK", "content": ""}, - {"Extension": "ID690150", "Application": "Set", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "Newexten", "Priority": "4", "Privilege": "dialplan,all", "AppData": "l_trunk=0", "Context": "osvpi_route_phoneaccount", "Uniqueid": "0f00dcaa884f-1509119614.61", "content": ""}, - {"Value": "0", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "l_trunk", "content": ""}, - {"Extension": "ID690150", "Application": "Goto", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "Newexten", "Priority": "5", "Privilege": "dialplan,all", "AppData": "osvpi_route_account,ID690150,1", "Context": "osvpi_route_phoneaccount", "Uniqueid": "0f00dcaa884f-1509119614.61", "content": ""}, - {"Value": "0", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCROWS", "content": ""}, - {"Value": "NODATA", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCSTATUS", "content": ""}, - {"Extension": "ID690152", "Application": "Set", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "ARRAY(l_proxy)=", "Context": "osvpi_route_account", "Uniqueid": "0f00dcaa884f-1509119614.63", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "l_proxy", "content": ""}, - {"Extension": "ID690152", "Application": "Gosub", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "Newexten", "Priority": "2", "Privilege": "dialplan,all", "AppData": "osvpi_proc_mangle_number,accountid,1(150010003,403)", "Context": "osvpi_route_account", "Uniqueid": "0f00dcaa884f-1509119614.63", "content": ""}, - {"Value": "150010003", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG1)", "content": ""}, - {"Value": "403", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG2)", "content": ""}, - {"Value": "2", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARGC)", "content": ""}, - {"Extension": "accountid", "Application": "Set", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "MANGLED_EXTEN=150010003", "Context": "osvpi_proc_mangle_number", "Uniqueid": "0f00dcaa884f-1509119614.63", "content": ""}, - {"Value": "150010003", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "MANGLED_EXTEN", "content": ""}, - {"Extension": "accountid", "Application": "Return", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "Newexten", "Priority": "2", "Privilege": "dialplan,all", "AppData": "", "Context": "osvpi_proc_mangle_number", "Uniqueid": "0f00dcaa884f-1509119614.63", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "GOSUB_RETVAL", "content": ""}, - {"Extension": "ID690152", "Application": "Set", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "Newexten", "Priority": "3", "Privilege": "dialplan,all", "AppData": "l_did=150010003", "Context": "osvpi_route_account", "Uniqueid": "0f00dcaa884f-1509119614.63", "content": ""}, - {"Value": "150010003", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "l_did", "content": ""}, - {"Extension": "ID690152", "Application": "Gosub", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "Newexten", "Priority": "4", "Privilege": "dialplan,all", "AppData": "osvpi_proc_mangle_number,dutch,1(150010003,202)", "Context": "osvpi_route_account", "Uniqueid": "0f00dcaa884f-1509119614.63", "content": ""}, - {"Value": "150010003", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG1)", "content": ""}, - {"Value": "202", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG2)", "content": ""}, - {"Value": "2", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARGC)", "content": ""}, - {"Extension": "dutch", "Application": "GotoIf", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "1?fullzero,1", "Context": "osvpi_proc_mangle_number", "Uniqueid": "0f00dcaa884f-1509119614.63", "content": ""}, - {"Extension": "ID690150", "Application": "Set", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "ARRAY(l_proxy)=", "Context": "osvpi_route_account", "Uniqueid": "0f00dcaa884f-1509119614.61", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "l_proxy", "content": ""}, - {"Extension": "ID690150", "Application": "Gosub", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "Newexten", "Priority": "2", "Privilege": "dialplan,all", "AppData": "osvpi_proc_mangle_number,accountid,1(150010001,403)", "Context": "osvpi_route_account", "Uniqueid": "0f00dcaa884f-1509119614.61", "content": ""}, - {"Extension": "fullzero", "Application": "Set", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "MANGLED_EXTEN=202", "Context": "osvpi_proc_mangle_number", "Uniqueid": "0f00dcaa884f-1509119614.63", "content": ""}, - {"Value": "202", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "MANGLED_EXTEN", "content": ""}, - {"Value": "150010001", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG1)", "content": ""}, - {"Value": "403", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG2)", "content": ""}, - {"Extension": "fullzero", "Application": "Return", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "Newexten", "Priority": "2", "Privilege": "dialplan,all", "AppData": "", "Context": "osvpi_proc_mangle_number", "Uniqueid": "0f00dcaa884f-1509119614.63", "content": ""}, - {"Value": "2", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARGC)", "content": ""}, - {"Extension": "accountid", "Application": "Set", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "MANGLED_EXTEN=150010001", "Context": "osvpi_proc_mangle_number", "Uniqueid": "0f00dcaa884f-1509119614.61", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "GOSUB_RETVAL", "content": ""}, - {"Value": "150010001", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "MANGLED_EXTEN", "content": ""}, - {"Extension": "accountid", "Application": "Return", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "Newexten", "Priority": "2", "Privilege": "dialplan,all", "AppData": "", "Context": "osvpi_proc_mangle_number", "Uniqueid": "0f00dcaa884f-1509119614.61", "content": ""}, - {"Extension": "ID690152", "Application": "Set", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "Newexten", "Priority": "5", "Privilege": "dialplan,all", "AppData": "l_mangle_cli_hdr=from-dutch", "Context": "osvpi_route_account", "Uniqueid": "0f00dcaa884f-1509119614.63", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "GOSUB_RETVAL", "content": ""}, - {"Extension": "ID690150", "Application": "Set", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "Newexten", "Priority": "3", "Privilege": "dialplan,all", "AppData": "l_did=150010001", "Context": "osvpi_route_account", "Uniqueid": "0f00dcaa884f-1509119614.61", "content": ""}, - {"Value": "150010001", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "l_did", "content": ""}, - {"Value": "from-dutch", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "l_mangle_cli_hdr", "content": ""}, - {"Extension": "ID690150", "Application": "Gosub", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "Newexten", "Priority": "4", "Privilege": "dialplan,all", "AppData": "osvpi_proc_mangle_number,dutch,1(150010001,202)", "Context": "osvpi_route_account", "Uniqueid": "0f00dcaa884f-1509119614.61", "content": ""}, - {"Value": "150010001", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG1)", "content": ""}, - {"Extension": "ID690152", "Application": "Set", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "Newexten", "Priority": "6", "Privilege": "dialplan,all", "AppData": "l_fromuser=", "Context": "osvpi_route_account", "Uniqueid": "0f00dcaa884f-1509119614.63", "content": ""}, - {"Value": "202", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARG2)", "content": ""}, - {"Value": "2", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "LOCAL(ARGC)", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "l_fromuser", "content": ""}, - {"Extension": "dutch", "Application": "GotoIf", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "1?fullzero,1", "Context": "osvpi_proc_mangle_number", "Uniqueid": "0f00dcaa884f-1509119614.61", "content": ""}, - {"Extension": "fullzero", "Application": "Set", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "MANGLED_EXTEN=202", "Context": "osvpi_proc_mangle_number", "Uniqueid": "0f00dcaa884f-1509119614.61", "content": ""}, - {"Extension": "ID690152", "Application": "ExecIf", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "Newexten", "Priority": "7", "Privilege": "dialplan,all", "AppData": "1?Set(l_fromuser=202)", "Context": "osvpi_route_account", "Uniqueid": "0f00dcaa884f-1509119614.63", "content": ""}, - {"Value": "202", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "MANGLED_EXTEN", "content": ""}, - {"Value": "202", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "l_fromuser", "content": ""}, - {"Extension": "fullzero", "Application": "Return", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "Newexten", "Priority": "2", "Privilege": "dialplan,all", "AppData": "", "Context": "osvpi_proc_mangle_number", "Uniqueid": "0f00dcaa884f-1509119614.61", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "GOSUB_RETVAL", "content": ""}, - {"Extension": "ID690150", "Application": "Set", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "Newexten", "Priority": "5", "Privilege": "dialplan,all", "AppData": "l_mangle_cli_hdr=from-dutch", "Context": "osvpi_route_account", "Uniqueid": "0f00dcaa884f-1509119614.61", "content": ""}, - {"Value": "from-dutch", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "l_mangle_cli_hdr", "content": ""}, - {"Extension": "ID690150", "Application": "Set", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "Newexten", "Priority": "6", "Privilege": "dialplan,all", "AppData": "l_fromuser=", "Context": "osvpi_route_account", "Uniqueid": "0f00dcaa884f-1509119614.61", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "l_fromuser", "content": ""}, - {"Extension": "ID690150", "Application": "ExecIf", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "Newexten", "Priority": "7", "Privilege": "dialplan,all", "AppData": "1?Set(l_fromuser=202)", "Context": "osvpi_route_account", "Uniqueid": "0f00dcaa884f-1509119614.61", "content": ""}, - {"Value": "202", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "l_fromuser", "content": ""}, - {"Value": "1", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCROWS", "content": ""}, - {"Value": "SUCCESS", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCSTATUS", "content": ""}, - {"Value": "IF((SELECT 1 FROM baseaccount_account ba INNER JOIN userdestination_selecteduserdestination udsud ON udsud.phoneaccount_id = ba.id INNER JOIN userdestination_userdestination udud ON udud.id = udsud.userdestination_id INNER JOIN crm_cloudctiuser cccu O", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "~ODBCFIELDS~", "content": ""}, - {"Value": "1", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCROWS", "content": ""}, - {"Value": "SUCCESS", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCSTATUS", "content": ""}, - {"Value": "IF((SELECT 1 FROM baseaccount_account ba INNER JOIN userdestination_selecteduserdestination udsud ON udsud.phoneaccount_id = ba.id INNER JOIN userdestination_userdestination udud ON udud.id = udsud.userdestination_id INNER JOIN crm_cloudctiuser cccu O", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "~ODBCFIELDS~", "content": ""}, - {"Extension": "ID690152", "Application": "Set", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "Newexten", "Priority": "8", "Privilege": "dialplan,all", "AppData": "ARRAY(cloudcti)=0", "Context": "osvpi_route_account", "Uniqueid": "0f00dcaa884f-1509119614.63", "content": ""}, - {"Value": "0", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "cloudcti", "content": ""}, - {"Extension": "ID690152", "Application": "GotoIf", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "Newexten", "Priority": "9", "Privilege": "dialplan,all", "AppData": "1?skipcloudcti", "Context": "osvpi_route_account", "Uniqueid": "0f00dcaa884f-1509119614.63", "content": ""}, - {"Extension": "ID690150", "Application": "Set", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "Newexten", "Priority": "8", "Privilege": "dialplan,all", "AppData": "ARRAY(cloudcti)=0", "Context": "osvpi_route_account", "Uniqueid": "0f00dcaa884f-1509119614.61", "content": ""}, - {"Value": "0", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "cloudcti", "content": ""}, - {"Extension": "ID690150", "Application": "GotoIf", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "Newexten", "Priority": "9", "Privilege": "dialplan,all", "AppData": "1?skipcloudcti", "Context": "osvpi_route_account", "Uniqueid": "0f00dcaa884f-1509119614.61", "content": ""}, - {"Value": "1", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCROWS", "content": ""}, - {"Value": "SUCCESS", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCSTATUS", "content": ""}, - {"Value": "GROUP_CONCAT(DISTINCT(csw.url) SEPARATOR ' '),internal_number,GROUP_CONCAT(DISTINCT(ud.internal_number) SEPARATOR ' ')", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "~ODBCFIELDS~", "content": ""}, - {"Extension": "ID690152", "Application": "Set", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "Newexten", "Priority": "11", "Privilege": "dialplan,all", "AppData": "ARRAY(webhooks,accountinternalnumber,userinternalnumbers)=,203,", "Context": "osvpi_route_account", "Uniqueid": "0f00dcaa884f-1509119614.63", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "webhooks", "content": ""}, - {"Value": "203", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "accountinternalnumber", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "userinternalnumbers", "content": ""}, - {"Extension": "ID690152", "Application": "Goto", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "Newexten", "Priority": "13", "Privilege": "dialplan,all", "AppData": "osvpi_proc_proxy_out,403,1", "Context": "osvpi_route_account", "Uniqueid": "0f00dcaa884f-1509119614.63", "content": ""}, - {"Extension": "403", "Application": "SIPAddHeader", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "X-Accountcode: 150010003", "Context": "osvpi_proc_proxy_out", "Uniqueid": "0f00dcaa884f-1509119614.63", "content": ""}, - {"Value": "X-Accountcode: 150010003", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__SIPADDHEADER01", "content": ""}, - {"Extension": "403", "Application": "SIPAddHeader", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "Newexten", "Priority": "2", "Privilege": "dialplan,all", "AppData": "X-Insecure-Protection: geheim", "Context": "osvpi_proc_proxy_out", "Uniqueid": "0f00dcaa884f-1509119614.63", "content": ""}, - {"Value": "X-Insecure-Protection: geheim", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__SIPADDHEADER02", "content": ""}, - {"Extension": "403", "Application": "SIPAddHeader", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "Newexten", "Priority": "3", "Privilege": "dialplan,all", "AppData": "X-Mangle-Cli: from-dutch", "Context": "osvpi_proc_proxy_out", "Uniqueid": "0f00dcaa884f-1509119614.63", "content": ""}, - {"Value": "1", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCROWS", "content": ""}, - {"Value": "X-Mangle-Cli: from-dutch", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__SIPADDHEADER03", "content": ""}, - {"Value": "SUCCESS", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ODBCSTATUS", "content": ""}, - {"Extension": "403", "Application": "Set", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "Newexten", "Priority": "4", "Privilege": "dialplan,all", "AppData": "_dial_options_callaccept=", "Context": "osvpi_proc_proxy_out", "Uniqueid": "0f00dcaa884f-1509119614.63", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "_dial_options_callaccept", "content": ""}, - {"Value": "GROUP_CONCAT(DISTINCT(csw.url) SEPARATOR ' '),internal_number,GROUP_CONCAT(DISTINCT(ud.internal_number) SEPARATOR ' ')", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "~ODBCFIELDS~", "content": ""}, - {"Extension": "403", "Application": "Set", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "Newexten", "Priority": "5", "Privilege": "dialplan,all", "AppData": "_dial_options_callnotify=", "Context": "osvpi_proc_proxy_out", "Uniqueid": "0f00dcaa884f-1509119614.63", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "_dial_options_callnotify", "content": ""}, - {"Extension": "403", "Application": "ExecIf", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "Newexten", "Priority": "6", "Privilege": "dialplan,all", "AppData": "1?Set(l_proxy=opensipsfg)", "Context": "osvpi_proc_proxy_out", "Uniqueid": "0f00dcaa884f-1509119614.63", "content": ""}, - {"Value": "opensipsfg", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "l_proxy", "content": ""}, - {"Extension": "403", "Application": "Set", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "Newexten", "Priority": "7", "Privilege": "dialplan,all", "AppData": "l_extra_options=", "Context": "osvpi_proc_proxy_out", "Uniqueid": "0f00dcaa884f-1509119614.63", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "l_extra_options", "content": ""}, - {"Extension": "403", "Application": "Dial", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "Newexten", "Priority": "8", "Privilege": "dialplan,all", "AppData": "SIP/150010003/150010003/opensipsfg!!202,,", "Context": "osvpi_proc_proxy_out", "Uniqueid": "0f00dcaa884f-1509119614.63", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "DIALSTATUS", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "DIALEDPEERNUMBER", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "DIALEDPEERNAME", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ANSWEREDTIME", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "DIALEDTIME", "content": ""}, - {"Extension": "ID690150", "Application": "Set", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "Newexten", "Priority": "11", "Privilege": "dialplan,all", "AppData": "ARRAY(webhooks,accountinternalnumber,userinternalnumbers)=,201,", "Context": "osvpi_route_account", "Uniqueid": "0f00dcaa884f-1509119614.61", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "webhooks", "content": ""}, - {"Value": "201", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "accountinternalnumber", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "userinternalnumbers", "content": ""}, - {"Extension": "ID690150", "Application": "Goto", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "Newexten", "Priority": "13", "Privilege": "dialplan,all", "AppData": "osvpi_proc_proxy_out,403,1", "Context": "osvpi_route_account", "Uniqueid": "0f00dcaa884f-1509119614.61", "content": ""}, - {"Extension": "403", "Application": "SIPAddHeader", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "X-Accountcode: 150010001", "Context": "osvpi_proc_proxy_out", "Uniqueid": "0f00dcaa884f-1509119614.61", "content": ""}, - {"Value": "X-Accountcode: 150010001", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__SIPADDHEADER01", "content": ""}, - {"Extension": "403", "Application": "SIPAddHeader", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "Newexten", "Priority": "2", "Privilege": "dialplan,all", "AppData": "X-Insecure-Protection: geheim", "Context": "osvpi_proc_proxy_out", "Uniqueid": "0f00dcaa884f-1509119614.61", "content": ""}, - {"Value": "X-Insecure-Protection: geheim", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__SIPADDHEADER02", "content": ""}, - {"Extension": "403", "Application": "SIPAddHeader", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "Newexten", "Priority": "3", "Privilege": "dialplan,all", "AppData": "X-Mangle-Cli: from-dutch", "Context": "osvpi_proc_proxy_out", "Uniqueid": "0f00dcaa884f-1509119614.61", "content": ""}, - {"Value": "X-Mangle-Cli: from-dutch", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__SIPADDHEADER03", "content": ""}, - {"Extension": "403", "Application": "Set", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "Newexten", "Priority": "4", "Privilege": "dialplan,all", "AppData": "_dial_options_callaccept=", "Context": "osvpi_proc_proxy_out", "Uniqueid": "0f00dcaa884f-1509119614.61", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "_dial_options_callaccept", "content": ""}, - {"Extension": "403", "Application": "Set", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "Newexten", "Priority": "5", "Privilege": "dialplan,all", "AppData": "_dial_options_callnotify=", "Context": "osvpi_proc_proxy_out", "Uniqueid": "0f00dcaa884f-1509119614.61", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "_dial_options_callnotify", "content": ""}, - {"Extension": "403", "Application": "ExecIf", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "Newexten", "Priority": "6", "Privilege": "dialplan,all", "AppData": "1?Set(l_proxy=opensipsfg)", "Context": "osvpi_proc_proxy_out", "Uniqueid": "0f00dcaa884f-1509119614.61", "content": ""}, - {"Value": "opensipsfg", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "l_proxy", "content": ""}, - {"Extension": "403", "Application": "Set", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "Newexten", "Priority": "7", "Privilege": "dialplan,all", "AppData": "l_extra_options=", "Context": "osvpi_proc_proxy_out", "Uniqueid": "0f00dcaa884f-1509119614.61", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "l_extra_options", "content": ""}, - {"Extension": "403", "Application": "Dial", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "Newexten", "Priority": "8", "Privilege": "dialplan,all", "AppData": "SIP/150010001/150010001/opensipsfg!!202,,", "Context": "osvpi_proc_proxy_out", "Uniqueid": "0f00dcaa884f-1509119614.61", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "DIALSTATUS", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "DIALEDPEERNUMBER", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "DIALEDPEERNAME", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "ANSWEREDTIME", "content": ""}, - {"Value": "", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "DIALEDTIME", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509119614.64", "Channel": "SIP/150010003-00000019", "Event": "Newchannel", "ChannelState": "0", "Context": "osvpi_account", "AccountCode": "150010003", "CallerIDNum": "", "Exten": "", "CallerIDName": "", "Privilege": "call,all", "ChannelStateDesc": "Down", "content": ""}, - {"Value": "6a2a824d4c6c669928f352147383f883@test.voipgrid.nl", "Uniqueid": "0f00dcaa884f-1509119614.64", "Channel": "SIP/150010003-00000019", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "SIPCALLID", "content": ""}, - {"Value": "15001", "Uniqueid": "0f00dcaa884f-1509119614.64", "Channel": "SIP/150010003-00000019", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__client_id", "content": ""}, - {"Value": "150010003", "Uniqueid": "0f00dcaa884f-1509119614.64", "Channel": "SIP/150010003-00000019", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__account_id", "content": ""}, - {"Value": "no", "Uniqueid": "0f00dcaa884f-1509119614.64", "Channel": "SIP/150010003-00000019", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__record_call", "content": ""}, - {"Value": "31", "Uniqueid": "0f00dcaa884f-1509119614.64", "Channel": "SIP/150010003-00000019", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__intprefix", "content": ""}, - {"Value": "4", "Uniqueid": "0f00dcaa884f-1509119614.64", "Channel": "SIP/150010003-00000019", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__limit_account", "content": ""}, - {"Value": "0", "Uniqueid": "0f00dcaa884f-1509119614.64", "Channel": "SIP/150010003-00000019", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__limit_client", "content": ""}, - {"Value": "1", "Uniqueid": "0f00dcaa884f-1509119614.64", "Channel": "SIP/150010003-00000019", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__hide_ext_cliname", "content": ""}, - {"Value": "osvpi_account_transfer", "Uniqueid": "0f00dcaa884f-1509119614.64", "Channel": "SIP/150010003-00000019", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__TRANSFER_CONTEXT", "content": ""}, - {"Value": "150010003/150010003/opensipsfg!!202", "Uniqueid": "0f00dcaa884f-1509119614.64", "Channel": "SIP/150010003-00000019", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "DIALEDPEERNUMBER", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509119614.64", "Channel": "SIP/150010003-00000019", "CallerIDNum": "403", "Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": "", "CallerIDName": "", "Event": "NewCallerid"}, - {"DestUniqueID": "0f00dcaa884f-1509119614.64", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "Dial", "Destination": "SIP/150010003-00000019", "UniqueID": "0f00dcaa884f-1509119614.63", "Dialstring": "150010003/150010003/opensipsfg!!202", "CallerIDName": "", "Privilege": "call,all", "content": "", "ConnectedLineName": "", "SubEvent": "Begin", "ConnectedLineNum": "403", "CallerIDNum": "202"}, - {"Uniqueid": "0f00dcaa884f-1509119614.65", "Channel": "SIP/150010001-0000001a", "Event": "Newchannel", "ChannelState": "0", "Context": "osvpi_account", "AccountCode": "150010001", "CallerIDNum": "", "Exten": "", "CallerIDName": "", "Privilege": "call,all", "ChannelStateDesc": "Down", "content": ""}, - {"Value": "5341be4e20b27e7f3dc1fc8363e923ff@test.voipgrid.nl", "Uniqueid": "0f00dcaa884f-1509119614.65", "Channel": "SIP/150010001-0000001a", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "SIPCALLID", "content": ""}, - {"Value": "15001", "Uniqueid": "0f00dcaa884f-1509119614.65", "Channel": "SIP/150010001-0000001a", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__client_id", "content": ""}, - {"Value": "150010001", "Uniqueid": "0f00dcaa884f-1509119614.65", "Channel": "SIP/150010001-0000001a", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__account_id", "content": ""}, - {"Value": "no", "Uniqueid": "0f00dcaa884f-1509119614.65", "Channel": "SIP/150010001-0000001a", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__record_call", "content": ""}, - {"Value": "31", "Uniqueid": "0f00dcaa884f-1509119614.65", "Channel": "SIP/150010001-0000001a", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__intprefix", "content": ""}, - {"Value": "4", "Uniqueid": "0f00dcaa884f-1509119614.65", "Channel": "SIP/150010001-0000001a", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__limit_account", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509119614.64", "ConnectedLineName": "", "CallerIDNum": "403", "AccountCode": "150010004", "Event": "Hangup", "Cause-txt": "User alerting, no answer", "CallerIDName": "", "Privilege": "call,all", "Cause": "19", "Channel": "SIP/150010003-00000019", "ConnectedLineNum": "202", "content": ""}, - {"Value": "0", "Uniqueid": "0f00dcaa884f-1509119614.65", "Channel": "SIP/150010001-0000001a", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__limit_client", "content": ""}, - {"Value": "1", "Uniqueid": "0f00dcaa884f-1509119614.65", "Channel": "SIP/150010001-0000001a", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__hide_ext_cliname", "content": ""}, - {"Value": "osvpi_account_transfer", "Uniqueid": "0f00dcaa884f-1509119614.65", "Channel": "SIP/150010001-0000001a", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "__TRANSFER_CONTEXT", "content": ""}, - {"Value": "CONGESTION", "Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "DIALSTATUS", "content": ""}, - {"DialStatus": "CONGESTION", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "Dial", "Privilege": "call,all", "content": "", "SubEvent": "End", "UniqueID": "0f00dcaa884f-1509119614.63"}, - {"Value": "150010001/150010001/opensipsfg!!202", "Uniqueid": "0f00dcaa884f-1509119614.65", "Channel": "SIP/150010001-0000001a", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "DIALEDPEERNUMBER", "content": ""}, - {"Extension": "403", "Application": "GotoIf", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "Newexten", "Priority": "9", "Privilege": "dialplan,all", "AppData": "1?falloff", "Context": "osvpi_proc_proxy_out", "Uniqueid": "0f00dcaa884f-1509119614.63", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509119614.65", "Channel": "SIP/150010001-0000001a", "CallerIDNum": "403", "Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": "", "CallerIDName": "", "Event": "NewCallerid"}, - {"Extension": "403", "Application": "NoOp", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "Newexten", "Priority": "12", "Privilege": "dialplan,all", "AppData": "Got hangupcause 19 from peer 150010003 (did=150010003, cli=202, pres=allowed_passed_screen, status=CONGESTION, proxy=opensipsfg)", "Context": "osvpi_proc_proxy_out", "Uniqueid": "0f00dcaa884f-1509119614.63", "content": ""}, - {"DestUniqueID": "0f00dcaa884f-1509119614.65", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "Dial", "Destination": "SIP/150010001-0000001a", "UniqueID": "0f00dcaa884f-1509119614.61", "Dialstring": "150010001/150010001/opensipsfg!!202", "CallerIDName": "", "Privilege": "call,all", "content": "", "ConnectedLineName": "", "SubEvent": "Begin", "ConnectedLineNum": "403", "CallerIDNum": "202"}, - {"Extension": "403", "Application": "ExecIf", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "Newexten", "Priority": "13", "Privilege": "dialplan,all", "AppData": "0?Hangup(USER_BUSY)", "Context": "osvpi_proc_proxy_out", "Uniqueid": "0f00dcaa884f-1509119614.63", "content": ""}, - {"Extension": "403", "Application": "Hangup", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "Newexten", "Priority": "14", "Privilege": "dialplan,all", "AppData": "NO_ANSWER", "Context": "osvpi_proc_proxy_out", "Uniqueid": "0f00dcaa884f-1509119614.63", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509119614.63", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "SoftHangupRequest", "Privilege": "call,all", "Cause": "16", "content": ""}, - {"Extension": "onhangup", "Application": "GotoIf", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "1?nosip", "Context": "handlers", "Uniqueid": "0f00dcaa884f-1509119614.63", "content": ""}, - {"Extension": "onhangup", "Application": "GosubIf", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "Event": "Newexten", "Priority": "3", "Privilege": "dialplan,all", "AppData": "0?osvpi_proc_httptouch,s,1()", "Context": "handlers", "Uniqueid": "0f00dcaa884f-1509119614.63", "content": ""}, - {"Value": "CONGESTION", "Uniqueid": "0f00dcaa884f-1509119614.62", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;1", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "CHANLOCALSTATUS", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509119614.63", "ConnectedLineName": "", "CallerIDNum": "202", "AccountCode": "150010004", "Event": "Hangup", "Cause-txt": "User alerting, no answer", "CallerIDName": "", "Privilege": "call,all", "Cause": "19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;2", "ConnectedLineNum": "403", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509119614.62", "ConnectedLineName": "", "CallerIDNum": "403", "AccountCode": "150010004", "Event": "Hangup", "Cause-txt": "User alerting, no answer", "CallerIDName": "", "Privilege": "call,all", "Cause": "19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000012;1", "ConnectedLineNum": "202", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509119614.65", "ConnectedLineName": "", "CallerIDNum": "403", "AccountCode": "150010004", "Event": "Hangup", "Cause-txt": "User alerting, no answer", "CallerIDName": "", "Privilege": "call,all", "Cause": "19", "Channel": "SIP/150010001-0000001a", "ConnectedLineNum": "202", "content": ""}, - {"Value": "CONGESTION", "Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "DIALSTATUS", "content": ""}, - {"DialStatus": "CONGESTION", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "Dial", "Privilege": "call,all", "content": "", "SubEvent": "End", "UniqueID": "0f00dcaa884f-1509119614.61"}, - {"Extension": "403", "Application": "GotoIf", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "Newexten", "Priority": "9", "Privilege": "dialplan,all", "AppData": "1?falloff", "Context": "osvpi_proc_proxy_out", "Uniqueid": "0f00dcaa884f-1509119614.61", "content": ""}, - {"Extension": "403", "Application": "NoOp", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "Newexten", "Priority": "12", "Privilege": "dialplan,all", "AppData": "Got hangupcause 19 from peer 150010001 (did=150010001, cli=202, pres=allowed_passed_screen, status=CONGESTION, proxy=opensipsfg)", "Context": "osvpi_proc_proxy_out", "Uniqueid": "0f00dcaa884f-1509119614.61", "content": ""}, - {"Extension": "403", "Application": "ExecIf", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "Newexten", "Priority": "13", "Privilege": "dialplan,all", "AppData": "0?Hangup(USER_BUSY)", "Context": "osvpi_proc_proxy_out", "Uniqueid": "0f00dcaa884f-1509119614.61", "content": ""}, - {"Extension": "403", "Application": "Hangup", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "Newexten", "Priority": "14", "Privilege": "dialplan,all", "AppData": "NO_ANSWER", "Context": "osvpi_proc_proxy_out", "Uniqueid": "0f00dcaa884f-1509119614.61", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509119614.61", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "SoftHangupRequest", "Privilege": "call,all", "Cause": "16", "content": ""}, - {"Extension": "onhangup", "Application": "GotoIf", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "1?nosip", "Context": "handlers", "Uniqueid": "0f00dcaa884f-1509119614.61", "content": ""}, - {"Extension": "onhangup", "Application": "GosubIf", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "Event": "Newexten", "Priority": "3", "Privilege": "dialplan,all", "AppData": "0?osvpi_proc_httptouch,s,1()", "Context": "handlers", "Uniqueid": "0f00dcaa884f-1509119614.61", "content": ""}, - {"Value": "CONGESTION", "Uniqueid": "0f00dcaa884f-1509119614.60", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;1", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "CHANLOCALSTATUS", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509119614.61", "ConnectedLineName": "", "CallerIDNum": "202", "AccountCode": "150010004", "Event": "Hangup", "Cause-txt": "User alerting, no answer", "CallerIDName": "", "Privilege": "call,all", "Cause": "19", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;2", "ConnectedLineNum": "403", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509119614.60", "ConnectedLineName": "", "CallerIDNum": "403", "AccountCode": "150010004", "Event": "Hangup", "Cause-txt": "User alerting, no answer", "CallerIDName": "", "Privilege": "call,all", "Cause": "19", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000011;1", "ConnectedLineNum": "202", "content": ""}, - {"Value": "NOANSWER", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "DIALSTATUS", "content": ""}, - {"DialStatus": "NOANSWER", "Channel": "SIP/150010002-00000017", "Event": "Dial", "Privilege": "call,all", "content": "", "SubEvent": "End", "UniqueID": "0f00dcaa884f-1509119608.56"}, - {"Extension": "403", "Application": "GotoIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "13", "Privilege": "dialplan,all", "AppData": "0?osvpi_proc_hangup,403,1", "Context": "osvpi_account_call_int", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "403", "Application": "Hangup", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "14", "Privilege": "dialplan,all", "AppData": "NO_ANSWER", "Context": "osvpi_account_call_int", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "SoftHangupRequest", "Privilege": "call,all", "Cause": "16", "content": ""}, - {"Extension": "onhangup", "Application": "GotoIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "1", "Privilege": "dialplan,all", "AppData": "0?nosip", "Context": "handlers", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "onhangup", "Application": "NoOp", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "2", "Privilege": "dialplan,all", "AppData": "LOG: rtpqos: caller=172.20.0.254:51802;asterisk=0.0.0.0:10330;ssrc=693341939;themssrc=3551416100;lp=0;rxjitter=0.000000;rxcount=107;txjitter=0.000136;txcount=105;rlp=0;rtt=0.000000;billsec=0", "Context": "handlers", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Extension": "onhangup", "Application": "GosubIf", "Channel": "SIP/150010002-00000017", "Event": "Newexten", "Priority": "3", "Privilege": "dialplan,all", "AppData": "0?osvpi_proc_httptouch,s,1()", "Context": "handlers", "Uniqueid": "0f00dcaa884f-1509119608.56", "content": ""}, - {"Value": "ssrc=693341939;themssrc=3551416100;lp=0;rxjitter=0.000000;rxcount=107;txjitter=0.000136;txcount=105;rlp=0;rtt=0.000000", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "RTPAUDIOQOS", "content": ""}, - {"Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "RTPAUDIOQOSJITTER", "content": ""}, - {"Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "RTPAUDIOQOSLOSS", "content": ""}, - {"Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "RTPAUDIOQOSRTT", "content": ""}, - {"Value": "ssrc=693341939;themssrc=3551416100;lp=0;rxjitter=0.000000;rxcount=107;txjitter=0.000136;txcount=105;rlp=0;rtt=0.000000", "Uniqueid": "0f00dcaa884f-1509119608.56", "Channel": "SIP/150010002-00000017", "Event": "VarSet", "Privilege": "dialplan,all", "Variable": "RTPAUDIOQOS", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509119608.56", "ConnectedLineName": "", "CallerIDNum": "202", "AccountCode": "150010004", "Event": "Hangup", "Cause-txt": "User alerting, no answer", "CallerIDName": "", "Privilege": "call,all", "Cause": "19", "Channel": "SIP/150010002-00000017", "ConnectedLineNum": "", "content": ""} + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000023", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newchannel", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015089.506", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000023", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015089.506", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000023", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "10", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015089.506", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000014;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730150", "Language": "en", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015089.509", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000014;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730150", "Language": "en", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015089.511", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000014;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015089.509", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000014;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015089.509", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000014;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015089.509", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000014;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730150", "Language": "en", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015089.511", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000014;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730150", "Language": "en", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015089.511", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000014;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730150", "Language": "en", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015089.511", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730150", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31150010001", "LocalOneChannel": "Local/ID730150@osvpi_route_phoneaccount-00000014;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31260010001", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "+31150010001", "LocalOneLanguage": "en", "LocalOneLinkedid": "f29ea68048f6-1530015089.506", "LocalOnePriority": "1", "LocalOneUniqueid": "f29ea68048f6-1530015089.509", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31260010001", "LocalTwoChannel": "Local/ID730150@osvpi_route_phoneaccount-00000014;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31150010001", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730150", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "f29ea68048f6-1530015089.506", "LocalTwoPriority": "1", "LocalTwoUniqueid": "f29ea68048f6-1530015089.511", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000023", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/ID730150@osvpi_route_phoneaccount-00000014;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "+31150010001", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530015089.506", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530015089.509", "DialString": "ID730150@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015089.506", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010001-00000024", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015089.514", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000024", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015089.514", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000024", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530015089.506", "OldAccountCode": "150010001", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015089.514", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000024", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015089.514", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000014;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "SIP/150010001-00000024", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "+31150010001", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530015089.506", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530015089.514", "DialString": "150010001/150010001/172.20.0.13!!0260010001", "Event": "DialBegin", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015089.511", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000024", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015089.514", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000014;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015089.509", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000024", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015089.514", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000014;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "SIP/150010001-00000024", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530015089.506", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530015089.514", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015089.511", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000014;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015089.511", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000014;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015089.509", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "482bf9b7-058f-4e1a-ac53-f32c5ff90914", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000023", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/ID730150@osvpi_route_phoneaccount-00000014;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530015089.506", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530015089.509", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015089.506", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000023", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015089.506", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "482bf9b7-058f-4e1a-ac53-f32c5ff90914", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000024", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015089.514", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "482bf9b7-058f-4e1a-ac53-f32c5ff90914", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000014;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015089.511", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4fb6e506-bb87-4138-a7cd-d07eef7d07f1", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4fb6e506-bb87-4138-a7cd-d07eef7d07f1", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000014;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015089.509", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4fb6e506-bb87-4138-a7cd-d07eef7d07f1", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000023", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015089.506", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "d7253c54-d0ef-4f8e-906c-a14771d21ce2", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "38f87382-f0be-43cc-8e66-c58f08f4377e", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "38f87382-f0be-43cc-8e66-c58f08f4377e", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "482bf9b7-058f-4e1a-ac53-f32c5ff90914", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000024", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015089.514", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4fb6e506-bb87-4138-a7cd-d07eef7d07f1", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000014;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015089.509", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4fb6e506-bb87-4138-a7cd-d07eef7d07f1", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000024", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "f29ea68048f6-1530015089.509", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015089.514", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "482bf9b7-058f-4e1a-ac53-f32c5ff90914", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000014;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015089.511", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "482bf9b7-058f-4e1a-ac53-f32c5ff90914", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000014;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015089.509", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000014;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015089.511", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4fb6e506-bb87-4138-a7cd-d07eef7d07f1", "BridgeVideoSourceMode": "none", "Context": "osvpi_account_transfer", "Event": "BlindTransfer", "Extension": "401", "IsExternal": "Yes", "Privilege": "call,all", "Result": "Success", "SystemName": "f29ea68048f6", "TransfereeAccountCode": "15001", "TransfereeCallerIDName": "", "TransfereeCallerIDNum": "+31260010001", "TransfereeChannel": "SIP/voipgrid-siproute-docker-00000023", "TransfereeChannelState": "6", "TransfereeChannelStateDesc": "Up", "TransfereeConnectedLineName": "", "TransfereeConnectedLineNum": "", "TransfereeContext": "osvpi_route_phoneaccount_step", "TransfereeExten": "+31150010001", "TransfereeLanguage": "nl", "TransfereeLinkedid": "f29ea68048f6-1530015089.506", "TransfereePriority": "1", "TransfereeUniqueid": "f29ea68048f6-1530015089.506", "TransfererAccountCode": "15001", "TransfererCallerIDName": "", "TransfererCallerIDNum": "+31150010001", "TransfererChannel": "SIP/150010001-00000024", "TransfererChannelState": "6", "TransfererChannelStateDesc": "Up", "TransfererConnectedLineName": "", "TransfererConnectedLineNum": "+31260010001", "TransfererContext": "osvpi_account", "TransfererExten": "", "TransfererLanguage": "nl", "TransfererLinkedid": "f29ea68048f6-1530015089.506", "TransfererPriority": "1", "TransfererUniqueid": "f29ea68048f6-1530015089.514", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4fb6e506-bb87-4138-a7cd-d07eef7d07f1", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000024", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015089.514", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010001-00000024", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015089.514", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4fb6e506-bb87-4138-a7cd-d07eef7d07f1", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000023", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_transfer", "Event": "BridgeLeave", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015089.506", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4fb6e506-bb87-4138-a7cd-d07eef7d07f1", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000023", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_transfer", "Event": "NewAccountCode", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530015089.506", "OldAccountCode": "15001", "Priority": "23", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015089.506", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730153@osvpi_route_phoneaccount-00000015;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730153", "Language": "en", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015097.557", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730153@osvpi_route_phoneaccount-00000015;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730153", "Language": "en", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015097.559", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730153@osvpi_route_phoneaccount-00000015;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015097.557", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730153@osvpi_route_phoneaccount-00000015;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015097.557", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730153@osvpi_route_phoneaccount-00000015;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015097.557", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730153@osvpi_route_phoneaccount-00000015;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730153", "Language": "en", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015097.559", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730153@osvpi_route_phoneaccount-00000015;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730153", "Language": "en", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015097.559", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730153@osvpi_route_phoneaccount-00000015;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730153", "Language": "en", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015097.559", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730153", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "401", "LocalOneChannel": "Local/ID730153@osvpi_route_phoneaccount-00000015;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31260010001", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "401", "LocalOneLanguage": "en", "LocalOneLinkedid": "f29ea68048f6-1530015089.506", "LocalOnePriority": "1", "LocalOneUniqueid": "f29ea68048f6-1530015097.557", "LocalOptimization": "Yes", "LocalTwoAccountCode": "150010001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31260010001", "LocalTwoChannel": "Local/ID730153@osvpi_route_phoneaccount-00000015;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "401", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730153", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "f29ea68048f6-1530015089.506", "LocalTwoPriority": "1", "LocalTwoUniqueid": "f29ea68048f6-1530015097.559", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000023", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "Local/ID730153@osvpi_route_phoneaccount-00000015;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "401", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530015089.506", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530015097.557", "DialString": "ID730153@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015089.506", "content": ""}, + {"AccountCode": "150010004", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010004-00000025", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015097.562", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010004-00000025", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015097.562", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010004-00000025", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530015089.506", "OldAccountCode": "150010004", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015097.562", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010004-00000025", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015097.562", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730153@osvpi_route_phoneaccount-00000015;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "SIP/150010004-00000025", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "401", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530015089.506", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530015097.562", "DialString": "150010004/150010004/opensipsfg!!0260010001", "Event": "DialBegin", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015097.559", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730153@osvpi_route_phoneaccount-00000015;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "SIP/150010004-00000025", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "401", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530015089.506", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530015097.562", "DialStatus": "BUSY", "Event": "DialEnd", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015097.559", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "401", "Cause": "19", "Cause-txt": "User alerting, no answer", "Channel": "SIP/150010004-00000025", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Hangup", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015097.562", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "19", "Cause-txt": "User alerting, no answer", "Channel": "Local/ID730153@osvpi_route_phoneaccount-00000015;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015097.559", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000023", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "Local/ID730153@osvpi_route_phoneaccount-00000015;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "401", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530015089.506", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530015097.557", "DialStatus": "NOANSWER", "Event": "DialEnd", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015089.506", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "401", "Cause": "19", "Cause-txt": "User alerting, no answer", "Channel": "Local/ID730153@osvpi_route_phoneaccount-00000015;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015097.557", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "19", "Cause-txt": "User alerting, no answer", "Channel": "SIP/voipgrid-siproute-docker-00000023", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "f29ea68048f6-1530015089.506", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530015089.506", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "d7253c54-d0ef-4f8e-906c-a14771d21ce2", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""} ] diff --git a/tests/fixtures/xfer_blind/xfer_blind_reject.json b/tests/fixtures/xfer_blind/xfer_blind_reject.json index 36e0d18..2ff79cd 100644 --- a/tests/fixtures/xfer_blind/xfer_blind_reject.json +++ b/tests/fixtures/xfer_blind/xfer_blind_reject.json @@ -1,597 +1,74 @@ [ - {"content": "", "Privilege": "system,all", "Event": "FullyBooted", "Status": "Fully Booted"}, - {"Channel": "SIP/150010002-00000008", "Exten": "204", "AccountCode": "150010002", "Privilege": "call,all", "CallerIDName": "Bob", "ChannelStateDesc": "Down", "CallerIDNum": "150010002", "content": "", "ChannelState": "0", "Context": "osvpi_account", "Event": "Newchannel", "Uniqueid": "0f00dcaa884f-1509116084.19"}, - {"Channel": "SIP/150010002-00000008", "Variable": "SIPURI", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "sip:150010002@10.13.36.116:5061"}, - {"Channel": "SIP/150010002-00000008", "Variable": "SIPDOMAIN", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "10.13.37.110"}, - {"Channel": "SIP/150010002-00000008", "Variable": "SIPCALLID", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "a26f80a9-79d4a043@10.13.36.116"}, - {"Channel": "SIP/150010002-00000008", "Variable": "__client_id", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "15001"}, - {"Channel": "SIP/150010002-00000008", "Variable": "__account_id", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "150010002"}, - {"Channel": "SIP/150010002-00000008", "Variable": "__record_call", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "no"}, - {"Channel": "SIP/150010002-00000008", "Variable": "__intprefix", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "31"}, - {"Channel": "SIP/150010002-00000008", "Variable": "__limit_account", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "4"}, - {"Channel": "SIP/150010002-00000008", "Variable": "__limit_client", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "0"}, - {"Channel": "SIP/150010002-00000008", "Variable": "__hide_ext_cliname", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "1"}, - {"Channel": "SIP/150010002-00000008", "Variable": "__TRANSFER_CONTEXT", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "osvpi_account_transfer"}, - {"Channel": "SIP/150010002-00000008", "CallerIDName": "Bob", "ConnectedLineName": "", "CallerIDNum": "150010002", "content": "", "ChannelStateDesc": "Ring", "ConnectedLineNum": "", "Event": "Newstate", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "call,all", "ChannelState": "4"}, - {"Channel": "SIP/150010002-00000008", "Application": "ExecIf", "Privilege": "dialplan,all", "AppData": "0?GotoIf(0?osvpi_proc_hangup_insecure,204,1)", "Context": "osvpi_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "1", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Application": "Gosub", "Privilege": "dialplan,all", "AppData": "osvpi_proc_check_forwards,s,1", "Context": "osvpi_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "2", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Variable": "LOCAL(ARGC)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "0"}, - {"Channel": "SIP/150010002-00000008", "Application": "GotoIf", "Privilege": "dialplan,all", "AppData": "0?check,1", "Context": "osvpi_proc_check_forwards", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "1", "Extension": "s"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "LOCAL(tmp)=70", "Context": "osvpi_proc_check_forwards", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "2", "Extension": "s"}, - {"Channel": "SIP/150010002-00000008", "Variable": "LOCAL(tmp)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "70"}, - {"Channel": "SIP/150010002-00000008", "Application": "ExecIf", "Privilege": "dialplan,all", "AppData": "0?Goto(init,1)", "Context": "osvpi_proc_check_forwards", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "3", "Extension": "s"}, - {"Channel": "SIP/150010002-00000008", "Application": "ExecIf", "Privilege": "dialplan,all", "AppData": "1?Goto(init,1)", "Context": "osvpi_proc_check_forwards", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "4", "Extension": "s"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "MASTER_CHANNEL(SIP_MAX_FORWARDS)=16", "Context": "osvpi_proc_check_forwards", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "1", "Extension": "init"}, - {"Channel": "SIP/150010002-00000008", "Variable": "SIP_MAX_FORWARDS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "16"}, - {"Channel": "SIP/150010002-00000008", "Application": "NoOp", "Privilege": "dialplan,all", "AppData": "DEBUG: MaxForwards: initialized to: 16", "Context": "osvpi_proc_check_forwards", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "2", "Extension": "init"}, - {"Channel": "SIP/150010002-00000008", "Application": "Return", "Privilege": "dialplan,all", "AppData": "", "Context": "osvpi_proc_check_forwards", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "3", "Extension": "init"}, - {"Channel": "SIP/150010002-00000008", "Variable": "GOSUB_RETVAL", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Application": "GotoIf", "Privilege": "dialplan,all", "AppData": "0?osvpi_account_transfer,204,1", "Context": "osvpi_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "3", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Application": "NoOp", "Privilege": "dialplan,all", "AppData": "ENTRY POINT username=150010002,ip=172.20.0.13/172.20.0.13,from=sip:150010002@10.13.37.110,contact=sip:150010002@10.13.36.116:5061,ua=Cisco/SPA504G-7.5.3,name=Bob,num=150010002,pres=allowed_not_screened", "Context": "osvpi_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "4", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "is_transfer=0", "Context": "osvpi_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "5", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Variable": "is_transfer", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "0"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "CDR(amaflags)=BILLING", "Context": "osvpi_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "6", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "user_privacy=0", "Context": "osvpi_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "7", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Variable": "user_privacy", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "0"}, - {"Channel": "SIP/150010002-00000008", "Application": "ExecIf", "Privilege": "dialplan,all", "AppData": "1?Set(__supports_progress=1)", "Context": "osvpi_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "8", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Variable": "__supports_progress", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "1"}, - {"Channel": "SIP/150010002-00000008", "Application": "Gosub", "Privilege": "dialplan,all", "AppData": "osvpi_proc_record_call,s-no,1(out,15001,150010002)", "Context": "osvpi_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "9", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Variable": "LOCAL(ARG1)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "out"}, - {"Channel": "SIP/150010002-00000008", "Variable": "LOCAL(ARG2)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "15001"}, - {"Channel": "SIP/150010002-00000008", "Variable": "LOCAL(ARG3)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "150010002"}, - {"Channel": "SIP/150010002-00000008", "Variable": "LOCAL(ARGC)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "3"}, - {"Channel": "SIP/150010002-00000008", "Application": "Return", "Privilege": "dialplan,all", "AppData": "", "Context": "osvpi_proc_record_call", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "1", "Extension": "s-no"}, - {"Channel": "SIP/150010002-00000008", "Variable": "GOSUB_RETVAL", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "l_tmp=", "Context": "osvpi_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "10", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Variable": "l_tmp", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Application": "ExecIf", "Privilege": "dialplan,all", "AppData": "1?Set(l_tmp=)", "Context": "osvpi_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "11", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Variable": "l_tmp", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Application": "GotoIf", "Privilege": "dialplan,all", "AppData": "1?checkprivacy", "Context": "osvpi_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "12", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Application": "ExecIf", "Privilege": "dialplan,all", "AppData": "0?Set(CALLERID(pres)=allowed_passed_screen)", "Context": "osvpi_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "16", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Application": "ExecIf", "Privilege": "dialplan,all", "AppData": "0?Set(CALLERID(pres)=prohib_passed_screen)", "Context": "osvpi_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "17", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Application": "ExecIf", "Privilege": "dialplan,all", "AppData": "0?Set(CHANNEL(musicclass)=)", "Context": "osvpi_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "18", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Application": "GotoIf", "Privilege": "dialplan,all", "AppData": "1?continue", "Context": "osvpi_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "19", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Application": "Gosub", "Privilege": "dialplan,all", "AppData": "osvpi_proc_set_i18n_region,31,1", "Context": "osvpi_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "22", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Variable": "LOCAL(ARGC)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "0"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "i18n_region=NL", "Context": "osvpi_proc_set_i18n_region", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "1", "Extension": "31"}, - {"Channel": "SIP/150010002-00000008", "Variable": "i18n_region", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "NL"}, - {"Channel": "SIP/150010002-00000008", "Application": "Return", "Privilege": "dialplan,all", "AppData": "", "Context": "osvpi_proc_set_i18n_region", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "2", "Extension": "31"}, - {"Channel": "SIP/150010002-00000008", "Variable": "GOSUB_RETVAL", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Application": "Goto", "Privilege": "dialplan,all", "AppData": "osvpi_account_emergency_NL,204,1", "Context": "osvpi_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "23", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Application": "Goto", "Privilege": "dialplan,all", "AppData": "osvpi_account_no_emergency,204,1", "Context": "osvpi_account_emergency_NL", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "1", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Application": "Goto", "Privilege": "dialplan,all", "AppData": "osvpi_account,204,no-emergency", "Context": "osvpi_account_no_emergency", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "1", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Application": "Goto", "Privilege": "dialplan,all", "AppData": "osvpi_account_clean,204,1", "Context": "osvpi_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "24", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "return=osvpi_account_clean", "Context": "osvpi_account_clean", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "1", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Variable": "return", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "osvpi_account_clean"}, - {"Channel": "SIP/150010002-00000008", "Application": "Goto", "Privilege": "dialplan,all", "AppData": "osvpi_return_to_canonical,31i204,1", "Context": "osvpi_account_clean", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "2", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Variable": "INVALID_EXTEN", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "31i204"}, - {"Channel": "SIP/150010002-00000008", "Application": "Goto", "Privilege": "dialplan,all", "AppData": "osvpi_account_clean,204,local", "Context": "osvpi_return_to_canonical", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "1", "Extension": "i"}, - {"Channel": "SIP/150010002-00000008", "Application": "GotoIf", "Privilege": "dialplan,all", "AppData": "0?extern", "Context": "osvpi_account_clean", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "3", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Application": "Gosub", "Privilege": "dialplan,all", "AppData": "osvpi_proc_set_callerid,204,1(150010002,0,0)", "Context": "osvpi_account_clean", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "4", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Variable": "LOCAL(ARG1)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "150010002"}, - {"Channel": "SIP/150010002-00000008", "Variable": "LOCAL(ARG2)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "0"}, - {"Channel": "SIP/150010002-00000008", "Variable": "LOCAL(ARG3)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "0"}, - {"Channel": "SIP/150010002-00000008", "Variable": "LOCAL(ARGC)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "3"}, - {"Channel": "SIP/150010002-00000008", "Application": "GotoIf", "Privilege": "dialplan,all", "AppData": "0?done", "Context": "osvpi_proc_set_callerid", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "1", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Variable": "ODBCROWS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "1"}, - {"Channel": "SIP/150010002-00000008", "Variable": "ODBCSTATUS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "SUCCESS"}, - {"Channel": "SIP/150010002-00000008", "Variable": "~ODBCFIELDS~", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "set,privacy,name,number_int,number_ext"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "ARRAY(LOCAL(set),LOCAL(privacy),LOCAL(name),LOCAL(number_int),LOCAL(number_ext))=1,0,David Meadows,202,+31150010002", "Context": "osvpi_proc_set_callerid", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "2", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Variable": "LOCAL(set)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "1"}, - {"Channel": "SIP/150010002-00000008", "Variable": "LOCAL(privacy)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "0"}, - {"Channel": "SIP/150010002-00000008", "Variable": "LOCAL(name)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "David Meadows"}, - {"Channel": "SIP/150010002-00000008", "Variable": "LOCAL(number_int)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "202"}, - {"Channel": "SIP/150010002-00000008", "Variable": "LOCAL(number_ext)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "+31150010002"}, - {"Channel": "SIP/150010002-00000008", "Application": "GotoIf", "Privilege": "dialplan,all", "AppData": "0?presentation", "Context": "osvpi_proc_set_callerid", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "3", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "CALLERID(pres)=allowed_passed_screen", "Context": "osvpi_proc_set_callerid", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "4", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "CALLERID(name)=David Meadows", "Context": "osvpi_proc_set_callerid", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "5", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "CallerIDName": "David Meadows", "CallerIDNum": "150010002", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "content": "", "Event": "NewCallerid", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "call,all"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "CALLERID(num)=202", "Context": "osvpi_proc_set_callerid", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "6", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "CallerIDName": "David Meadows", "CallerIDNum": "202", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "content": "", "Event": "NewCallerid", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "call,all"}, - {"Channel": "SIP/150010002-00000008", "Application": "ExecIf", "Privilege": "dialplan,all", "AppData": "0?Set(CALLERID(pres)=prohib_passed_screen)", "Context": "osvpi_proc_set_callerid", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "7", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "CALLERID(ANI)=202", "Context": "osvpi_proc_set_callerid", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "8", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Application": "Gosub", "Privilege": "dialplan,all", "AppData": "osvpi_proc_set_callerid_internal,204,1", "Context": "osvpi_proc_set_callerid", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "9", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Variable": "LOCAL(ARG1)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Variable": "LOCAL(ARG2)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Variable": "LOCAL(ARG3)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Variable": "LOCAL(ARGC)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "0"}, - {"Channel": "SIP/150010002-00000008", "Application": "GotoIf", "Privilege": "dialplan,all", "AppData": "1?nop", "Context": "osvpi_proc_set_callerid_internal", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "1", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Application": "ExecIf", "Privilege": "dialplan,all", "AppData": "0?Set(CALLERID(ANI)=20)", "Context": "osvpi_proc_set_callerid_internal", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "5", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Application": "Return", "Privilege": "dialplan,all", "AppData": "", "Context": "osvpi_proc_set_callerid_internal", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "6", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Variable": "GOSUB_RETVAL", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Application": "Return", "Privilege": "dialplan,all", "AppData": "", "Context": "osvpi_proc_set_callerid", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "10", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Variable": "GOSUB_RETVAL", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Application": "GotoIf", "Privilege": "dialplan,all", "AppData": "3?osvpi_account_call_int,204,1:i,1", "Context": "osvpi_account_clean", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "5", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Application": "Gosub", "Privilege": "dialplan,all", "AppData": "osvpi_proc_check_limits,204,1", "Context": "osvpi_account_call_int", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "1", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Variable": "LOCAL(ARGC)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "0"}, - {"Channel": "SIP/150010002-00000008", "Application": "NoOp", "Privilege": "dialplan,all", "AppData": "DEBUG: call_limit: client 0/0 and account 0/4", "Context": "osvpi_proc_check_limits", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "1", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Application": "GotoIf", "Privilege": "dialplan,all", "AppData": "0?osvpi_handle_limit,204,client", "Context": "osvpi_proc_check_limits", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "2", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Application": "GotoIf", "Privilege": "dialplan,all", "AppData": "0?osvpi_handle_limit,204,account", "Context": "osvpi_proc_check_limits", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "3", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "GROUP(account_lim)=150010002", "Context": "osvpi_proc_check_limits", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "4", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "GROUP(client_lim)=15001", "Context": "osvpi_proc_check_limits", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "5", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Application": "Return", "Privilege": "dialplan,all", "AppData": "", "Context": "osvpi_proc_check_limits", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "6", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Variable": "GOSUB_RETVAL", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Application": "Gosub", "Privilege": "dialplan,all", "AppData": "osvpi_proc_check_recurse,204,1(15001)", "Context": "osvpi_account_call_int", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "2", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Variable": "LOCAL(ARG1)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "15001"}, - {"Channel": "SIP/150010002-00000008", "Variable": "LOCAL(ARGC)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "1"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "LOCAL(exten)=15001:204", "Context": "osvpi_proc_check_recurse", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "1", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Variable": "LOCAL(exten)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "15001:204"}, - {"Channel": "SIP/150010002-00000008", "Application": "NoOp", "Privilege": "dialplan,all", "AppData": "Recursion checking 15001:204 against ", "Context": "osvpi_proc_check_recurse", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "2", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "LOCAL(n)=0", "Context": "osvpi_proc_check_recurse", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "3", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Variable": "LOCAL(n)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "0"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "LOCAL(i)=1", "Context": "osvpi_proc_check_recurse", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "4", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Variable": "LOCAL(i)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "1"}, - {"Channel": "SIP/150010002-00000008", "Application": "GotoIf", "Privilege": "dialplan,all", "AppData": "1?add", "Context": "osvpi_proc_check_recurse", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "5", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "__EXTEN_LIST=15001:204 ", "Context": "osvpi_proc_check_recurse", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "9", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Variable": "__EXTEN_LIST", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "15001:204 "}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "__EXTEN_LIST_LAST_EDIT_TIME=1509116084", "Context": "osvpi_proc_check_recurse", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "10", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Variable": "__EXTEN_LIST_LAST_EDIT_TIME", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "1509116084"}, - {"Channel": "SIP/150010002-00000008", "Application": "Return", "Privilege": "dialplan,all", "AppData": "", "Context": "osvpi_proc_check_recurse", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "11", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Variable": "GOSUB_RETVAL", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "__ORIG_EXTEN=204", "Context": "osvpi_account_call_int", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "3", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Variable": "__ORIG_EXTEN", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "204"}, - {"Channel": "SIP/150010002-00000008", "Variable": "ODBCROWS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "0"}, - {"Channel": "SIP/150010002-00000008", "Variable": "ODBCSTATUS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "NODATA"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "ARRAY(conference_id,user_password,admin_password,conference_language)=", "Context": "osvpi_account_call_int", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "4", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Variable": "conference_id", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Variable": "user_password", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Variable": "admin_password", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Variable": "conference_language", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Application": "GotoIf", "Privilege": "dialplan,all", "AppData": "0?osvpi_route_conference,ID,1", "Context": "osvpi_account_call_int", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "5", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Variable": "ODBCROWS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "0"}, - {"Channel": "SIP/150010002-00000008", "Variable": "ODBCSTATUS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "NODATA"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "ARRAY(route_id,client_timezone)=", "Context": "osvpi_account_call_int", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "6", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Variable": "route_id", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Variable": "client_timezone", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Application": "GotoIf", "Privilege": "dialplan,all", "AppData": "0?osvpi_route_root,204,restart", "Context": "osvpi_account_call_int", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "7", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Variable": "ODBCROWS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "0"}, - {"Channel": "SIP/150010002-00000008", "Variable": "ODBCSTATUS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "NODATA"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "ARRAY(all_extensions,limited_extensions,password,account_spy_language)=", "Context": "osvpi_account_call_int", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "8", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Variable": "all_extensions", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Variable": "limited_extensions", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Variable": "password", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Variable": "account_spy_language", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Application": "GotoIf", "Privilege": "dialplan,all", "AppData": "0?osvpi_account_spy,204,1", "Context": "osvpi_account_call_int", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "9", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Variable": "ODBCROWS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "1"}, - {"Channel": "SIP/150010002-00000008", "Variable": "ODBCSTATUS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "SUCCESS"}, - {"Channel": "SIP/150010002-00000008", "Variable": "~ODBCFIELDS~", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "interfaces"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "ARRAY(interfaces)=Local/ID690153@osvpi_route_phoneaccount", "Context": "osvpi_account_call_int", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "10", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Variable": "interfaces", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "Local/ID690153@osvpi_route_phoneaccount"}, - {"Channel": "SIP/150010002-00000008", "Application": "GotoIf", "Privilege": "dialplan,all", "AppData": "0?osvpi_handle_unallocated,204,1", "Context": "osvpi_account_call_int", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "11", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Application": "Dial", "Privilege": "dialplan,all", "AppData": "Local/ID690153@osvpi_route_phoneaccount", "Context": "osvpi_account_call_int", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "12", "Extension": "204"}, - {"Channel": "SIP/150010002-00000008", "Variable": "DIALSTATUS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Variable": "DIALEDPEERNUMBER", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Variable": "DIALEDPEERNAME", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Variable": "ANSWEREDTIME", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Variable": "DIALEDTIME", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;1", "Exten": "ID690153", "AccountCode": "", "Privilege": "call,all", "CallerIDName": "", "ChannelStateDesc": "Down", "CallerIDNum": "", "content": "", "ChannelState": "0", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Uniqueid": "0f00dcaa884f-1509116084.20"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Exten": "ID690153", "AccountCode": "", "Privilege": "call,all", "CallerIDName": "", "ChannelStateDesc": "Ring", "CallerIDNum": "", "content": "", "ChannelState": "4", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Uniqueid": "0f00dcaa884f-1509116084.21"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;1", "Variable": "DIALEDPEERNUMBER", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.20", "Privilege": "dialplan,all", "Value": "ID690153@osvpi_route_phoneaccount"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;1", "CallerIDName": "", "CallerIDNum": "204", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": "", "Event": "NewCallerid", "Uniqueid": "0f00dcaa884f-1509116084.20", "Privilege": "call,all"}, - {"Channel1": "Local/ID690153@osvpi_route_phoneaccount-00000005;1", "LocalOptimization": "Yes", "Channel2": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Exten": "ID690153", "content": "", "Event": "LocalBridge", "Uniqueid2": "0f00dcaa884f-1509116084.21", "Privilege": "call,all", "Context": "osvpi_route_phoneaccount", "Uniqueid1": "0f00dcaa884f-1509116084.20"}, - {"Channel": "SIP/150010002-00000008", "UniqueID": "0f00dcaa884f-1509116084.19", "Dialstring": "ID690153@osvpi_route_phoneaccount", "DestUniqueID": "0f00dcaa884f-1509116084.20", "Privilege": "call,all", "ConnectedLineNum": "", "CallerIDName": "David Meadows", "content": "", "ConnectedLineName": "", "Destination": "Local/ID690153@osvpi_route_phoneaccount-00000005;1", "CallerIDNum": "202", "SubEvent": "Begin", "Event": "Dial"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "ODBCROWS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "1"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "ODBCSTATUS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "SUCCESS"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "~ODBCFIELDS~", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Application": "Set", "Privilege": "dialplan,all", "AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=150010004,accountid,dutch,from,,0", "Context": "osvpi_route_phoneaccount", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.21", "Priority": "1", "Extension": "ID690153"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "__dst_account_id", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "150010004"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "l_mangle_did", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "accountid"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "l_mangle_cli", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "dutch"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "l_cli_header", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "from"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "l_primary_pickupgroup", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "app_account", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "0"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Application": "GotoIf", "Privilege": "dialplan,all", "AppData": "0?vialer", "Context": "osvpi_route_phoneaccount", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.21", "Priority": "2", "Extension": "ID690153"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Application": "Set", "Privilege": "dialplan,all", "AppData": "_PICKUPMARK=", "Context": "osvpi_route_phoneaccount", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.21", "Priority": "3", "Extension": "ID690153"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "_PICKUPMARK", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Application": "Set", "Privilege": "dialplan,all", "AppData": "l_trunk=0", "Context": "osvpi_route_phoneaccount", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.21", "Priority": "4", "Extension": "ID690153"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "l_trunk", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "0"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Application": "Goto", "Privilege": "dialplan,all", "AppData": "osvpi_route_account,ID690153,1", "Context": "osvpi_route_phoneaccount", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.21", "Priority": "5", "Extension": "ID690153"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "ODBCROWS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "1"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "ODBCSTATUS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "SUCCESS"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "~ODBCFIELDS~", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "proxy"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Application": "Set", "Privilege": "dialplan,all", "AppData": "ARRAY(l_proxy)=172.20.0.13", "Context": "osvpi_route_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.21", "Priority": "1", "Extension": "ID690153"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "l_proxy", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "172.20.0.13"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Application": "Gosub", "Privilege": "dialplan,all", "AppData": "osvpi_proc_mangle_number,accountid,1(150010004,204)", "Context": "osvpi_route_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.21", "Priority": "2", "Extension": "ID690153"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "LOCAL(ARG1)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "150010004"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "LOCAL(ARG2)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "204"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "LOCAL(ARGC)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "2"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Application": "Set", "Privilege": "dialplan,all", "AppData": "MANGLED_EXTEN=150010004", "Context": "osvpi_proc_mangle_number", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.21", "Priority": "1", "Extension": "accountid"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "MANGLED_EXTEN", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "150010004"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Application": "Return", "Privilege": "dialplan,all", "AppData": "", "Context": "osvpi_proc_mangle_number", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.21", "Priority": "2", "Extension": "accountid"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "GOSUB_RETVAL", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Application": "Set", "Privilege": "dialplan,all", "AppData": "l_did=150010004", "Context": "osvpi_route_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.21", "Priority": "3", "Extension": "ID690153"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "l_did", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "150010004"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Application": "Gosub", "Privilege": "dialplan,all", "AppData": "osvpi_proc_mangle_number,dutch,1(150010004,202)", "Context": "osvpi_route_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.21", "Priority": "4", "Extension": "ID690153"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "LOCAL(ARG1)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "150010004"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "LOCAL(ARG2)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "202"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "LOCAL(ARGC)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "2"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Application": "GotoIf", "Privilege": "dialplan,all", "AppData": "1?fullzero,1", "Context": "osvpi_proc_mangle_number", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.21", "Priority": "1", "Extension": "dutch"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Application": "Set", "Privilege": "dialplan,all", "AppData": "MANGLED_EXTEN=202", "Context": "osvpi_proc_mangle_number", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.21", "Priority": "1", "Extension": "fullzero"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "MANGLED_EXTEN", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "202"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Application": "Return", "Privilege": "dialplan,all", "AppData": "", "Context": "osvpi_proc_mangle_number", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.21", "Priority": "2", "Extension": "fullzero"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "GOSUB_RETVAL", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Application": "Set", "Privilege": "dialplan,all", "AppData": "l_mangle_cli_hdr=from-dutch", "Context": "osvpi_route_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.21", "Priority": "5", "Extension": "ID690153"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "l_mangle_cli_hdr", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "from-dutch"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Application": "Set", "Privilege": "dialplan,all", "AppData": "l_fromuser=", "Context": "osvpi_route_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.21", "Priority": "6", "Extension": "ID690153"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "l_fromuser", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Application": "ExecIf", "Privilege": "dialplan,all", "AppData": "1?Set(l_fromuser=202)", "Context": "osvpi_route_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.21", "Priority": "7", "Extension": "ID690153"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "l_fromuser", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "202"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "ODBCROWS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "1"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "ODBCSTATUS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "SUCCESS"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "~ODBCFIELDS~", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "IF((SELECT 1 FROM baseaccount_account ba INNER JOIN userdestination_selecteduserdestination udsud ON udsud.phoneaccount_id = ba.id INNER JOIN userdestination_userdestination udud ON udud.id = udsud.userdestination_id INNER JOIN crm_cloudctiuser cccu O"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Application": "Set", "Privilege": "dialplan,all", "AppData": "ARRAY(cloudcti)=0", "Context": "osvpi_route_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.21", "Priority": "8", "Extension": "ID690153"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "cloudcti", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "0"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Application": "GotoIf", "Privilege": "dialplan,all", "AppData": "1?skipcloudcti", "Context": "osvpi_route_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.21", "Priority": "9", "Extension": "ID690153"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "ODBCROWS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "1"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "ODBCSTATUS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "SUCCESS"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "~ODBCFIELDS~", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "GROUP_CONCAT(DISTINCT(csw.url) SEPARATOR ' '),internal_number,GROUP_CONCAT(DISTINCT(ud.internal_number) SEPARATOR ' ')"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "accountinternalnumber", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "204"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "userinternalnumbers", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Application": "Goto", "Privilege": "dialplan,all", "AppData": "osvpi_proc_proxy_out,204,1", "Context": "osvpi_route_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.21", "Priority": "13", "Extension": "ID690153"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Application": "SIPAddHeader", "Privilege": "dialplan,all", "AppData": "X-Accountcode: 150010004", "Context": "osvpi_proc_proxy_out", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.21", "Priority": "1", "Extension": "204"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "__SIPADDHEADER01", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "X-Accountcode: 150010004"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Application": "SIPAddHeader", "Privilege": "dialplan,all", "AppData": "X-Insecure-Protection: geheim", "Context": "osvpi_proc_proxy_out", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.21", "Priority": "2", "Extension": "204"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "__SIPADDHEADER02", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "X-Insecure-Protection: geheim"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Application": "SIPAddHeader", "Privilege": "dialplan,all", "AppData": "X-Mangle-Cli: from-dutch", "Context": "osvpi_proc_proxy_out", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.21", "Priority": "3", "Extension": "204"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "__SIPADDHEADER03", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "X-Mangle-Cli: from-dutch"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Application": "Set", "Privilege": "dialplan,all", "AppData": "_dial_options_callaccept=", "Context": "osvpi_proc_proxy_out", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.21", "Priority": "4", "Extension": "204"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "_dial_options_callaccept", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Application": "Set", "Privilege": "dialplan,all", "AppData": "_dial_options_callnotify=", "Context": "osvpi_proc_proxy_out", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.21", "Priority": "5", "Extension": "204"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "_dial_options_callnotify", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Application": "ExecIf", "Privilege": "dialplan,all", "AppData": "0?Set(l_proxy=opensipsfg)", "Context": "osvpi_proc_proxy_out", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.21", "Priority": "6", "Extension": "204"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Application": "Set", "Privilege": "dialplan,all", "AppData": "l_extra_options=", "Context": "osvpi_proc_proxy_out", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.21", "Priority": "7", "Extension": "204"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "l_extra_options", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Application": "Dial", "Privilege": "dialplan,all", "AppData": "SIP/150010004/150010004/172.20.0.13!!202,,", "Context": "osvpi_proc_proxy_out", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.21", "Priority": "8", "Extension": "204"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "DIALSTATUS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "DIALEDPEERNUMBER", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "DIALEDPEERNAME", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "ANSWEREDTIME", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "DIALEDTIME", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010004-00000009", "Exten": "", "AccountCode": "150010004", "Privilege": "call,all", "CallerIDName": "", "ChannelStateDesc": "Down", "CallerIDNum": "", "content": "", "ChannelState": "0", "Context": "osvpi_account", "Event": "Newchannel", "Uniqueid": "0f00dcaa884f-1509116084.22"}, - {"Channel": "SIP/150010004-00000009", "Variable": "SIPCALLID", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.22", "Privilege": "dialplan,all", "Value": "0cfefda6361f7a8709d981931c2a45fd@test.voipgrid.nl"}, - {"Channel": "SIP/150010004-00000009", "Variable": "__client_id", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.22", "Privilege": "dialplan,all", "Value": "15001"}, - {"Channel": "SIP/150010004-00000009", "Variable": "__account_id", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.22", "Privilege": "dialplan,all", "Value": "150010004"}, - {"Channel": "SIP/150010004-00000009", "Variable": "__record_call", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.22", "Privilege": "dialplan,all", "Value": "no"}, - {"Channel": "SIP/150010004-00000009", "Variable": "__intprefix", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.22", "Privilege": "dialplan,all", "Value": "31"}, - {"Channel": "SIP/150010004-00000009", "Variable": "__limit_account", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.22", "Privilege": "dialplan,all", "Value": "4"}, - {"Channel": "SIP/150010004-00000009", "Variable": "__limit_client", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.22", "Privilege": "dialplan,all", "Value": "0"}, - {"Channel": "SIP/150010004-00000009", "Variable": "__hide_ext_cliname", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.22", "Privilege": "dialplan,all", "Value": "1"}, - {"Channel": "SIP/150010004-00000009", "Variable": "__TRANSFER_CONTEXT", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.22", "Privilege": "dialplan,all", "Value": "osvpi_account_transfer"}, - {"Channel": "SIP/150010004-00000009", "Variable": "DIALEDPEERNUMBER", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.22", "Privilege": "dialplan,all", "Value": "150010004/150010004/172.20.0.13!!202"}, - {"Channel": "SIP/150010004-00000009", "CallerIDName": "", "CallerIDNum": "204", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": "", "Event": "NewCallerid", "Uniqueid": "0f00dcaa884f-1509116084.22", "Privilege": "call,all"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "UniqueID": "0f00dcaa884f-1509116084.21", "Dialstring": "150010004/150010004/172.20.0.13!!202", "DestUniqueID": "0f00dcaa884f-1509116084.22", "Privilege": "call,all", "ConnectedLineNum": "204", "CallerIDName": "David Meadows", "content": "", "ConnectedLineName": "", "Destination": "SIP/150010004-00000009", "CallerIDNum": "202", "SubEvent": "Begin", "Event": "Dial"}, - {"Channel": "SIP/150010004-00000009", "CallerIDName": "", "ConnectedLineName": "David Meadows", "CallerIDNum": "204", "content": "", "ChannelStateDesc": "Ringing", "ConnectedLineNum": "202", "Event": "Newstate", "Uniqueid": "0f00dcaa884f-1509116084.22", "Privilege": "call,all", "ChannelState": "5"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;1", "CallerIDName": "", "ConnectedLineName": "David Meadows", "CallerIDNum": "204", "content": "", "ChannelStateDesc": "Ringing", "ConnectedLineNum": "202", "Event": "Newstate", "Uniqueid": "0f00dcaa884f-1509116084.20", "Privilege": "call,all", "ChannelState": "5"}, - {"Channel": "SIP/150010004-00000009", "CallerIDName": "", "ConnectedLineName": "David Meadows", "CallerIDNum": "204", "content": "", "ChannelStateDesc": "Up", "ConnectedLineNum": "202", "Event": "Newstate", "Uniqueid": "0f00dcaa884f-1509116084.22", "Privilege": "call,all", "ChannelState": "6"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "DIALSTATUS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "ANSWER"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "DIALEDPEERNAME", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "SIP/150010004-00000009"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "DIALEDPEERNUMBER", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "150010004/150010004/172.20.0.13!!202"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "BRIDGEPEER", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "SIP/150010004-00000009"}, - {"Channel": "SIP/150010004-00000009", "Variable": "BRIDGEPEER", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.22", "Privilege": "dialplan,all", "Value": "Local/ID690153@osvpi_route_phoneaccount-00000005;2"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "CallerIDName": "David Meadows", "ConnectedLineName": "", "CallerIDNum": "202", "content": "", "ChannelStateDesc": "Up", "ConnectedLineNum": "204", "Event": "Newstate", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "call,all", "ChannelState": "6"}, - {"Channel": "SIP/150010004-00000009", "Privilege": "call,all", "content": "", "AccountCode": "150010002", "Event": "NewAccountCode", "Uniqueid": "0f00dcaa884f-1509116084.22", "OldAccountCode": "150010002"}, - {"Channel1": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "CallerID1": "202", "Channel2": "SIP/150010004-00000009", "Bridgestate": "Link", "Event": "Bridge", "Uniqueid1": "0f00dcaa884f-1509116084.21", "content": "", "Privilege": "call,all", "Uniqueid2": "0f00dcaa884f-1509116084.22", "Bridgetype": "core", "CallerID2": "204"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "BRIDGEPEER", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "SIP/150010004-00000009"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "BRIDGEPVTCALLID", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "0cfefda6361f7a8709d981931c2a45fd@test.voipgrid.nl"}, - {"Channel": "SIP/150010004-00000009", "Variable": "BRIDGEPEER", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.22", "Privilege": "dialplan,all", "Value": "Local/ID690153@osvpi_route_phoneaccount-00000005;2"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "BRIDGEPEER", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "SIP/150010004-00000009"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "BRIDGEPVTCALLID", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "0cfefda6361f7a8709d981931c2a45fd@test.voipgrid.nl"}, - {"Channel": "SIP/150010004-00000009", "Variable": "BRIDGEPEER", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.22", "Privilege": "dialplan,all", "Value": "Local/ID690153@osvpi_route_phoneaccount-00000005;2"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;1", "CallerIDName": "", "ConnectedLineName": "David Meadows", "CallerIDNum": "204", "content": "", "ChannelStateDesc": "Up", "ConnectedLineNum": "202", "Event": "Newstate", "Uniqueid": "0f00dcaa884f-1509116084.20", "Privilege": "call,all", "ChannelState": "6"}, - {"Channel": "SIP/150010002-00000008", "Variable": "DIALSTATUS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "ANSWER"}, - {"Channel": "SIP/150010002-00000008", "Variable": "DIALEDPEERNAME", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "Local/ID690153@osvpi_route_phoneaccount-00000005;1"}, - {"Channel": "SIP/150010002-00000008", "Variable": "DIALEDPEERNUMBER", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "ID690153@osvpi_route_phoneaccount"}, - {"Channel": "SIP/150010002-00000008", "Variable": "BRIDGEPEER", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "Local/ID690153@osvpi_route_phoneaccount-00000005;1"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;1", "Variable": "BRIDGEPEER", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.20", "Privilege": "dialplan,all", "Value": "SIP/150010002-00000008"}, - {"Channel": "SIP/150010002-00000008", "CallerIDName": "David Meadows", "ConnectedLineName": "", "CallerIDNum": "202", "content": "", "ChannelStateDesc": "Up", "ConnectedLineNum": "", "Event": "Newstate", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "call,all", "ChannelState": "6"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;1", "Privilege": "call,all", "content": "", "AccountCode": "150010002", "Event": "NewAccountCode", "Uniqueid": "0f00dcaa884f-1509116084.20", "OldAccountCode": "150010002"}, - {"Channel1": "SIP/150010002-00000008", "CallerID1": "202", "Channel2": "Local/ID690153@osvpi_route_phoneaccount-00000005;1", "Bridgestate": "Link", "Event": "Bridge", "Uniqueid1": "0f00dcaa884f-1509116084.19", "content": "", "Privilege": "call,all", "Uniqueid2": "0f00dcaa884f-1509116084.20", "Bridgetype": "core", "CallerID2": "204"}, - {"Channel": "SIP/150010002-00000008", "Variable": "BRIDGEPEER", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "Local/ID690153@osvpi_route_phoneaccount-00000005;1"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;1", "Variable": "BRIDGEPEER", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.20", "Privilege": "dialplan,all", "Value": "SIP/150010002-00000008"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;1", "Variable": "BRIDGEPVTCALLID", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.20", "Privilege": "dialplan,all", "Value": "a26f80a9-79d4a043@10.13.36.116"}, - {"Channel": "SIP/150010002-00000008", "Variable": "BRIDGEPEER", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "Local/ID690153@osvpi_route_phoneaccount-00000005;1"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;1", "Variable": "BRIDGEPEER", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.20", "Privilege": "dialplan,all", "Value": "SIP/150010002-00000008"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;1", "Variable": "BRIDGEPVTCALLID", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.20", "Privilege": "dialplan,all", "Value": "a26f80a9-79d4a043@10.13.36.116"}, - {"CloneState": "Up", "OriginalState": "Up", "Original": "Local/ID690153@osvpi_route_phoneaccount-00000005;1", "content": "", "Event": "Masquerade", "Clone": "SIP/150010004-00000009", "Privilege": "call,all"}, - {"Channel": "SIP/150010004-00000009", "Newname": "SIP/150010004-00000009", "content": "", "Event": "Rename", "Uniqueid": "0f00dcaa884f-1509116084.22", "Privilege": "call,all"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;1", "Newname": "SIP/150010004-00000009", "content": "", "Event": "Rename", "Uniqueid": "0f00dcaa884f-1509116084.20", "Privilege": "call,all"}, - {"Channel": "SIP/150010004-00000009", "Newname": "Local/ID690153@osvpi_route_phoneaccount-00000005;1", "content": "", "Event": "Rename", "Uniqueid": "0f00dcaa884f-1509116084.22", "Privilege": "call,all"}, - {"Channel": "SIP/150010004-00000009", "CallerIDName": "", "CallerIDNum": "204", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": "", "Event": "NewCallerid", "Uniqueid": "0f00dcaa884f-1509116084.20", "Privilege": "call,all"}, - {"Channel1": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "CallerID1": "202", "Channel2": "Local/ID690153@osvpi_route_phoneaccount-00000005;1", "Bridgestate": "Unlink", "Event": "Bridge", "Uniqueid1": "0f00dcaa884f-1509116084.21", "content": "", "Privilege": "call,all", "Uniqueid2": "0f00dcaa884f-1509116084.22", "Bridgetype": "core", "CallerID2": "204"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "ANSWEREDTIME", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "0"}, - {"Channel": "SIP/150010002-00000008", "Variable": "BRIDGEPEER", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "SIP/150010004-00000009"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "DIALEDTIME", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "3"}, - {"Channel": "SIP/150010002-00000008", "Variable": "BRIDGEPVTCALLID", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "0cfefda6361f7a8709d981931c2a45fd@test.voipgrid.nl"}, - {"Channel": "SIP/150010004-00000009", "Variable": "BRIDGEPEER", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.20", "Privilege": "dialplan,all", "Value": "SIP/150010002-00000008"}, - {"Channel": "SIP/150010004-00000009", "Variable": "BRIDGEPVTCALLID", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.20", "Privilege": "dialplan,all", "Value": "a26f80a9-79d4a043@10.13.36.116"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "content": "", "Privilege": "call,all", "Uniqueid": "0f00dcaa884f-1509116084.21", "Event": "HangupRequest"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;1", "AccountCode": "150010002", "Privilege": "call,all", "Cause-txt": "Normal Clearing", "ConnectedLineNum": "202", "CallerIDName": "", "ConnectedLineName": "David Meadows", "CallerIDNum": "204", "content": "", "Event": "Hangup", "Uniqueid": "0f00dcaa884f-1509116084.22", "Cause": "16"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Variable": "DIALSTATUS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "dialplan,all", "Value": "ANSWER"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "UniqueID": "0f00dcaa884f-1509116084.21", "DialStatus": "ANSWER", "SubEvent": "End", "content": "", "Event": "Dial", "Privilege": "call,all"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "content": "", "Event": "SoftHangupRequest", "Uniqueid": "0f00dcaa884f-1509116084.21", "Privilege": "call,all", "Cause": "16"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Application": "GotoIf", "Privilege": "dialplan,all", "AppData": "1?nosip", "Context": "handlers", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.21", "Priority": "1", "Extension": "onhangup"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "Application": "GosubIf", "Privilege": "dialplan,all", "AppData": "0?osvpi_proc_httptouch,s,1()", "Context": "handlers", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.21", "Priority": "3", "Extension": "onhangup"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000005;2", "AccountCode": "150010002", "Privilege": "call,all", "Cause-txt": "Normal Clearing", "ConnectedLineNum": "204", "CallerIDName": "David Meadows", "ConnectedLineName": "", "CallerIDNum": "202", "content": "", "Event": "Hangup", "Uniqueid": "0f00dcaa884f-1509116084.21", "Cause": "16"}, - {"Channel": "SIP/150010002-00000008", "UniqueID": "0f00dcaa884f-1509116084.19", "Class": "default", "State": "Start", "content": "", "Event": "MusicOnHold", "Privilege": "call,all"}, - {"Channel": "SIP/150010002-00000008", "Variable": "SIPREFERRINGCONTEXT", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "osvpi_account"}, - {"Channel": "SIP/150010002-00000008", "Variable": "SIPREFERREDBYHDR", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "\"Dave\" "}, - {"Channel": "SIP/150010004-00000009", "Variable": "BLINDTRANSFER", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.20", "Privilege": "dialplan,all", "Value": "SIP/150010002-00000008"}, - {"Channel": "SIP/150010002-00000008", "Variable": "BLINDTRANSFER", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "SIP/150010004-00000009"}, - {"Channel": "SIP/150010002-00000008", "Variable": "SIPDOMAIN", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "10.13.37.110"}, - {"Channel": "SIP/150010002-00000008", "Variable": "SIPTRANSFER", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "yes"}, - {"Channel": "SIP/150010002-00000008", "Variable": "_SIPTRANSFER", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "yes"}, - {"Channel": "SIP/150010002-00000008", "Variable": "_SIPTRANSFER_REFERER", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "UniqueID": "0f00dcaa884f-1509116084.19", "State": "Stop", "content": "", "Event": "MusicOnHold", "Privilege": "call,all"}, - {"Channel": "SIP/150010002-00000008", "UniqueID": "0f00dcaa884f-1509116084.19", "State": "Stop", "content": "", "Event": "MusicOnHold", "Privilege": "call,all"}, - {"Channel": "SIP/150010004-00000009", "SIP-Callid": "0cfefda6361f7a8709d981931c2a45fd@test.voipgrid.nl", "content": "", "Privilege": "call,all", "TransferMethod": "SIP", "Uniqueid": "0f00dcaa884f-1509116084.20", "TransferExten": "203", "TargetUniqueid": "0f00dcaa884f-1509116084.19", "TargetChannel": "SIP/150010002-00000008", "Event": "Transfer", "TransferType": "Blind", "TransferContext": "osvpi_account_transfer"}, - {"Channel1": "SIP/150010002-00000008", "CallerID1": "202", "Channel2": "SIP/150010004-00000009", "Bridgestate": "Unlink", "Event": "Bridge", "Uniqueid1": "0f00dcaa884f-1509116084.19", "content": "", "Privilege": "call,all", "Uniqueid2": "0f00dcaa884f-1509116084.20", "Bridgetype": "core", "CallerID2": "204"}, - {"Channel": "SIP/150010002-00000008", "Variable": "ANSWEREDTIME", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "7"}, - {"Channel": "SIP/150010002-00000008", "Variable": "DIALEDTIME", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "10"}, - {"Channel": "SIP/150010004-00000009", "AccountCode": "150010002", "Privilege": "call,all", "Cause-txt": "Normal Clearing", "ConnectedLineNum": "202", "CallerIDName": "", "ConnectedLineName": "David Meadows", "CallerIDNum": "204", "content": "", "Event": "Hangup", "Uniqueid": "0f00dcaa884f-1509116084.20", "Cause": "16"}, - {"Channel": "SIP/150010002-00000008", "Variable": "DIALSTATUS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "ANSWER"}, - {"Channel": "SIP/150010002-00000008", "UniqueID": "0f00dcaa884f-1509116084.19", "DialStatus": "ANSWER", "SubEvent": "End", "content": "", "Event": "Dial", "Privilege": "call,all"}, - {"Channel": "SIP/150010002-00000008", "Application": "NoOp", "Privilege": "dialplan,all", "AppData": "DEBUG: XFER: accountcode=150010002 client_id=15001 account_id=150010002", "Context": "osvpi_account_transfer", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "1", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Application": "GotoIf", "Privilege": "dialplan,all", "AppData": "0?accountinfo", "Context": "osvpi_account_transfer", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "2", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "CALLERID(name)=", "Context": "osvpi_account_transfer", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "3", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "CallerIDName": "", "CallerIDNum": "202", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "content": "", "Event": "NewCallerid", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "call,all"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "CALLERID(num)=202", "Context": "osvpi_account_transfer", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "4", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "CALLERID(pres)=allowed_passed_screen", "Context": "osvpi_account_transfer", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "5", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "l_changed=1", "Context": "osvpi_account_transfer", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "6", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Variable": "l_changed", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "1"}, - {"Channel": "SIP/150010002-00000008", "Application": "ForkCDR", "Privilege": "dialplan,all", "AppData": "ATe", "Context": "osvpi_account_transfer", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "7", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Application": "GotoIf", "Privilege": "dialplan,all", "AppData": "1?blindxfer:code302or482", "Context": "osvpi_account_transfer", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "8", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Application": "NoOp", "Privilege": "dialplan,all", "AppData": "DEBUG: REFER: SIPTRANSFER=yes BLINDTRANSFER=SIP/150010004-00000009 BRIDGEPEER=SIP/150010004-00000009 SIPTRANSFER_REFERER=", "Context": "osvpi_account_transfer", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "9", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "seconds_since_last_exten_list_addition=10", "Context": "osvpi_account_transfer", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "10", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Variable": "seconds_since_last_exten_list_addition", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "10"}, - {"Channel": "SIP/150010002-00000008", "Application": "ExecIf", "Privilege": "dialplan,all", "AppData": "1?Set(__EXTEN_LIST=)", "Context": "osvpi_account_transfer", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "11", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Variable": "__EXTEN_LIST", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "l_tmp=", "Context": "osvpi_account_transfer", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "12", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Variable": "l_tmp", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Application": "ExecIf", "Privilege": "dialplan,all", "AppData": "1?Set(l_tmp=150010004@10.13.37.110)", "Context": "osvpi_account_transfer", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "13", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Variable": "l_tmp", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "150010004@10.13.37.110"}, - {"Channel": "SIP/150010002-00000008", "Application": "ExecIf", "Privilege": "dialplan,all", "AppData": "0?Hangup()", "Context": "osvpi_account_transfer", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "14", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "l_tmp=150010004", "Context": "osvpi_account_transfer", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "15", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Variable": "l_tmp", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "150010004"}, - {"Channel": "SIP/150010002-00000008", "Application": "GotoIf", "Privilege": "dialplan,all", "AppData": "0?arefersb", "Context": "osvpi_account_transfer", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "16", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Application": "GotoIf", "Privilege": "dialplan,all", "AppData": "1?brefersa", "Context": "osvpi_account_transfer", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "17", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Application": "NoOp", "Privilege": "dialplan,all", "AppData": "New caller is 150010004", "Context": "osvpi_account_transfer", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "22", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "CDR(accountcode)=150010004", "Context": "osvpi_account_transfer", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "23", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Privilege": "call,all", "content": "", "AccountCode": "150010004", "Event": "NewAccountCode", "Uniqueid": "0f00dcaa884f-1509116084.19", "OldAccountCode": "150010002"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "__account_id=150010004", "Context": "osvpi_account_transfer", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "24", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Variable": "__account_id", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "150010004"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "__dst_account_id=", "Context": "osvpi_account_transfer", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "25", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Variable": "__dst_account_id", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Application": "Goto", "Privilege": "dialplan,all", "AppData": "proceed", "Context": "osvpi_account_transfer", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "26", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "__TRANSFER_CONTEXT=osvpi_account_transfer", "Context": "osvpi_account_transfer", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "33", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Variable": "__TRANSFER_CONTEXT", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "osvpi_account_transfer"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "user_privacy=0", "Context": "osvpi_account_transfer", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "34", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Variable": "user_privacy", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "0"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "is_transfer=1", "Context": "osvpi_account_transfer", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "35", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Variable": "is_transfer", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "1"}, - {"Channel": "SIP/150010002-00000008", "Variable": "ODBCROWS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "1"}, - {"Channel": "SIP/150010002-00000008", "Variable": "ODBCSTATUS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "SUCCESS"}, - {"Channel": "SIP/150010002-00000008", "Variable": "~ODBCFIELDS~", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "client_id,intprefix,internal_number,limit_account,limit_client"}, - {"Channel": "SIP/150010002-00000008", "Application": "ExecIf", "Privilege": "dialplan,all", "AppData": "1?Set(ARRAY(__client_id,__intprefix,dummy,__limit_account,__limit_client)=15001,31,204,4,0)", "Context": "osvpi_account_transfer", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "36", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Variable": "__client_id", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "15001"}, - {"Channel": "SIP/150010002-00000008", "Variable": "__intprefix", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "31"}, - {"Channel": "SIP/150010002-00000008", "Variable": "dummy", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "204"}, - {"Channel": "SIP/150010002-00000008", "Variable": "__limit_account", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "4"}, - {"Channel": "SIP/150010002-00000008", "Variable": "__limit_client", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "0"}, - {"Channel": "SIP/150010002-00000008", "Application": "ExecIf", "Privilege": "dialplan,all", "AppData": "0?Set(CHANNEL(musicclass)=)", "Context": "osvpi_account_transfer", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "37", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Application": "NoOp", "Privilege": "dialplan,all", "AppData": "DEBUG: CLI: name=\"\" num=202 ANI=202 presence=allowed_passed_screen", "Context": "osvpi_account_transfer", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "38", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Application": "Goto", "Privilege": "dialplan,all", "AppData": "osvpi_account,203,checkspeeddial", "Context": "osvpi_account_transfer", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "39", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Application": "GotoIf", "Privilege": "dialplan,all", "AppData": "1?continue", "Context": "osvpi_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "19", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Application": "Gosub", "Privilege": "dialplan,all", "AppData": "osvpi_proc_set_i18n_region,31,1", "Context": "osvpi_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "22", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Variable": "LOCAL(ARGC)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "0"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "i18n_region=NL", "Context": "osvpi_proc_set_i18n_region", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "1", "Extension": "31"}, - {"Channel": "SIP/150010002-00000008", "Variable": "i18n_region", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "NL"}, - {"Channel": "SIP/150010002-00000008", "Application": "Return", "Privilege": "dialplan,all", "AppData": "", "Context": "osvpi_proc_set_i18n_region", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "2", "Extension": "31"}, - {"Channel": "SIP/150010002-00000008", "Variable": "GOSUB_RETVAL", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Application": "Goto", "Privilege": "dialplan,all", "AppData": "osvpi_account_emergency_NL,203,1", "Context": "osvpi_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "23", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Application": "Goto", "Privilege": "dialplan,all", "AppData": "osvpi_account_no_emergency,203,1", "Context": "osvpi_account_emergency_NL", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "1", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Application": "Goto", "Privilege": "dialplan,all", "AppData": "osvpi_account,203,no-emergency", "Context": "osvpi_account_no_emergency", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "1", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Application": "Goto", "Privilege": "dialplan,all", "AppData": "osvpi_account_clean,203,1", "Context": "osvpi_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "24", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "return=osvpi_account_clean", "Context": "osvpi_account_clean", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "1", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Variable": "return", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "osvpi_account_clean"}, - {"Channel": "SIP/150010002-00000008", "Application": "Goto", "Privilege": "dialplan,all", "AppData": "osvpi_return_to_canonical,31i203,1", "Context": "osvpi_account_clean", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "2", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Variable": "INVALID_EXTEN", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "31i203"}, - {"Channel": "SIP/150010002-00000008", "Application": "Goto", "Privilege": "dialplan,all", "AppData": "osvpi_account_clean,203,local", "Context": "osvpi_return_to_canonical", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "1", "Extension": "i"}, - {"Channel": "SIP/150010002-00000008", "Application": "GotoIf", "Privilege": "dialplan,all", "AppData": "0?extern", "Context": "osvpi_account_clean", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "3", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Application": "Gosub", "Privilege": "dialplan,all", "AppData": "osvpi_proc_set_callerid,203,1(150010004,0,0)", "Context": "osvpi_account_clean", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "4", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Variable": "LOCAL(ARG1)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "150010004"}, - {"Channel": "SIP/150010002-00000008", "Variable": "LOCAL(ARG2)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "0"}, - {"Channel": "SIP/150010002-00000008", "Variable": "LOCAL(ARG3)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "0"}, - {"Channel": "SIP/150010002-00000008", "Variable": "LOCAL(ARGC)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "3"}, - {"Channel": "SIP/150010002-00000008", "Application": "GotoIf", "Privilege": "dialplan,all", "AppData": "1?done", "Context": "osvpi_proc_set_callerid", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "1", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Application": "Return", "Privilege": "dialplan,all", "AppData": "", "Context": "osvpi_proc_set_callerid", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "10", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Variable": "GOSUB_RETVAL", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Application": "GotoIf", "Privilege": "dialplan,all", "AppData": "3?osvpi_account_call_int,203,1:i,1", "Context": "osvpi_account_clean", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "5", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Application": "Gosub", "Privilege": "dialplan,all", "AppData": "osvpi_proc_check_limits,203,1", "Context": "osvpi_account_call_int", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "1", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Variable": "LOCAL(ARGC)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "0"}, - {"Channel": "SIP/150010002-00000008", "Application": "NoOp", "Privilege": "dialplan,all", "AppData": "DEBUG: call_limit: client 1/0 and account 0/4", "Context": "osvpi_proc_check_limits", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "1", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Application": "GotoIf", "Privilege": "dialplan,all", "AppData": "0?osvpi_handle_limit,203,client", "Context": "osvpi_proc_check_limits", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "2", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Application": "GotoIf", "Privilege": "dialplan,all", "AppData": "0?osvpi_handle_limit,203,account", "Context": "osvpi_proc_check_limits", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "3", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "GROUP(account_lim)=150010004", "Context": "osvpi_proc_check_limits", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "4", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "GROUP(client_lim)=15001", "Context": "osvpi_proc_check_limits", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "5", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Application": "Return", "Privilege": "dialplan,all", "AppData": "", "Context": "osvpi_proc_check_limits", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "6", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Variable": "GOSUB_RETVAL", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Application": "Gosub", "Privilege": "dialplan,all", "AppData": "osvpi_proc_check_recurse,203,1(15001)", "Context": "osvpi_account_call_int", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "2", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Variable": "LOCAL(ARG1)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "15001"}, - {"Channel": "SIP/150010002-00000008", "Variable": "LOCAL(ARGC)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "1"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "LOCAL(exten)=15001:203", "Context": "osvpi_proc_check_recurse", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "1", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Variable": "LOCAL(exten)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "15001:203"}, - {"Channel": "SIP/150010002-00000008", "Application": "NoOp", "Privilege": "dialplan,all", "AppData": "Recursion checking 15001:203 against ", "Context": "osvpi_proc_check_recurse", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "2", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "LOCAL(n)=0", "Context": "osvpi_proc_check_recurse", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "3", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Variable": "LOCAL(n)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "0"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "LOCAL(i)=1", "Context": "osvpi_proc_check_recurse", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "4", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Variable": "LOCAL(i)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "1"}, - {"Channel": "SIP/150010002-00000008", "Application": "GotoIf", "Privilege": "dialplan,all", "AppData": "1?add", "Context": "osvpi_proc_check_recurse", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "5", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "__EXTEN_LIST=15001:203 ", "Context": "osvpi_proc_check_recurse", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "9", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Variable": "__EXTEN_LIST", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "15001:203 "}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "__EXTEN_LIST_LAST_EDIT_TIME=1509116094", "Context": "osvpi_proc_check_recurse", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "10", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Variable": "__EXTEN_LIST_LAST_EDIT_TIME", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "1509116094"}, - {"Channel": "SIP/150010002-00000008", "Application": "Return", "Privilege": "dialplan,all", "AppData": "", "Context": "osvpi_proc_check_recurse", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "11", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Variable": "GOSUB_RETVAL", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "__ORIG_EXTEN=203", "Context": "osvpi_account_call_int", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "3", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Variable": "__ORIG_EXTEN", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "203"}, - {"Channel": "SIP/150010002-00000008", "Variable": "ODBCROWS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "0"}, - {"Channel": "SIP/150010002-00000008", "Variable": "ODBCSTATUS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "NODATA"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "ARRAY(conference_id,user_password,admin_password,conference_language)=", "Context": "osvpi_account_call_int", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "4", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Variable": "conference_id", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Variable": "user_password", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Variable": "admin_password", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Variable": "conference_language", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Application": "GotoIf", "Privilege": "dialplan,all", "AppData": "0?osvpi_route_conference,ID,1", "Context": "osvpi_account_call_int", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "5", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Variable": "ODBCROWS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "0"}, - {"Channel": "SIP/150010002-00000008", "Variable": "ODBCSTATUS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "NODATA"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "ARRAY(route_id,client_timezone)=", "Context": "osvpi_account_call_int", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "6", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Variable": "route_id", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Variable": "client_timezone", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Application": "GotoIf", "Privilege": "dialplan,all", "AppData": "0?osvpi_route_root,203,restart", "Context": "osvpi_account_call_int", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "7", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Variable": "ODBCROWS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "0"}, - {"Channel": "SIP/150010002-00000008", "Variable": "ODBCSTATUS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "NODATA"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "ARRAY(all_extensions,limited_extensions,password,account_spy_language)=", "Context": "osvpi_account_call_int", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "8", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Variable": "all_extensions", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Variable": "limited_extensions", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Variable": "password", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Variable": "account_spy_language", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Application": "GotoIf", "Privilege": "dialplan,all", "AppData": "0?osvpi_account_spy,203,1", "Context": "osvpi_account_call_int", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "9", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Variable": "ODBCROWS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "1"}, - {"Channel": "SIP/150010002-00000008", "Variable": "ODBCSTATUS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "SUCCESS"}, - {"Channel": "SIP/150010002-00000008", "Variable": "~ODBCFIELDS~", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "interfaces"}, - {"Channel": "SIP/150010002-00000008", "Application": "Set", "Privilege": "dialplan,all", "AppData": "ARRAY(interfaces)=Local/ID690152@osvpi_route_phoneaccount", "Context": "osvpi_account_call_int", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "10", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Variable": "interfaces", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "Local/ID690152@osvpi_route_phoneaccount"}, - {"Channel": "SIP/150010002-00000008", "Application": "GotoIf", "Privilege": "dialplan,all", "AppData": "0?osvpi_handle_unallocated,203,1", "Context": "osvpi_account_call_int", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "11", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Application": "Dial", "Privilege": "dialplan,all", "AppData": "Local/ID690152@osvpi_route_phoneaccount", "Context": "osvpi_account_call_int", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "12", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Variable": "DIALSTATUS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Variable": "DIALEDPEERNUMBER", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Variable": "DIALEDPEERNAME", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Variable": "ANSWEREDTIME", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010002-00000008", "Variable": "DIALEDTIME", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;1", "Exten": "ID690152", "AccountCode": "", "Privilege": "call,all", "CallerIDName": "", "ChannelStateDesc": "Down", "CallerIDNum": "", "content": "", "ChannelState": "0", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Uniqueid": "0f00dcaa884f-1509116094.23"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Exten": "ID690152", "AccountCode": "", "Privilege": "call,all", "CallerIDName": "", "ChannelStateDesc": "Ring", "CallerIDNum": "", "content": "", "ChannelState": "4", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Uniqueid": "0f00dcaa884f-1509116094.24"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;1", "Variable": "DIALEDPEERNUMBER", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.23", "Privilege": "dialplan,all", "Value": "ID690152@osvpi_route_phoneaccount"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;1", "CallerIDName": "", "CallerIDNum": "203", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": "", "Event": "NewCallerid", "Uniqueid": "0f00dcaa884f-1509116094.23", "Privilege": "call,all"}, - {"Channel1": "Local/ID690152@osvpi_route_phoneaccount-00000006;1", "LocalOptimization": "Yes", "Channel2": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Exten": "ID690152", "content": "", "Event": "LocalBridge", "Uniqueid2": "0f00dcaa884f-1509116094.24", "Privilege": "call,all", "Context": "osvpi_route_phoneaccount", "Uniqueid1": "0f00dcaa884f-1509116094.23"}, - {"Channel": "SIP/150010002-00000008", "UniqueID": "0f00dcaa884f-1509116084.19", "Dialstring": "ID690152@osvpi_route_phoneaccount", "DestUniqueID": "0f00dcaa884f-1509116094.23", "Privilege": "call,all", "ConnectedLineNum": "", "CallerIDName": "", "content": "", "ConnectedLineName": "", "Destination": "Local/ID690152@osvpi_route_phoneaccount-00000006;1", "CallerIDNum": "202", "SubEvent": "Begin", "Event": "Dial"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "ODBCROWS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": "1"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "ODBCSTATUS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": "SUCCESS"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "~ODBCFIELDS~", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Application": "Set", "Privilege": "dialplan,all", "AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=150010003,accountid,dutch,from,,0", "Context": "osvpi_route_phoneaccount", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116094.24", "Priority": "1", "Extension": "ID690152"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "__dst_account_id", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": "150010003"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "l_mangle_did", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": "accountid"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "l_mangle_cli", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": "dutch"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "l_cli_header", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": "from"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "l_primary_pickupgroup", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "app_account", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": "0"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Application": "GotoIf", "Privilege": "dialplan,all", "AppData": "0?vialer", "Context": "osvpi_route_phoneaccount", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116094.24", "Priority": "2", "Extension": "ID690152"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Application": "Set", "Privilege": "dialplan,all", "AppData": "_PICKUPMARK=", "Context": "osvpi_route_phoneaccount", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116094.24", "Priority": "3", "Extension": "ID690152"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "_PICKUPMARK", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Application": "Set", "Privilege": "dialplan,all", "AppData": "l_trunk=0", "Context": "osvpi_route_phoneaccount", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116094.24", "Priority": "4", "Extension": "ID690152"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "l_trunk", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": "0"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Application": "Goto", "Privilege": "dialplan,all", "AppData": "osvpi_route_account,ID690152,1", "Context": "osvpi_route_phoneaccount", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116094.24", "Priority": "5", "Extension": "ID690152"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "ODBCROWS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": "1"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "ODBCSTATUS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": "SUCCESS"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "~ODBCFIELDS~", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": "proxy"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Application": "Set", "Privilege": "dialplan,all", "AppData": "ARRAY(l_proxy)=172.20.0.13", "Context": "osvpi_route_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116094.24", "Priority": "1", "Extension": "ID690152"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "l_proxy", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": "172.20.0.13"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Application": "Gosub", "Privilege": "dialplan,all", "AppData": "osvpi_proc_mangle_number,accountid,1(150010003,203)", "Context": "osvpi_route_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116094.24", "Priority": "2", "Extension": "ID690152"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "LOCAL(ARG1)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": "150010003"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "LOCAL(ARG2)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": "203"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "LOCAL(ARGC)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": "2"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Application": "Set", "Privilege": "dialplan,all", "AppData": "MANGLED_EXTEN=150010003", "Context": "osvpi_proc_mangle_number", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116094.24", "Priority": "1", "Extension": "accountid"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "MANGLED_EXTEN", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": "150010003"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Application": "Return", "Privilege": "dialplan,all", "AppData": "", "Context": "osvpi_proc_mangle_number", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116094.24", "Priority": "2", "Extension": "accountid"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "GOSUB_RETVAL", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Application": "Set", "Privilege": "dialplan,all", "AppData": "l_did=150010003", "Context": "osvpi_route_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116094.24", "Priority": "3", "Extension": "ID690152"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "l_did", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": "150010003"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Application": "Gosub", "Privilege": "dialplan,all", "AppData": "osvpi_proc_mangle_number,dutch,1(150010003,202)", "Context": "osvpi_route_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116094.24", "Priority": "4", "Extension": "ID690152"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "LOCAL(ARG1)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": "150010003"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "LOCAL(ARG2)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": "202"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "LOCAL(ARGC)", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": "2"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Application": "GotoIf", "Privilege": "dialplan,all", "AppData": "1?fullzero,1", "Context": "osvpi_proc_mangle_number", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116094.24", "Priority": "1", "Extension": "dutch"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Application": "Set", "Privilege": "dialplan,all", "AppData": "MANGLED_EXTEN=202", "Context": "osvpi_proc_mangle_number", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116094.24", "Priority": "1", "Extension": "fullzero"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "MANGLED_EXTEN", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": "202"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Application": "Return", "Privilege": "dialplan,all", "AppData": "", "Context": "osvpi_proc_mangle_number", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116094.24", "Priority": "2", "Extension": "fullzero"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "GOSUB_RETVAL", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Application": "Set", "Privilege": "dialplan,all", "AppData": "l_mangle_cli_hdr=from-dutch", "Context": "osvpi_route_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116094.24", "Priority": "5", "Extension": "ID690152"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "l_mangle_cli_hdr", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": "from-dutch"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Application": "Set", "Privilege": "dialplan,all", "AppData": "l_fromuser=", "Context": "osvpi_route_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116094.24", "Priority": "6", "Extension": "ID690152"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "l_fromuser", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Application": "ExecIf", "Privilege": "dialplan,all", "AppData": "1?Set(l_fromuser=202)", "Context": "osvpi_route_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116094.24", "Priority": "7", "Extension": "ID690152"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "l_fromuser", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": "202"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "ODBCROWS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": "1"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "ODBCSTATUS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": "SUCCESS"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "~ODBCFIELDS~", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": "IF((SELECT 1 FROM baseaccount_account ba INNER JOIN userdestination_selecteduserdestination udsud ON udsud.phoneaccount_id = ba.id INNER JOIN userdestination_userdestination udud ON udud.id = udsud.userdestination_id INNER JOIN crm_cloudctiuser cccu O"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Application": "Set", "Privilege": "dialplan,all", "AppData": "ARRAY(cloudcti)=0", "Context": "osvpi_route_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116094.24", "Priority": "8", "Extension": "ID690152"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "cloudcti", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": "0"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Application": "GotoIf", "Privilege": "dialplan,all", "AppData": "1?skipcloudcti", "Context": "osvpi_route_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116094.24", "Priority": "9", "Extension": "ID690152"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "ODBCROWS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": "1"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "ODBCSTATUS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": "SUCCESS"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "~ODBCFIELDS~", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": "GROUP_CONCAT(DISTINCT(csw.url) SEPARATOR ' '),internal_number,GROUP_CONCAT(DISTINCT(ud.internal_number) SEPARATOR ' ')"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "accountinternalnumber", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": "203"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "userinternalnumbers", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": "603"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Application": "Goto", "Privilege": "dialplan,all", "AppData": "osvpi_proc_proxy_out,203,1", "Context": "osvpi_route_account", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116094.24", "Priority": "13", "Extension": "ID690152"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Application": "SIPAddHeader", "Privilege": "dialplan,all", "AppData": "X-Accountcode: 150010003", "Context": "osvpi_proc_proxy_out", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116094.24", "Priority": "1", "Extension": "203"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "__SIPADDHEADER01", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": "X-Accountcode: 150010003"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Application": "SIPAddHeader", "Privilege": "dialplan,all", "AppData": "X-Insecure-Protection: geheim", "Context": "osvpi_proc_proxy_out", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116094.24", "Priority": "2", "Extension": "203"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "__SIPADDHEADER02", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": "X-Insecure-Protection: geheim"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Application": "SIPAddHeader", "Privilege": "dialplan,all", "AppData": "X-Mangle-Cli: from-dutch", "Context": "osvpi_proc_proxy_out", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116094.24", "Priority": "3", "Extension": "203"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "__SIPADDHEADER03", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": "X-Mangle-Cli: from-dutch"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Application": "Set", "Privilege": "dialplan,all", "AppData": "_dial_options_callaccept=", "Context": "osvpi_proc_proxy_out", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116094.24", "Priority": "4", "Extension": "203"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "_dial_options_callaccept", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Application": "Set", "Privilege": "dialplan,all", "AppData": "_dial_options_callnotify=", "Context": "osvpi_proc_proxy_out", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116094.24", "Priority": "5", "Extension": "203"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "_dial_options_callnotify", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Application": "ExecIf", "Privilege": "dialplan,all", "AppData": "0?Set(l_proxy=opensipsfg)", "Context": "osvpi_proc_proxy_out", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116094.24", "Priority": "6", "Extension": "203"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Application": "Set", "Privilege": "dialplan,all", "AppData": "l_extra_options=", "Context": "osvpi_proc_proxy_out", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116094.24", "Priority": "7", "Extension": "203"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "l_extra_options", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Application": "Dial", "Privilege": "dialplan,all", "AppData": "SIP/150010003/150010003/172.20.0.13!!202,,", "Context": "osvpi_proc_proxy_out", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116094.24", "Priority": "8", "Extension": "203"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "DIALSTATUS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "DIALEDPEERNUMBER", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "DIALEDPEERNAME", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "ANSWEREDTIME", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "DIALEDTIME", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": ""}, - {"Channel": "SIP/150010003-0000000a", "Exten": "", "AccountCode": "150010003", "Privilege": "call,all", "CallerIDName": "", "ChannelStateDesc": "Down", "CallerIDNum": "", "content": "", "ChannelState": "0", "Context": "osvpi_account", "Event": "Newchannel", "Uniqueid": "0f00dcaa884f-1509116094.25"}, - {"Channel": "SIP/150010003-0000000a", "Variable": "SIPCALLID", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.25", "Privilege": "dialplan,all", "Value": "6b8409e41bc3a2f103699d603ca26e9d@test.voipgrid.nl"}, - {"Channel": "SIP/150010003-0000000a", "Variable": "__client_id", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.25", "Privilege": "dialplan,all", "Value": "15001"}, - {"Channel": "SIP/150010003-0000000a", "Variable": "__account_id", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.25", "Privilege": "dialplan,all", "Value": "150010003"}, - {"Channel": "SIP/150010003-0000000a", "Variable": "__record_call", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.25", "Privilege": "dialplan,all", "Value": "no"}, - {"Channel": "SIP/150010003-0000000a", "Variable": "__intprefix", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.25", "Privilege": "dialplan,all", "Value": "31"}, - {"Channel": "SIP/150010003-0000000a", "Variable": "__limit_account", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.25", "Privilege": "dialplan,all", "Value": "4"}, - {"Channel": "SIP/150010003-0000000a", "Variable": "__limit_client", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.25", "Privilege": "dialplan,all", "Value": "0"}, - {"Channel": "SIP/150010003-0000000a", "Variable": "__hide_ext_cliname", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.25", "Privilege": "dialplan,all", "Value": "1"}, - {"Channel": "SIP/150010003-0000000a", "Variable": "__TRANSFER_CONTEXT", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.25", "Privilege": "dialplan,all", "Value": "osvpi_account_transfer"}, - {"Channel": "SIP/150010003-0000000a", "Variable": "DIALEDPEERNUMBER", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.25", "Privilege": "dialplan,all", "Value": "150010003/150010003/172.20.0.13!!202"}, - {"Channel": "SIP/150010003-0000000a", "CallerIDName": "", "CallerIDNum": "203", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "content": "", "Event": "NewCallerid", "Uniqueid": "0f00dcaa884f-1509116094.25", "Privilege": "call,all"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "UniqueID": "0f00dcaa884f-1509116094.24", "Dialstring": "150010003/150010003/172.20.0.13!!202", "DestUniqueID": "0f00dcaa884f-1509116094.25", "Privilege": "call,all", "ConnectedLineNum": "203", "CallerIDName": "", "content": "", "ConnectedLineName": "", "Destination": "SIP/150010003-0000000a", "CallerIDNum": "202", "SubEvent": "Begin", "Event": "Dial"}, - {"Channel": "SIP/150010003-0000000a", "CallerIDName": "", "ConnectedLineName": "", "CallerIDNum": "203", "content": "", "ChannelStateDesc": "Ringing", "ConnectedLineNum": "202", "Event": "Newstate", "Uniqueid": "0f00dcaa884f-1509116094.25", "Privilege": "call,all", "ChannelState": "5"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;1", "CallerIDName": "", "ConnectedLineName": "", "CallerIDNum": "203", "content": "", "ChannelStateDesc": "Ringing", "ConnectedLineNum": "202", "Event": "Newstate", "Uniqueid": "0f00dcaa884f-1509116094.23", "Privilege": "call,all", "ChannelState": "5"}, - {"To": "172.20.0.254:38803", "CumulativeLoss": "0", "FractionLost": "0", "SentPackets": "244", "OurSSRC": "157591774", "content": "", "Privilege": "reporting,all", "SentRTP": "39944", "TheirLastSR": "0", "IAJitter": "0.0001", "DLSR": "18624.4750 (sec)", "SentNTP": "1509116096.1945608192", "SentOctets": "39040", "Event": "RTCPSent"}, - {"Channel": "SIP/150010003-0000000a", "AccountCode": "150010004", "Privilege": "call,all", "Cause-txt": "Call Rejected", "ConnectedLineNum": "202", "CallerIDName": "", "ConnectedLineName": "", "CallerIDNum": "203", "content": "", "Event": "Hangup", "Uniqueid": "0f00dcaa884f-1509116094.25", "Cause": "21"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Variable": "DIALSTATUS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "dialplan,all", "Value": "BUSY"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "UniqueID": "0f00dcaa884f-1509116094.24", "DialStatus": "BUSY", "SubEvent": "End", "content": "", "Event": "Dial", "Privilege": "call,all"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Application": "GotoIf", "Privilege": "dialplan,all", "AppData": "1?falloff", "Context": "osvpi_proc_proxy_out", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116094.24", "Priority": "9", "Extension": "203"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Application": "NoOp", "Privilege": "dialplan,all", "AppData": "Got hangupcause 21 from peer 150010003 (did=150010003, cli=202, pres=allowed_passed_screen, status=BUSY, proxy=172.20.0.13)", "Context": "osvpi_proc_proxy_out", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116094.24", "Priority": "12", "Extension": "203"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Application": "ExecIf", "Privilege": "dialplan,all", "AppData": "0?Hangup(USER_BUSY)", "Context": "osvpi_proc_proxy_out", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116094.24", "Priority": "13", "Extension": "203"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Application": "Hangup", "Privilege": "dialplan,all", "AppData": "NO_ANSWER", "Context": "osvpi_proc_proxy_out", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116094.24", "Priority": "14", "Extension": "203"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "content": "", "Event": "SoftHangupRequest", "Uniqueid": "0f00dcaa884f-1509116094.24", "Privilege": "call,all", "Cause": "16"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Application": "GotoIf", "Privilege": "dialplan,all", "AppData": "1?nosip", "Context": "handlers", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116094.24", "Priority": "1", "Extension": "onhangup"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "Application": "GosubIf", "Privilege": "dialplan,all", "AppData": "0?osvpi_proc_httptouch,s,1()", "Context": "handlers", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116094.24", "Priority": "3", "Extension": "onhangup"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;1", "Variable": "CHANLOCALSTATUS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116094.23", "Privilege": "dialplan,all", "Value": "BUSY"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;2", "AccountCode": "150010004", "Privilege": "call,all", "Cause-txt": "User alerting, no answer", "ConnectedLineNum": "203", "CallerIDName": "", "ConnectedLineName": "", "CallerIDNum": "202", "content": "", "Event": "Hangup", "Uniqueid": "0f00dcaa884f-1509116094.24", "Cause": "19"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000006;1", "AccountCode": "150010004", "Privilege": "call,all", "Cause-txt": "User alerting, no answer", "ConnectedLineNum": "202", "CallerIDName": "", "ConnectedLineName": "", "CallerIDNum": "203", "content": "", "Event": "Hangup", "Uniqueid": "0f00dcaa884f-1509116094.23", "Cause": "19"}, - {"Channel": "SIP/150010002-00000008", "Variable": "DIALSTATUS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "NOANSWER"}, - {"Channel": "SIP/150010002-00000008", "UniqueID": "0f00dcaa884f-1509116084.19", "DialStatus": "NOANSWER", "SubEvent": "End", "content": "", "Event": "Dial", "Privilege": "call,all"}, - {"Channel": "SIP/150010002-00000008", "Application": "GotoIf", "Privilege": "dialplan,all", "AppData": "1?osvpi_proc_hangup,203,1", "Context": "osvpi_account_call_int", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "13", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "Application": "Hangup", "Privilege": "dialplan,all", "AppData": "19", "Context": "osvpi_proc_hangup", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "1", "Extension": "203"}, - {"Channel": "SIP/150010002-00000008", "content": "", "Event": "SoftHangupRequest", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "call,all", "Cause": "16"}, - {"Channel": "SIP/150010002-00000008", "Application": "GotoIf", "Privilege": "dialplan,all", "AppData": "0?nosip", "Context": "handlers", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "1", "Extension": "onhangup"}, - {"Channel": "SIP/150010002-00000008", "Application": "NoOp", "Privilege": "dialplan,all", "AppData": "LOG: rtpqos: caller=172.20.0.254:38802;asterisk=0.0.0.0:15706;ssrc=157591774;themssrc=2140966265;lp=0;rxjitter=0.000000;rxcount=318;txjitter=0.000065;txcount=312;rlp=0;rtt=0.000000;billsec=0", "Context": "handlers", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "2", "Extension": "onhangup"}, - {"Channel": "SIP/150010002-00000008", "Application": "GosubIf", "Privilege": "dialplan,all", "AppData": "0?osvpi_proc_httptouch,s,1()", "Context": "handlers", "content": "", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509116084.19", "Priority": "3", "Extension": "onhangup"}, - {"Channel": "SIP/150010002-00000008", "Variable": "RTPAUDIOQOS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "ssrc=157591774;themssrc=2140966265;lp=0;rxjitter=0.000000;rxcount=318;txjitter=0.000065;txcount=312;rlp=0;rtt=0.000000"}, - {"Channel": "SIP/150010002-00000008", "Variable": "RTPAUDIOQOSJITTER", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;"}, - {"Channel": "SIP/150010002-00000008", "Variable": "RTPAUDIOQOSLOSS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;"}, - {"Channel": "SIP/150010002-00000008", "Variable": "RTPAUDIOQOSRTT", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;"}, - {"Channel": "SIP/150010002-00000008", "Variable": "RTPAUDIOQOS", "content": "", "Event": "VarSet", "Uniqueid": "0f00dcaa884f-1509116084.19", "Privilege": "dialplan,all", "Value": "ssrc=157591774;themssrc=2140966265;lp=0;rxjitter=0.000000;rxcount=318;txjitter=0.000065;txcount=312;rlp=0;rtt=0.000000"}, - {"Channel": "SIP/150010002-00000008", "AccountCode": "150010004", "Privilege": "call,all", "Cause-txt": "User alerting, no answer", "ConnectedLineNum": "", "CallerIDName": "", "ConnectedLineName": "", "CallerIDNum": "202", "content": "", "Event": "Hangup", "Uniqueid": "0f00dcaa884f-1509116084.19", "Cause": "19"} -] + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000018", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1530000704.455", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.455", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000018", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1530000704.455", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.455", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000018", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1530000704.455", "Priority": "5", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.455", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000018", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1530000704.455", "Priority": "6", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.455", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000010;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "07b796be1962-1530000704.455", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.458", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000010;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "07b796be1962-1530000704.455", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.460", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000010;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1530000704.455", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.458", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000010;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1530000704.455", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.458", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000010;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1530000704.455", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.458", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000010;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730151", "Language": "en", "Linkedid": "07b796be1962-1530000704.455", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.460", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000010;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730151", "Language": "en", "Linkedid": "07b796be1962-1530000704.455", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.460", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000010;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730151", "Language": "en", "Linkedid": "07b796be1962-1530000704.455", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.460", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730151", "LocalOneAccountCode": "150010001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "202", "LocalOneChannel": "Local/ID730151@osvpi_route_phoneaccount-00000010;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Andrew Garza", "LocalOneConnectedLineNum": "201", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "202", "LocalOneLanguage": "en", "LocalOneLinkedid": "07b796be1962-1530000704.455", "LocalOnePriority": "1", "LocalOneUniqueid": "07b796be1962-1530000704.458", "LocalOptimization": "Yes", "LocalTwoAccountCode": "150010001", "LocalTwoCallerIDName": "Andrew Garza", "LocalTwoCallerIDNum": "201", "LocalTwoChannel": "Local/ID730151@osvpi_route_phoneaccount-00000010;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "202", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730151", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "07b796be1962-1530000704.455", "LocalTwoPriority": "1", "LocalTwoUniqueid": "07b796be1962-1530000704.460", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000018", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-00000010;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "202", "DestLanguage": "en", "DestLinkedid": "07b796be1962-1530000704.455", "DestPriority": "1", "DestUniqueid": "07b796be1962-1530000704.458", "DialString": "ID730151@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1530000704.455", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.455", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010002-00000019", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "07b796be1962-1530000704.455", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.463", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000019", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1530000704.455", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.463", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000019", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1530000704.455", "OldAccountCode": "150010002", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.463", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000019", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1530000704.455", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.463", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000010;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "SIP/150010002-00000019", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "202", "DestLanguage": "nl", "DestLinkedid": "07b796be1962-1530000704.455", "DestPriority": "1", "DestUniqueid": "07b796be1962-1530000704.463", "DialString": "150010002/150010002/172.20.0.13!!201", "Event": "DialBegin", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1530000704.455", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.460", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000019", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1530000704.455", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.463", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000010;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1530000704.455", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.458", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000019", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1530000704.455", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.463", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000010;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "SIP/150010002-00000019", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "07b796be1962-1530000704.455", "DestPriority": "1", "DestUniqueid": "07b796be1962-1530000704.463", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1530000704.455", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.460", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000010;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1530000704.455", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.460", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000010;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1530000704.455", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.458", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "9297eff2-b17f-4716-b984-747d84b6661e", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000018", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-00000010;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "07b796be1962-1530000704.455", "DestPriority": "1", "DestUniqueid": "07b796be1962-1530000704.458", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1530000704.455", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.455", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000018", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1530000704.455", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.455", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "9297eff2-b17f-4716-b984-747d84b6661e", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000019", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "07b796be1962-1530000704.455", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.463", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "9297eff2-b17f-4716-b984-747d84b6661e", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000010;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1530000704.455", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.460", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "a82d5723-3433-4277-bf8a-da3e67ab169a", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "a82d5723-3433-4277-bf8a-da3e67ab169a", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000010;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "07b796be1962-1530000704.455", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.458", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "a82d5723-3433-4277-bf8a-da3e67ab169a", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000018", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "202", "Language": "nl", "Linkedid": "07b796be1962-1530000704.455", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.455", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "9297eff2-b17f-4716-b984-747d84b6661e", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000019", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "07b796be1962-1530000704.455", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.463", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "a82d5723-3433-4277-bf8a-da3e67ab169a", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000010;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "07b796be1962-1530000704.455", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.458", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "a82d5723-3433-4277-bf8a-da3e67ab169a", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000019", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "07b796be1962-1530000704.455", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "07b796be1962-1530000704.458", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.463", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "9297eff2-b17f-4716-b984-747d84b6661e", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000010;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "202", "Language": "en", "Linkedid": "07b796be1962-1530000704.455", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.460", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "9297eff2-b17f-4716-b984-747d84b6661e", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000010;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "07b796be1962-1530000704.455", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.458", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000010;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "07b796be1962-1530000704.455", "Priority": "4", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.460", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "a82d5723-3433-4277-bf8a-da3e67ab169a", "BridgeVideoSourceMode": "none", "Context": "osvpi_account_transfer", "Event": "BlindTransfer", "Extension": "203", "IsExternal": "Yes", "Privilege": "call,all", "Result": "Success", "SystemName": "07b796be1962", "TransfereeAccountCode": "150010001", "TransfereeCallerIDName": "Andrew Garza", "TransfereeCallerIDNum": "201", "TransfereeChannel": "SIP/150010001-00000018", "TransfereeChannelState": "6", "TransfereeChannelStateDesc": "Up", "TransfereeConnectedLineName": "", "TransfereeConnectedLineNum": "", "TransfereeContext": "osvpi_account_call_int", "TransfereeExten": "202", "TransfereeLanguage": "nl", "TransfereeLinkedid": "07b796be1962-1530000704.455", "TransfereePriority": "12", "TransfereeUniqueid": "07b796be1962-1530000704.455", "TransfererAccountCode": "150010001", "TransfererCallerIDName": "", "TransfererCallerIDNum": "202", "TransfererChannel": "SIP/150010002-00000019", "TransfererChannelState": "6", "TransfererChannelStateDesc": "Up", "TransfererConnectedLineName": "Andrew Garza", "TransfererConnectedLineNum": "201", "TransfererContext": "osvpi_account", "TransfererExten": "", "TransfererLanguage": "nl", "TransfererLinkedid": "07b796be1962-1530000704.455", "TransfererPriority": "1", "TransfererUniqueid": "07b796be1962-1530000704.463", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "a82d5723-3433-4277-bf8a-da3e67ab169a", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000019", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "07b796be1962-1530000704.455", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.463", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010002-00000019", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "07b796be1962-1530000704.455", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.463", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "a82d5723-3433-4277-bf8a-da3e67ab169a", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000018", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_transfer", "Event": "BridgeLeave", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1530000704.455", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.455", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "a82d5723-3433-4277-bf8a-da3e67ab169a", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000018", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_transfer", "Event": "NewCallerid", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1530000704.455", "Priority": "3", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.455", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000018", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_transfer", "Event": "NewAccountCode", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1530000704.455", "OldAccountCode": "150010001", "Priority": "23", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.455", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000011;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730152", "Language": "en", "Linkedid": "07b796be1962-1530000704.455", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000709.489", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000011;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730152", "Language": "en", "Linkedid": "07b796be1962-1530000704.455", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000709.491", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000011;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1530000704.455", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000709.489", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000011;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1530000704.455", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000709.489", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000011;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1530000704.455", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000709.489", "content": ""}, + {"AccountCode": "150010002", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000011;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730152", "Language": "en", "Linkedid": "07b796be1962-1530000704.455", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000709.491", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000011;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730152", "Language": "en", "Linkedid": "07b796be1962-1530000704.455", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000709.491", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000011;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730152", "Language": "en", "Linkedid": "07b796be1962-1530000704.455", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000709.491", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730152", "LocalOneAccountCode": "150010001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "203", "LocalOneChannel": "Local/ID730152@osvpi_route_phoneaccount-00000011;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "201", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "203", "LocalOneLanguage": "en", "LocalOneLinkedid": "07b796be1962-1530000704.455", "LocalOnePriority": "1", "LocalOneUniqueid": "07b796be1962-1530000709.489", "LocalOptimization": "Yes", "LocalTwoAccountCode": "150010002", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "201", "LocalTwoChannel": "Local/ID730152@osvpi_route_phoneaccount-00000011;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "203", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730152", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "07b796be1962-1530000704.455", "LocalTwoPriority": "1", "LocalTwoUniqueid": "07b796be1962-1530000709.491", "Privilege": "call,all", "SystemName": "07b796be1962", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000018", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "203", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-00000011;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "203", "DestLanguage": "en", "DestLinkedid": "07b796be1962-1530000704.455", "DestPriority": "1", "DestUniqueid": "07b796be1962-1530000709.489", "DialString": "ID730152@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1530000704.455", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.455", "content": ""}, + {"AccountCode": "150010003", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010003-0000001a", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "07b796be1962-1530000704.455", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000709.494", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-0000001a", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1530000704.455", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000709.494", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-0000001a", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1530000704.455", "OldAccountCode": "150010003", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000709.494", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-0000001a", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1530000704.455", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000709.494", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000011;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "203", "DestChannel": "SIP/150010003-0000001a", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "203", "DestLanguage": "nl", "DestLinkedid": "07b796be1962-1530000704.455", "DestPriority": "1", "DestUniqueid": "07b796be1962-1530000709.494", "DialString": "150010003/150010003/172.20.0.13!!201", "Event": "DialBegin", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1530000704.455", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000709.491", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-0000001a", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1530000704.455", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000709.494", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000011;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1530000704.455", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000709.489", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000011;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "203", "DestChannel": "SIP/150010003-0000001a", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "203", "DestLanguage": "nl", "DestLinkedid": "07b796be1962-1530000704.455", "DestPriority": "1", "DestUniqueid": "07b796be1962-1530000709.494", "DialStatus": "BUSY", "Event": "DialEnd", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1530000704.455", "Priority": "8", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000709.491", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Cause": "21", "Cause-txt": "Call Rejected", "Channel": "SIP/150010003-0000001a", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Hangup", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1530000704.455", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000709.494", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "201", "Cause": "19", "Cause-txt": "User alerting, no answer", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000011;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "07b796be1962-1530000704.455", "Priority": "4", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000709.491", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "201", "Channel": "SIP/150010001-00000018", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "203", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-00000011;1", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "203", "DestLanguage": "en", "DestLinkedid": "07b796be1962-1530000704.455", "DestPriority": "1", "DestUniqueid": "07b796be1962-1530000709.489", "DialStatus": "NOANSWER", "Event": "DialEnd", "Exten": "203", "Language": "nl", "Linkedid": "07b796be1962-1530000704.455", "Priority": "12", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.455", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Cause": "19", "Cause-txt": "User alerting, no answer", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000011;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "203", "Language": "en", "Linkedid": "07b796be1962-1530000704.455", "Priority": "1", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000709.489", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "201", "Cause": "19", "Cause-txt": "User alerting, no answer", "Channel": "SIP/150010001-00000018", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "07b796be1962-1530000704.455", "Priority": "4", "Privilege": "call,all", "SystemName": "07b796be1962", "Uniqueid": "07b796be1962-1530000704.455", "content": ""} +] \ No newline at end of file diff --git a/tests/fixtures/xfer_blonde/xfer_blonde_abacbc.json b/tests/fixtures/xfer_blonde/xfer_blonde_abacbc.json index 3b7c916..097b435 100644 --- a/tests/fixtures/xfer_blonde/xfer_blonde_abacbc.json +++ b/tests/fixtures/xfer_blonde/xfer_blonde_abacbc.json @@ -1,92 +1,100 @@ [ - {"Event": "FullyBooted", "Status": "Fully Booted", "Privilege": "system,all", "content": ""}, - {"ChannelState": "0", "CallerIDName": "Docker", "Channel": "SIP/150010002-00000008", "content": "", "Privilege": "call,all", "Event": "Newchannel", "Context": "osvpi_account", "Exten": "201", "AccountCode": "150010002", "Uniqueid": "63f2f9ce924a-1502178068.16", "ChannelStateDesc": "Down", "CallerIDNum": "150010002"}, - {"ConnectedLineName": "", "ChannelState": "4", "Event": "Newstate", "CallerIDName": "Docker", "Channel": "SIP/150010002-00000008", "ChannelStateDesc": "Ring", "content": "", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502178068.16", "CallerIDNum": "150010002", "ConnectedLineNum": ""}, - {"Event": "NewCallerid", "CallerIDName": "Robert Murray", "Channel": "SIP/150010002-00000008", "content": "", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502178068.16", "CallerIDNum": "150010002", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)"}, - {"Event": "NewCallerid", "CallerIDName": "Robert Murray", "Channel": "SIP/150010002-00000008", "content": "", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502178068.16", "CallerIDNum": "202", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)"}, - {"ChannelState": "0", "CallerIDName": "", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000004;1", "content": "", "Privilege": "call,all", "Event": "Newchannel", "Context": "osvpi_route_phoneaccount", "Exten": "ID710150", "AccountCode": "", "Uniqueid": "63f2f9ce924a-1502178068.17", "ChannelStateDesc": "Down", "CallerIDNum": ""}, - {"ChannelState": "4", "CallerIDName": "", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000004;2", "content": "", "Privilege": "call,all", "Event": "Newchannel", "Context": "osvpi_route_phoneaccount", "Exten": "ID710150", "AccountCode": "", "Uniqueid": "63f2f9ce924a-1502178068.18", "ChannelStateDesc": "Ring", "CallerIDNum": ""}, - {"Event": "NewCallerid", "CallerIDName": "", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000004;1", "content": "", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502178068.17", "CallerIDNum": "201", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"Channel1": "Local/ID710150@osvpi_route_phoneaccount-00000004;1", "Uniqueid1": "63f2f9ce924a-1502178068.17", "LocalOptimization": "Yes", "Uniqueid2": "63f2f9ce924a-1502178068.18", "Privilege": "call,all", "content": "", "Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Channel2": "Local/ID710150@osvpi_route_phoneaccount-00000004;2", "Exten": "ID710150"}, - {"CallerIDName": "Robert Murray", "Channel": "SIP/150010002-00000008", "Privilege": "call,all", "content": "", "Event": "Dial", "CallerIDNum": "202", "SubEvent": "Begin", "ConnectedLineName": "", "Destination": "Local/ID710150@osvpi_route_phoneaccount-00000004;1", "ConnectedLineNum": "", "Dialstring": "ID710150@osvpi_route_phoneaccount", "DestUniqueID": "63f2f9ce924a-1502178068.17", "UniqueID": "63f2f9ce924a-1502178068.16"}, - {"ChannelState": "0", "CallerIDName": "", "Channel": "SIP/150010001-00000009", "content": "", "Privilege": "call,all", "Event": "Newchannel", "Context": "osvpi_account", "Exten": "", "AccountCode": "150010001", "Uniqueid": "63f2f9ce924a-1502178068.19", "ChannelStateDesc": "Down", "CallerIDNum": ""}, - {"Event": "NewCallerid", "CallerIDName": "", "Channel": "SIP/150010001-00000009", "content": "", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502178068.19", "CallerIDNum": "201", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"CallerIDName": "Robert Murray", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000004;2", "Privilege": "call,all", "content": "", "Event": "Dial", "CallerIDNum": "202", "SubEvent": "Begin", "ConnectedLineName": "", "Destination": "SIP/150010001-00000009", "ConnectedLineNum": "201", "Dialstring": "150010001/150010001/172.20.0.13!!202", "DestUniqueID": "63f2f9ce924a-1502178068.19", "UniqueID": "63f2f9ce924a-1502178068.18"}, - {"ConnectedLineName": "Robert Murray", "ChannelState": "5", "Event": "Newstate", "CallerIDName": "", "Channel": "SIP/150010001-00000009", "ChannelStateDesc": "Ringing", "content": "", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502178068.19", "CallerIDNum": "201", "ConnectedLineNum": "202"}, - {"ConnectedLineName": "Robert Murray", "ChannelState": "5", "Event": "Newstate", "CallerIDName": "", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000004;1", "ChannelStateDesc": "Ringing", "content": "", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502178068.17", "CallerIDNum": "201", "ConnectedLineNum": "202"}, - {"ConnectedLineName": "Robert Murray", "ChannelState": "6", "Event": "Newstate", "CallerIDName": "", "Channel": "SIP/150010001-00000009", "ChannelStateDesc": "Up", "content": "", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502178068.19", "CallerIDNum": "201", "ConnectedLineNum": "202"}, - {"ConnectedLineName": "", "ChannelState": "6", "Event": "Newstate", "CallerIDName": "Robert Murray", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000004;2", "ChannelStateDesc": "Up", "content": "", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502178068.18", "CallerIDNum": "202", "ConnectedLineNum": "201"}, - {"ConnectedLineName": "Robert Murray", "ChannelState": "6", "Event": "Newstate", "CallerIDName": "", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000004;1", "ChannelStateDesc": "Up", "content": "", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502178068.17", "CallerIDNum": "201", "ConnectedLineNum": "202"}, - {"Uniqueid": "63f2f9ce924a-1502178068.19", "OldAccountCode": "150010002", "Privilege": "call,all", "content": "", "Event": "NewAccountCode", "Channel": "SIP/150010001-00000009", "AccountCode": "150010002"}, - {"Channel1": "Local/ID710150@osvpi_route_phoneaccount-00000004;2", "Uniqueid1": "63f2f9ce924a-1502178068.18", "Uniqueid2": "63f2f9ce924a-1502178068.19", "Privilege": "call,all", "content": "", "Bridgetype": "core", "Event": "Bridge", "Channel2": "SIP/150010001-00000009", "Bridgestate": "Link", "CallerID2": "201", "CallerID1": "202"}, - {"ConnectedLineName": "", "ChannelState": "6", "Event": "Newstate", "CallerIDName": "Robert Murray", "Channel": "SIP/150010002-00000008", "ChannelStateDesc": "Up", "content": "", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502178068.16", "CallerIDNum": "202", "ConnectedLineNum": ""}, - {"Uniqueid": "63f2f9ce924a-1502178068.17", "OldAccountCode": "150010002", "Privilege": "call,all", "content": "", "Event": "NewAccountCode", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000004;1", "AccountCode": "150010002"}, - {"Channel1": "SIP/150010002-00000008", "Uniqueid1": "63f2f9ce924a-1502178068.16", "Uniqueid2": "63f2f9ce924a-1502178068.17", "Privilege": "call,all", "content": "", "Bridgetype": "core", "Event": "Bridge", "Channel2": "Local/ID710150@osvpi_route_phoneaccount-00000004;1", "Bridgestate": "Link", "CallerID2": "201", "CallerID1": "202"}, - {"Clone": "SIP/150010001-00000009", "CloneState": "Up", "OriginalState": "Up", "content": "", "Privilege": "call,all", "Event": "Masquerade", "Original": "Local/ID710150@osvpi_route_phoneaccount-00000004;1"}, - {"Event": "Rename", "Channel": "SIP/150010001-00000009", "content": "", "Newname": "SIP/150010001-00000009", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502178068.19"}, - {"Event": "Rename", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000004;1", "content": "", "Newname": "SIP/150010001-00000009", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502178068.17"}, - {"Event": "Rename", "Channel": "SIP/150010001-00000009", "content": "", "Newname": "Local/ID710150@osvpi_route_phoneaccount-00000004;1", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502178068.19"}, - {"Event": "NewCallerid", "CallerIDName": "", "Channel": "SIP/150010001-00000009", "content": "", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502178068.17", "CallerIDNum": "201", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"Channel1": "Local/ID710150@osvpi_route_phoneaccount-00000004;2", "Uniqueid1": "63f2f9ce924a-1502178068.18", "Uniqueid2": "63f2f9ce924a-1502178068.19", "Privilege": "call,all", "content": "", "Bridgetype": "core", "Event": "Bridge", "Channel2": "Local/ID710150@osvpi_route_phoneaccount-00000004;1", "Bridgestate": "Unlink", "CallerID2": "201", "CallerID1": "202"}, - {"Uniqueid": "63f2f9ce924a-1502178068.18", "Event": "HangupRequest", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000004;2", "content": "", "Privilege": "call,all"}, - {"CallerIDName": "", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000004;1", "Privilege": "call,all", "content": "", "Event": "Hangup", "CallerIDNum": "201", "AccountCode": "150010002", "ConnectedLineName": "Robert Murray", "Uniqueid": "63f2f9ce924a-1502178068.19", "ConnectedLineNum": "202", "Cause": "16", "Cause-txt": "Normal Clearing"}, - {"Channel": "Local/ID710150@osvpi_route_phoneaccount-00000004;2", "Privilege": "call,all", "content": "", "Event": "Dial", "DialStatus": "ANSWER", "SubEvent": "End", "UniqueID": "63f2f9ce924a-1502178068.18"}, - {"Event": "SoftHangupRequest", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000004;2", "content": "", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502178068.18", "Cause": "16"}, - {"CallerIDName": "Robert Murray", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000004;2", "Privilege": "call,all", "content": "", "Event": "Hangup", "CallerIDNum": "202", "AccountCode": "150010002", "ConnectedLineName": "", "Uniqueid": "63f2f9ce924a-1502178068.18", "ConnectedLineNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing"}, - {"From": "172.20.0.254:64035", "content": "", "SequenceNumberCycles": "0", "LastSR": "0.0000000000", "Event": "RTCPReceived", "PT": "200(Sender Report)", "HighestSequence": "10891", "Privilege": "reporting,all", "IAJitter": "30", "DLSR": "32768.0000(sec)", "PacketsLost": "0", "SenderSSRC": "0", "FractionLost": "0", "ReceptionReports": "1"}, - {"Class": "default", "Channel": "SIP/150010001-00000009", "Privilege": "call,all", "content": "", "Event": "MusicOnHold", "State": "Start", "UniqueID": "63f2f9ce924a-1502178068.17"}, - {"OurSSRC": "2145041336", "Privilege": "reporting,all", "content": "", "SentRTP": "225439488", "Event": "RTCPSent", "TheirLastSR": "1796756733", "SentNTP": "1502178075.3007913984", "IAJitter": "0.0151", "DLSR": "3.3830 (sec)", "SentOctets": "15840", "To": "172.20.0.254:64035", "CumulativeLoss": "149", "FractionLost": "160", "SentPackets": "99"}, - {"ChannelState": "0", "CallerIDName": "Docker", "Channel": "SIP/150010002-0000000a", "content": "", "Privilege": "call,all", "Event": "Newchannel", "Context": "osvpi_account", "Exten": "203", "AccountCode": "150010002", "Uniqueid": "63f2f9ce924a-1502178076.20", "ChannelStateDesc": "Down", "CallerIDNum": "150010002"}, - {"ConnectedLineName": "", "ChannelState": "4", "Event": "Newstate", "CallerIDName": "Docker", "Channel": "SIP/150010002-0000000a", "ChannelStateDesc": "Ring", "content": "", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502178076.20", "CallerIDNum": "150010002", "ConnectedLineNum": ""}, - {"Event": "NewCallerid", "CallerIDName": "Robert Murray", "Channel": "SIP/150010002-0000000a", "content": "", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502178076.20", "CallerIDNum": "150010002", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)"}, - {"Event": "NewCallerid", "CallerIDName": "Robert Murray", "Channel": "SIP/150010002-0000000a", "content": "", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502178076.20", "CallerIDNum": "202", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)"}, - {"ChannelState": "0", "CallerIDName": "", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;1", "content": "", "Privilege": "call,all", "Event": "Newchannel", "Context": "osvpi_route_phoneaccount", "Exten": "ID710152", "AccountCode": "", "Uniqueid": "63f2f9ce924a-1502178076.21", "ChannelStateDesc": "Down", "CallerIDNum": ""}, - {"ChannelState": "4", "CallerIDName": "", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Privilege": "call,all", "Event": "Newchannel", "Context": "osvpi_route_phoneaccount", "Exten": "ID710152", "AccountCode": "", "Uniqueid": "63f2f9ce924a-1502178076.22", "ChannelStateDesc": "Ring", "CallerIDNum": ""}, - {"Event": "NewCallerid", "CallerIDName": "", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;1", "content": "", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502178076.21", "CallerIDNum": "203", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"Channel1": "Local/ID710152@osvpi_route_phoneaccount-00000005;1", "Uniqueid1": "63f2f9ce924a-1502178076.21", "LocalOptimization": "Yes", "Uniqueid2": "63f2f9ce924a-1502178076.22", "Privilege": "call,all", "content": "", "Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Channel2": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "Exten": "ID710152"}, - {"CallerIDName": "Robert Murray", "Channel": "SIP/150010002-0000000a", "Privilege": "call,all", "content": "", "Event": "Dial", "CallerIDNum": "202", "SubEvent": "Begin", "ConnectedLineName": "", "Destination": "Local/ID710152@osvpi_route_phoneaccount-00000005;1", "ConnectedLineNum": "", "Dialstring": "ID710152@osvpi_route_phoneaccount", "DestUniqueID": "63f2f9ce924a-1502178076.21", "UniqueID": "63f2f9ce924a-1502178076.20"}, - {"ChannelState": "0", "CallerIDName": "", "Channel": "SIP/150010003-0000000b", "content": "", "Privilege": "call,all", "Event": "Newchannel", "Context": "osvpi_account", "Exten": "", "AccountCode": "150010003", "Uniqueid": "63f2f9ce924a-1502178076.23", "ChannelStateDesc": "Down", "CallerIDNum": ""}, - {"Event": "NewCallerid", "CallerIDName": "", "Channel": "SIP/150010003-0000000b", "content": "", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502178076.23", "CallerIDNum": "203", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"CallerIDName": "Robert Murray", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "Privilege": "call,all", "content": "", "Event": "Dial", "CallerIDNum": "202", "SubEvent": "Begin", "ConnectedLineName": "", "Destination": "SIP/150010003-0000000b", "ConnectedLineNum": "203", "Dialstring": "150010003/150010003/172.20.0.13!!202", "DestUniqueID": "63f2f9ce924a-1502178076.23", "UniqueID": "63f2f9ce924a-1502178076.22"}, - {"ConnectedLineName": "Robert Murray", "ChannelState": "5", "Event": "Newstate", "CallerIDName": "", "Channel": "SIP/150010003-0000000b", "ChannelStateDesc": "Ringing", "content": "", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502178076.23", "CallerIDNum": "203", "ConnectedLineNum": "202"}, - {"ConnectedLineName": "Robert Murray", "ChannelState": "5", "Event": "Newstate", "CallerIDName": "", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;1", "ChannelStateDesc": "Ringing", "content": "", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502178076.21", "CallerIDNum": "203", "ConnectedLineNum": "202"}, - {"Channel": "SIP/150010002-00000008", "Event": "Transfer", "TransferMethod": "SIP", "TargetChannel": "SIP/150010002-0000000a", "content": "", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502178068.16", "TransferType": "Attended", "TargetUniqueid": "63f2f9ce924a-1502178076.20", "SIP-Callid": "22fccb4f-ab77851b@10.13.36.116"}, - {"Channel": "SIP/150010001-00000009", "content": "", "Privilege": "call,all", "Event": "MusicOnHold", "State": "Stop", "UniqueID": "63f2f9ce924a-1502178068.17"}, - {"Clone": "SIP/150010001-00000009", "CloneState": "Up", "OriginalState": "Ring", "content": "", "Privilege": "call,all", "Event": "Masquerade", "Original": "SIP/150010002-0000000a"}, - {"Event": "Rename", "Channel": "SIP/150010001-00000009", "content": "", "Newname": "SIP/150010001-00000009", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502178068.17"}, - {"Event": "Rename", "Channel": "SIP/150010002-0000000a", "content": "", "Newname": "SIP/150010001-00000009", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502178076.20"}, - {"Event": "Rename", "Channel": "SIP/150010001-00000009", "content": "", "Newname": "SIP/150010002-0000000a", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502178068.17"}, - {"Event": "NewCallerid", "CallerIDName": "", "Channel": "SIP/150010001-00000009", "content": "", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502178076.20", "CallerIDNum": "201", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"Channel1": "SIP/150010002-00000008", "Uniqueid1": "63f2f9ce924a-1502178068.16", "Uniqueid2": "63f2f9ce924a-1502178068.17", "Privilege": "call,all", "content": "", "Bridgetype": "core", "Event": "Bridge", "Channel2": "SIP/150010002-0000000a", "Bridgestate": "Unlink", "CallerID2": "202", "CallerID1": "202"}, - {"CallerIDName": "Robert Murray", "Channel": "SIP/150010002-0000000a", "Privilege": "call,all", "content": "", "Event": "Hangup", "CallerIDNum": "202", "AccountCode": "150010002", "ConnectedLineName": "", "Uniqueid": "63f2f9ce924a-1502178068.17", "ConnectedLineNum": "", "Cause": "16", "Cause-txt": "Normal Clearing"}, - {"Channel": "SIP/150010002-00000008", "Privilege": "call,all", "content": "", "Event": "Dial", "DialStatus": "ANSWER", "SubEvent": "End", "UniqueID": "63f2f9ce924a-1502178068.16"}, - {"Event": "SoftHangupRequest", "Channel": "SIP/150010002-00000008", "content": "", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502178068.16", "Cause": "16"}, - {"CallerIDName": "Robert Murray", "Channel": "SIP/150010002-00000008", "Privilege": "call,all", "content": "", "Event": "Hangup", "CallerIDNum": "202", "AccountCode": "150010002", "ConnectedLineName": "", "Uniqueid": "63f2f9ce924a-1502178068.16", "ConnectedLineNum": "", "Cause": "16", "Cause-txt": "Normal Clearing"}, - {"ConnectedLineName": "", "ChannelState": "6", "Event": "Newstate", "CallerIDName": "", "Channel": "SIP/150010003-0000000b", "ChannelStateDesc": "Up", "content": "", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502178076.23", "CallerIDNum": "203", "ConnectedLineNum": ""}, - {"ConnectedLineName": "", "ChannelState": "6", "Event": "Newstate", "CallerIDName": "Robert Murray", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "ChannelStateDesc": "Up", "content": "", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502178076.22", "CallerIDNum": "202", "ConnectedLineNum": "203"}, - {"ConnectedLineName": "", "ChannelState": "6", "Event": "Newstate", "CallerIDName": "", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;1", "ChannelStateDesc": "Up", "content": "", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502178076.21", "CallerIDNum": "203", "ConnectedLineNum": ""}, - {"Uniqueid": "63f2f9ce924a-1502178076.23", "OldAccountCode": "150010002", "Privilege": "call,all", "content": "", "Event": "NewAccountCode", "Channel": "SIP/150010003-0000000b", "AccountCode": "150010002"}, - {"Channel1": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "Uniqueid1": "63f2f9ce924a-1502178076.22", "Uniqueid2": "63f2f9ce924a-1502178076.23", "Privilege": "call,all", "content": "", "Bridgetype": "core", "Event": "Bridge", "Channel2": "SIP/150010003-0000000b", "Bridgestate": "Link", "CallerID2": "203", "CallerID1": "202"}, - {"Uniqueid": "63f2f9ce924a-1502178076.21", "OldAccountCode": "150010002", "Privilege": "call,all", "content": "", "Event": "NewAccountCode", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;1", "AccountCode": "150010002"}, - {"Channel1": "SIP/150010001-00000009", "Uniqueid1": "63f2f9ce924a-1502178076.20", "Uniqueid2": "63f2f9ce924a-1502178076.21", "Privilege": "call,all", "content": "", "Bridgetype": "core", "Event": "Bridge", "Channel2": "Local/ID710152@osvpi_route_phoneaccount-00000005;1", "Bridgestate": "Link", "CallerID2": "203", "CallerID1": "201"}, - {"Clone": "SIP/150010003-0000000b", "CloneState": "Up", "OriginalState": "Up", "content": "", "Privilege": "call,all", "Event": "Masquerade", "Original": "Local/ID710152@osvpi_route_phoneaccount-00000005;1"}, - {"Event": "Rename", "Channel": "SIP/150010003-0000000b", "content": "", "Newname": "SIP/150010003-0000000b", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502178076.23"}, - {"Event": "Rename", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;1", "content": "", "Newname": "SIP/150010003-0000000b", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502178076.21"}, - {"Event": "Rename", "Channel": "SIP/150010003-0000000b", "content": "", "Newname": "Local/ID710152@osvpi_route_phoneaccount-00000005;1", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502178076.23"}, - {"Event": "NewCallerid", "CallerIDName": "", "Channel": "SIP/150010003-0000000b", "content": "", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502178076.21", "CallerIDNum": "203", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"Channel1": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "Uniqueid1": "63f2f9ce924a-1502178076.22", "Uniqueid2": "63f2f9ce924a-1502178076.23", "Privilege": "call,all", "content": "", "Bridgetype": "core", "Event": "Bridge", "Channel2": "Local/ID710152@osvpi_route_phoneaccount-00000005;1", "Bridgestate": "Unlink", "CallerID2": "203", "CallerID1": "202"}, - {"Uniqueid": "63f2f9ce924a-1502178076.22", "Event": "HangupRequest", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Privilege": "call,all"}, - {"CallerIDName": "", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;1", "Privilege": "call,all", "content": "", "Event": "Hangup", "CallerIDNum": "203", "AccountCode": "150010002", "ConnectedLineName": "", "Uniqueid": "63f2f9ce924a-1502178076.23", "ConnectedLineNum": "", "Cause": "16", "Cause-txt": "Normal Clearing"}, - {"Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "Privilege": "call,all", "content": "", "Event": "Dial", "DialStatus": "ANSWER", "SubEvent": "End", "UniqueID": "63f2f9ce924a-1502178076.22"}, - {"Event": "SoftHangupRequest", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "content": "", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502178076.22", "Cause": "16"}, - {"CallerIDName": "Robert Murray", "Channel": "Local/ID710152@osvpi_route_phoneaccount-00000005;2", "Privilege": "call,all", "content": "", "Event": "Hangup", "CallerIDNum": "202", "AccountCode": "150010002", "ConnectedLineName": "", "Uniqueid": "63f2f9ce924a-1502178076.22", "ConnectedLineNum": "203", "Cause": "16", "Cause-txt": "Normal Clearing"}, - {"From": "172.20.0.254:64035", "content": "", "SequenceNumberCycles": "0", "LastSR": "0.0000000000", "Event": "RTCPReceived", "PT": "200(Sender Report)", "HighestSequence": "10973", "Privilege": "reporting,all", "IAJitter": "24", "DLSR": "32768.0000(sec)", "PacketsLost": "0", "SenderSSRC": "0", "FractionLost": "0", "ReceptionReports": "4"}, - {"OurSSRC": "495563446", "Privilege": "reporting,all", "content": "", "SentRTP": "225469248", "Event": "RTCPSent", "TheirLastSR": "1797226495", "SentNTP": "1502178080.3006570496", "IAJitter": "0.0110", "DLSR": "0.9430 (sec)", "SentOctets": "45600", "To": "172.20.0.254:64035", "CumulativeLoss": "149", "FractionLost": "0", "SentPackets": "285"}, - {"From": "172.20.0.254:47187", "content": "", "SequenceNumberCycles": "0", "LastSR": "0.0000000000", "Event": "RTCPReceived", "PT": "200(Sender Report)", "HighestSequence": "35878", "Privilege": "reporting,all", "IAJitter": "67", "DLSR": "0.0000(sec)", "PacketsLost": "18401", "SenderSSRC": "3779526709", "FractionLost": "53", "ReceptionReports": "1"}, - {"Uniqueid": "63f2f9ce924a-1502178076.21", "Event": "HangupRequest", "Channel": "SIP/150010003-0000000b", "content": "", "Privilege": "call,all"}, - {"Channel1": "SIP/150010001-00000009", "Uniqueid1": "63f2f9ce924a-1502178076.20", "Uniqueid2": "63f2f9ce924a-1502178076.21", "Privilege": "call,all", "content": "", "Bridgetype": "core", "Event": "Bridge", "Channel2": "SIP/150010003-0000000b", "Bridgestate": "Unlink", "CallerID2": "203", "CallerID1": "201"}, - {"CallerIDName": "", "Channel": "SIP/150010003-0000000b", "Privilege": "call,all", "content": "", "Event": "Hangup", "CallerIDNum": "203", "AccountCode": "150010002", "ConnectedLineName": "", "Uniqueid": "63f2f9ce924a-1502178076.21", "ConnectedLineNum": "", "Cause": "16", "Cause-txt": "Normal Clearing"}, - {"Channel": "SIP/150010001-00000009", "Privilege": "call,all", "content": "", "Event": "Dial", "DialStatus": "ANSWER", "SubEvent": "End", "UniqueID": "63f2f9ce924a-1502178076.20"}, - {"Event": "SoftHangupRequest", "Channel": "SIP/150010001-00000009", "content": "", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502178076.20", "Cause": "16"}, - {"CallerIDName": "", "Channel": "SIP/150010001-00000009", "Privilege": "call,all", "content": "", "Event": "Hangup", "CallerIDNum": "201", "AccountCode": "150010002", "ConnectedLineName": "", "Uniqueid": "63f2f9ce924a-1502178076.20", "ConnectedLineNum": "", "Cause": "16", "Cause-txt": "Normal Clearing"} -] + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000090", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2627", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000090", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2627", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000090", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "5", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2627", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000090", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "6", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2627", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005e;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2630", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2632", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005e;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2630", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005e;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2630", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005e;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2630", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730151", "Language": "en", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2632", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730151", "Language": "en", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2632", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730151", "Language": "en", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2632", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730151", "LocalOneAccountCode": "150010001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "202", "LocalOneChannel": "Local/ID730151@osvpi_route_phoneaccount-0000005e;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Andrew Garza", "LocalOneConnectedLineNum": "201", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "202", "LocalOneLanguage": "en", "LocalOneLinkedid": "f29ea68048f6-1530023922.2627", "LocalOnePriority": "1", "LocalOneUniqueid": "f29ea68048f6-1530023922.2630", "LocalOptimization": "Yes", "LocalTwoAccountCode": "150010001", "LocalTwoCallerIDName": "Andrew Garza", "LocalTwoCallerIDNum": "201", "LocalTwoChannel": "Local/ID730151@osvpi_route_phoneaccount-0000005e;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "202", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730151", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "f29ea68048f6-1530023922.2627", "LocalTwoPriority": "1", "LocalTwoUniqueid": "f29ea68048f6-1530023922.2632", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000090", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-0000005e;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "202", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530023922.2627", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530023922.2630", "DialString": "ID730151@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2627", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010002-00000091", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2635", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000091", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2635", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000091", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530023922.2627", "OldAccountCode": "150010002", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2635", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000091", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2635", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "SIP/150010002-00000091", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "202", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530023922.2627", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530023922.2635", "DialString": "150010002/150010002/172.20.0.13!!201", "Event": "DialBegin", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2632", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000091", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2635", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005e;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2630", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000091", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2635", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005e;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "SIP/150010002-00000091", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530023922.2627", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530023922.2635", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2632", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005e;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2632", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005e;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2630", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "3613c61c-c60a-48ce-bc39-a0b753b0fe3c", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000090", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-0000005e;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530023922.2627", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530023922.2630", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2627", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000090", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2627", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "3613c61c-c60a-48ce-bc39-a0b753b0fe3c", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000091", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2635", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "3613c61c-c60a-48ce-bc39-a0b753b0fe3c", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005e;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2632", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4116277d-ba02-44fa-8ffd-b0d0b8366fcf", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4116277d-ba02-44fa-8ffd-b0d0b8366fcf", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005e;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2630", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4116277d-ba02-44fa-8ffd-b0d0b8366fcf", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000090", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2627", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "3613c61c-c60a-48ce-bc39-a0b753b0fe3c", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000091", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2635", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4116277d-ba02-44fa-8ffd-b0d0b8366fcf", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005e;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2630", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4116277d-ba02-44fa-8ffd-b0d0b8366fcf", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000091", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "f29ea68048f6-1530023922.2630", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2635", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "3613c61c-c60a-48ce-bc39-a0b753b0fe3c", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005e;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2632", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "3613c61c-c60a-48ce-bc39-a0b753b0fe3c", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005e;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2630", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000005e;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2632", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000092", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "203", "Language": "en", "Linkedid": "f29ea68048f6-1530023931.2654", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023931.2654", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000092", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newstate", "Exten": "203", "Language": "nl", "Linkedid": "f29ea68048f6-1530023931.2654", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023931.2654", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000092", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "203", "Language": "nl", "Linkedid": "f29ea68048f6-1530023931.2654", "Priority": "5", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023931.2654", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000092", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "203", "Language": "nl", "Linkedid": "f29ea68048f6-1530023931.2654", "Priority": "6", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023931.2654", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000005f;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730152", "Language": "en", "Linkedid": "f29ea68048f6-1530023931.2654", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023931.2657", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000005f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730152", "Language": "en", "Linkedid": "f29ea68048f6-1530023931.2654", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023931.2659", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000005f;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "203", "Language": "en", "Linkedid": "f29ea68048f6-1530023931.2654", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023931.2657", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000005f;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "203", "Language": "en", "Linkedid": "f29ea68048f6-1530023931.2654", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023931.2657", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000005f;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "203", "Language": "en", "Linkedid": "f29ea68048f6-1530023931.2654", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023931.2657", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000005f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730152", "Language": "en", "Linkedid": "f29ea68048f6-1530023931.2654", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023931.2659", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000005f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730152", "Language": "en", "Linkedid": "f29ea68048f6-1530023931.2654", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023931.2659", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000005f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730152", "Language": "en", "Linkedid": "f29ea68048f6-1530023931.2654", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023931.2659", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730152", "LocalOneAccountCode": "150010001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "203", "LocalOneChannel": "Local/ID730152@osvpi_route_phoneaccount-0000005f;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Andrew Garza", "LocalOneConnectedLineNum": "201", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "203", "LocalOneLanguage": "en", "LocalOneLinkedid": "f29ea68048f6-1530023931.2654", "LocalOnePriority": "1", "LocalOneUniqueid": "f29ea68048f6-1530023931.2657", "LocalOptimization": "Yes", "LocalTwoAccountCode": "150010001", "LocalTwoCallerIDName": "Andrew Garza", "LocalTwoCallerIDNum": "201", "LocalTwoChannel": "Local/ID730152@osvpi_route_phoneaccount-0000005f;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "203", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730152", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "f29ea68048f6-1530023931.2654", "LocalTwoPriority": "1", "LocalTwoUniqueid": "f29ea68048f6-1530023931.2659", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000092", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "203", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-0000005f;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "203", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530023931.2654", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530023931.2657", "DialString": "ID730152@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "203", "Language": "nl", "Linkedid": "f29ea68048f6-1530023931.2654", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023931.2654", "content": ""}, + {"AccountCode": "150010003", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010003-00000093", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "f29ea68048f6-1530023931.2654", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023932.2662", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-00000093", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "203", "Language": "nl", "Linkedid": "f29ea68048f6-1530023931.2654", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023932.2662", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-00000093", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "203", "Language": "nl", "Linkedid": "f29ea68048f6-1530023931.2654", "OldAccountCode": "150010003", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023932.2662", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-00000093", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "203", "Language": "nl", "Linkedid": "f29ea68048f6-1530023931.2654", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023932.2662", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000005f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "203", "DestChannel": "SIP/150010003-00000093", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "203", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530023931.2654", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530023932.2662", "DialString": "150010003/150010003/172.20.0.13!!201", "Event": "DialBegin", "Exten": "203", "Language": "en", "Linkedid": "f29ea68048f6-1530023931.2654", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023931.2659", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-00000093", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "203", "Language": "nl", "Linkedid": "f29ea68048f6-1530023931.2654", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023932.2662", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000005f;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "203", "Language": "en", "Linkedid": "f29ea68048f6-1530023931.2654", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023931.2657", "content": ""}, + {"DestApp": "Dial", "DestType": "App", "Event": "AttendedTransfer", "IsExternal": "No", "OrigBridgeCreator": "", "OrigBridgeName": "", "OrigBridgeNumChannels": "2", "OrigBridgeTechnology": "simple_bridge", "OrigBridgeType": "basic", "OrigBridgeUniqueid": "4116277d-ba02-44fa-8ffd-b0d0b8366fcf", "OrigBridgeVideoSourceMode": "none", "OrigTransfererAccountCode": "150010001", "OrigTransfererCallerIDName": "Andrew Garza", "OrigTransfererCallerIDNum": "201", "OrigTransfererChannel": "SIP/150010001-00000090", "OrigTransfererChannelState": "6", "OrigTransfererChannelStateDesc": "Up", "OrigTransfererConnectedLineName": "", "OrigTransfererConnectedLineNum": "", "OrigTransfererContext": "osvpi_account_call_int", "OrigTransfererExten": "202", "OrigTransfererLanguage": "nl", "OrigTransfererLinkedid": "f29ea68048f6-1530023922.2627", "OrigTransfererPriority": "12", "OrigTransfererUniqueid": "f29ea68048f6-1530023922.2627", "Privilege": "call,all", "Result": "Success", "SecondTransfererAccountCode": "150010001", "SecondTransfererCallerIDName": "Andrew Garza", "SecondTransfererCallerIDNum": "201", "SecondTransfererChannel": "SIP/150010001-00000092", "SecondTransfererChannelState": "4", "SecondTransfererChannelStateDesc": "Ring", "SecondTransfererConnectedLineName": "", "SecondTransfererConnectedLineNum": "", "SecondTransfererContext": "osvpi_account_call_int", "SecondTransfererExten": "203", "SecondTransfererLanguage": "nl", "SecondTransfererLinkedid": "f29ea68048f6-1530023931.2654", "SecondTransfererPriority": "12", "SecondTransfererUniqueid": "f29ea68048f6-1530023931.2654", "SystemName": "f29ea68048f6", "TransfereeAccountCode": "150010001", "TransfereeCallerIDName": "", "TransfereeCallerIDNum": "202", "TransfereeChannel": "SIP/150010002-00000091", "TransfereeChannelState": "6", "TransfereeChannelStateDesc": "Up", "TransfereeConnectedLineName": "Andrew Garza", "TransfereeConnectedLineNum": "201", "TransfereeContext": "osvpi_account", "TransfereeExten": "", "TransfereeLanguage": "nl", "TransfereeLinkedid": "f29ea68048f6-1530023922.2627", "TransfereePriority": "1", "TransfereeUniqueid": "f29ea68048f6-1530023922.2635", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4116277d-ba02-44fa-8ffd-b0d0b8366fcf", "BridgeVideoSourceMode": "none", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000090", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2627", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4116277d-ba02-44fa-8ffd-b0d0b8366fcf", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000091", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2635", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010001-00000092", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "203", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-0000005f;1", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "203", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530023931.2654", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530023931.2657", "DialStatus": "NOANSWER", "Event": "DialEnd", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530023931.2654", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023931.2654", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000091", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "203", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-0000005f;1", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "203", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530023931.2654", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530023931.2657", "DialString": "ID730152@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2635", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000091", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "NewConnectedLine", "Exten": "203", "Language": "nl", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2635", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000005f;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "203", "Language": "en", "Linkedid": "f29ea68048f6-1530023931.2654", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023931.2657", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-00000093", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "203", "Language": "nl", "Linkedid": "f29ea68048f6-1530023931.2654", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023932.2662", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4116277d-ba02-44fa-8ffd-b0d0b8366fcf", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010001-00000092", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530023931.2654", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023931.2654", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010001-00000090", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2627", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-00000093", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_account", "Event": "Newstate", "Exten": "203", "Language": "nl", "Linkedid": "f29ea68048f6-1530023931.2654", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023932.2662", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000005f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_proc_proxy_out", "Event": "NewCallerid", "Exten": "203", "Language": "en", "Linkedid": "f29ea68048f6-1530023931.2654", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023931.2659", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000005f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "203", "DestChannel": "SIP/150010003-00000093", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "202", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530023931.2654", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530023932.2662", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "203", "Language": "en", "Linkedid": "f29ea68048f6-1530023931.2654", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023931.2659", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000005f;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "203", "Language": "en", "Linkedid": "f29ea68048f6-1530023931.2654", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023931.2659", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000005f;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "203", "Language": "en", "Linkedid": "f29ea68048f6-1530023931.2654", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023931.2657", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "232e75af-8234-4621-9554-295652093172", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000091", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "203", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-0000005f;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "202", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530023931.2654", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530023931.2657", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "203", "Language": "nl", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2635", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "0131c146-5dcd-4889-8be4-62af522dbcd2", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "0131c146-5dcd-4889-8be4-62af522dbcd2", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000005f;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530023931.2654", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023931.2657", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "232e75af-8234-4621-9554-295652093172", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-00000093", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530023931.2654", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023932.2662", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "232e75af-8234-4621-9554-295652093172", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000005f;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "203", "Language": "en", "Linkedid": "f29ea68048f6-1530023931.2654", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023931.2659", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "0131c146-5dcd-4889-8be4-62af522dbcd2", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000091", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "203", "Language": "nl", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2635", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "0131c146-5dcd-4889-8be4-62af522dbcd2", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000091", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "203", "Language": "nl", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2635", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "232e75af-8234-4621-9554-295652093172", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000005f;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "203", "Language": "en", "Linkedid": "f29ea68048f6-1530023931.2654", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023931.2659", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "232e75af-8234-4621-9554-295652093172", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000091", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "203", "Language": "nl", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "12", "Privilege": "call,all", "SwapUniqueid": "f29ea68048f6-1530023931.2659", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2635", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "0131c146-5dcd-4889-8be4-62af522dbcd2", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "203", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000005f;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023931.2657", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "0131c146-5dcd-4889-8be4-62af522dbcd2", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000005f;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023931.2657", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000005f;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "203", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "f29ea68048f6-1530023931.2654", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023931.2659", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "232e75af-8234-4621-9554-295652093172", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000091", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "203", "Language": "nl", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2635", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "232e75af-8234-4621-9554-295652093172", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "203", "Channel": "SIP/150010003-00000093", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023932.2662", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "232e75af-8234-4621-9554-295652093172", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010002-00000091", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023922.2635", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "203", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010003-00000093", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530023922.2627", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530023932.2662", "content": ""} +] \ No newline at end of file diff --git a/tests/fixtures/xfer_blonde/xfer_blonde_abbcac.json b/tests/fixtures/xfer_blonde/xfer_blonde_abbcac.json index 5d5b7be..a886142 100644 --- a/tests/fixtures/xfer_blonde/xfer_blonde_abbcac.json +++ b/tests/fixtures/xfer_blonde/xfer_blonde_abbcac.json @@ -1,675 +1,105 @@ [ - {"Status": "Fully Booted", "Event": "FullyBooted", "Privilege": "system,all", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Event": "Newchannel", "Channel": "SIP/150010003-0000000c", "CallerIDName": "", "Exten": "202", "content": "", "Privilege": "call,all", "ChannelState": "0", "AccountCode": "150010003", "ChannelStateDesc": "Down", "Context": "osvpi_account", "CallerIDNum": "150010003"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "sip:150010003@10.13.37.110:5080", "Event": "VarSet", "content": "", "Variable": "SIPURI"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "10.13.37.110", "Event": "VarSet", "content": "", "Variable": "SIPDOMAIN"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "1983767972", "Event": "VarSet", "content": "", "Variable": "SIPCALLID"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "15001", "Event": "VarSet", "content": "", "Variable": "__client_id"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "150010003", "Event": "VarSet", "content": "", "Variable": "__account_id"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "no", "Event": "VarSet", "content": "", "Variable": "__record_call"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "31", "Event": "VarSet", "content": "", "Variable": "__intprefix"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "4", "Event": "VarSet", "content": "", "Variable": "__limit_account"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "0", "Event": "VarSet", "content": "", "Variable": "__limit_client"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "1", "Event": "VarSet", "content": "", "Variable": "__hide_ext_cliname"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "osvpi_account_transfer", "Event": "VarSet", "content": "", "Variable": "__TRANSFER_CONTEXT"}, - {"CallerIDName": "", "Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "call,all", "Event": "Newstate", "Channel": "SIP/150010003-0000000c", "ConnectedLineNum": "", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "CallerIDNum": "150010003", "content": ""}, - {"Application": "ExecIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "1", "Context": "osvpi_account", "Channel": "SIP/150010003-0000000c", "AppData": "0?GotoIf(0?osvpi_proc_hangup_insecure,202,1)", "content": ""}, - {"Application": "Gosub", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "2", "Context": "osvpi_account", "Channel": "SIP/150010003-0000000c", "AppData": "osvpi_proc_check_forwards,s,1", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "0", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARGC)"}, - {"Application": "GotoIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "s", "Privilege": "dialplan,all", "Priority": "1", "Context": "osvpi_proc_check_forwards", "Channel": "SIP/150010003-0000000c", "AppData": "0?check,1", "content": ""}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "s", "Privilege": "dialplan,all", "Priority": "2", "Context": "osvpi_proc_check_forwards", "Channel": "SIP/150010003-0000000c", "AppData": "LOCAL(tmp)=70", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "70", "Event": "VarSet", "content": "", "Variable": "LOCAL(tmp)"}, - {"Application": "ExecIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "s", "Privilege": "dialplan,all", "Priority": "3", "Context": "osvpi_proc_check_forwards", "Channel": "SIP/150010003-0000000c", "AppData": "0?Goto(init,1)", "content": ""}, - {"Application": "ExecIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "s", "Privilege": "dialplan,all", "Priority": "4", "Context": "osvpi_proc_check_forwards", "Channel": "SIP/150010003-0000000c", "AppData": "1?Goto(init,1)", "content": ""}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "init", "Privilege": "dialplan,all", "Priority": "1", "Context": "osvpi_proc_check_forwards", "Channel": "SIP/150010003-0000000c", "AppData": "MASTER_CHANNEL(SIP_MAX_FORWARDS)=16", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "16", "Event": "VarSet", "content": "", "Variable": "SIP_MAX_FORWARDS"}, - {"Application": "NoOp", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "init", "Privilege": "dialplan,all", "Priority": "2", "Context": "osvpi_proc_check_forwards", "Channel": "SIP/150010003-0000000c", "AppData": "DEBUG: MaxForwards: initialized to: 16", "content": ""}, - {"Application": "Return", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "init", "Privilege": "dialplan,all", "Priority": "3", "Context": "osvpi_proc_check_forwards", "Channel": "SIP/150010003-0000000c", "AppData": "", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "", "Event": "VarSet", "content": "", "Variable": "GOSUB_RETVAL"}, - {"Application": "GotoIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "3", "Context": "osvpi_account", "Channel": "SIP/150010003-0000000c", "AppData": "0?osvpi_account_transfer,202,1", "content": ""}, - {"Application": "NoOp", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "4", "Context": "osvpi_account", "Channel": "SIP/150010003-0000000c", "AppData": "ENTRY POINT username=150010003,ip=172.20.0.13/172.20.0.13,from=sip:150010003@10.13.37.110,contact=sip:150010003@10.13.37.110:5080,ua=Linphone/3.6.1 (eXosip2/4.1.0),name=,num=150010003,pres=allowed_not_screened", "content": ""}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "5", "Context": "osvpi_account", "Channel": "SIP/150010003-0000000c", "AppData": "is_transfer=0", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "0", "Event": "VarSet", "content": "", "Variable": "is_transfer"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "6", "Context": "osvpi_account", "Channel": "SIP/150010003-0000000c", "AppData": "CDR(amaflags)=BILLING", "content": ""}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "7", "Context": "osvpi_account", "Channel": "SIP/150010003-0000000c", "AppData": "user_privacy=0", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "0", "Event": "VarSet", "content": "", "Variable": "user_privacy"}, - {"Application": "ExecIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "8", "Context": "osvpi_account", "Channel": "SIP/150010003-0000000c", "AppData": "1?Set(__supports_progress=1)", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "1", "Event": "VarSet", "content": "", "Variable": "__supports_progress"}, - {"Application": "Gosub", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "9", "Context": "osvpi_account", "Channel": "SIP/150010003-0000000c", "AppData": "osvpi_proc_record_call,s-no,1(out,15001,150010003)", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "out", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARG1)"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "15001", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARG2)"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "150010003", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARG3)"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "3", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARGC)"}, - {"Application": "Return", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "s-no", "Privilege": "dialplan,all", "Priority": "1", "Context": "osvpi_proc_record_call", "Channel": "SIP/150010003-0000000c", "AppData": "", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "", "Event": "VarSet", "content": "", "Variable": "GOSUB_RETVAL"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "10", "Context": "osvpi_account", "Channel": "SIP/150010003-0000000c", "AppData": "l_tmp=", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "", "Event": "VarSet", "content": "", "Variable": "l_tmp"}, - {"Application": "ExecIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "11", "Context": "osvpi_account", "Channel": "SIP/150010003-0000000c", "AppData": "1?Set(l_tmp=)", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "", "Event": "VarSet", "content": "", "Variable": "l_tmp"}, - {"Application": "GotoIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "12", "Context": "osvpi_account", "Channel": "SIP/150010003-0000000c", "AppData": "1?checkprivacy", "content": ""}, - {"Application": "ExecIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "16", "Context": "osvpi_account", "Channel": "SIP/150010003-0000000c", "AppData": "0?Set(CALLERID(pres)=allowed_passed_screen)", "content": ""}, - {"Application": "ExecIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "17", "Context": "osvpi_account", "Channel": "SIP/150010003-0000000c", "AppData": "0?Set(CALLERID(pres)=prohib_passed_screen)", "content": ""}, - {"Application": "ExecIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "18", "Context": "osvpi_account", "Channel": "SIP/150010003-0000000c", "AppData": "0?Set(CHANNEL(musicclass)=)", "content": ""}, - {"Application": "GotoIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "19", "Context": "osvpi_account", "Channel": "SIP/150010003-0000000c", "AppData": "1?continue", "content": ""}, - {"Application": "Gosub", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "22", "Context": "osvpi_account", "Channel": "SIP/150010003-0000000c", "AppData": "osvpi_proc_set_i18n_region,31,1", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "0", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARGC)"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "31", "Privilege": "dialplan,all", "Priority": "1", "Context": "osvpi_proc_set_i18n_region", "Channel": "SIP/150010003-0000000c", "AppData": "i18n_region=NL", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "NL", "Event": "VarSet", "content": "", "Variable": "i18n_region"}, - {"Application": "Return", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "31", "Privilege": "dialplan,all", "Priority": "2", "Context": "osvpi_proc_set_i18n_region", "Channel": "SIP/150010003-0000000c", "AppData": "", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "", "Event": "VarSet", "content": "", "Variable": "GOSUB_RETVAL"}, - {"Application": "Goto", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "23", "Context": "osvpi_account", "Channel": "SIP/150010003-0000000c", "AppData": "osvpi_account_emergency_NL,202,1", "content": ""}, - {"Application": "Goto", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "1", "Context": "osvpi_account_emergency_NL", "Channel": "SIP/150010003-0000000c", "AppData": "osvpi_account_no_emergency,202,1", "content": ""}, - {"Application": "Goto", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "1", "Context": "osvpi_account_no_emergency", "Channel": "SIP/150010003-0000000c", "AppData": "osvpi_account,202,no-emergency", "content": ""}, - {"Application": "Goto", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "24", "Context": "osvpi_account", "Channel": "SIP/150010003-0000000c", "AppData": "osvpi_account_clean,202,1", "content": ""}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "1", "Context": "osvpi_account_clean", "Channel": "SIP/150010003-0000000c", "AppData": "return=osvpi_account_clean", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "osvpi_account_clean", "Event": "VarSet", "content": "", "Variable": "return"}, - {"Application": "Goto", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "2", "Context": "osvpi_account_clean", "Channel": "SIP/150010003-0000000c", "AppData": "osvpi_return_to_canonical,31i202,1", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "31i202", "Event": "VarSet", "content": "", "Variable": "INVALID_EXTEN"}, - {"Application": "Goto", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "i", "Privilege": "dialplan,all", "Priority": "1", "Context": "osvpi_return_to_canonical", "Channel": "SIP/150010003-0000000c", "AppData": "osvpi_account_clean,202,local", "content": ""}, - {"Application": "GotoIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "3", "Context": "osvpi_account_clean", "Channel": "SIP/150010003-0000000c", "AppData": "0?extern", "content": ""}, - {"Application": "Gosub", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "4", "Context": "osvpi_account_clean", "Channel": "SIP/150010003-0000000c", "AppData": "osvpi_proc_set_callerid,202,1(150010003,0,0)", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "150010003", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARG1)"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "0", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARG2)"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "0", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARG3)"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "3", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARGC)"}, - {"Application": "GotoIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "1", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010003-0000000c", "AppData": "0?done", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "1", "Event": "VarSet", "content": "", "Variable": "ODBCROWS"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "SUCCESS", "Event": "VarSet", "content": "", "Variable": "ODBCSTATUS"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "set,privacy,name,number_int,number_ext", "Event": "VarSet", "content": "", "Variable": "~ODBCFIELDS~"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "2", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010003-0000000c", "AppData": "ARRAY(LOCAL(set),LOCAL(privacy),LOCAL(name),LOCAL(number_int),LOCAL(number_ext))=1,0,Julia Rhodes,203,+31150010001", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "1", "Event": "VarSet", "content": "", "Variable": "LOCAL(set)"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "0", "Event": "VarSet", "content": "", "Variable": "LOCAL(privacy)"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "Julia Rhodes", "Event": "VarSet", "content": "", "Variable": "LOCAL(name)"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "203", "Event": "VarSet", "content": "", "Variable": "LOCAL(number_int)"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "+31150010001", "Event": "VarSet", "content": "", "Variable": "LOCAL(number_ext)"}, - {"Application": "GotoIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "3", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010003-0000000c", "AppData": "0?presentation", "content": ""}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "4", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010003-0000000c", "AppData": "CALLERID(pres)=allowed_passed_screen", "content": ""}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "5", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010003-0000000c", "AppData": "CALLERID(name)=Julia Rhodes", "content": ""}, - {"CallerIDNum": "150010003", "Event": "NewCallerid", "Uniqueid": "63f2f9ce924a-1502179190.24", "Channel": "SIP/150010003-0000000c", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "Privilege": "call,all", "CallerIDName": "Julia Rhodes", "content": ""}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "6", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010003-0000000c", "AppData": "CALLERID(num)=203", "content": ""}, - {"CallerIDNum": "203", "Event": "NewCallerid", "Uniqueid": "63f2f9ce924a-1502179190.24", "Channel": "SIP/150010003-0000000c", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "Privilege": "call,all", "CallerIDName": "Julia Rhodes", "content": ""}, - {"Application": "ExecIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "7", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010003-0000000c", "AppData": "0?Set(CALLERID(pres)=prohib_passed_screen)", "content": ""}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "8", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010003-0000000c", "AppData": "CALLERID(ANI)=203", "content": ""}, - {"Application": "Gosub", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "9", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010003-0000000c", "AppData": "osvpi_proc_set_callerid_internal,202,1", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARG1)"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARG2)"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARG3)"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "0", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARGC)"}, - {"Application": "GotoIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "1", "Context": "osvpi_proc_set_callerid_internal", "Channel": "SIP/150010003-0000000c", "AppData": "1?nop", "content": ""}, - {"Application": "ExecIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "5", "Context": "osvpi_proc_set_callerid_internal", "Channel": "SIP/150010003-0000000c", "AppData": "0?Set(CALLERID(ANI)=20)", "content": ""}, - {"Application": "Return", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "6", "Context": "osvpi_proc_set_callerid_internal", "Channel": "SIP/150010003-0000000c", "AppData": "", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "", "Event": "VarSet", "content": "", "Variable": "GOSUB_RETVAL"}, - {"Application": "Return", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "10", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010003-0000000c", "AppData": "", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "", "Event": "VarSet", "content": "", "Variable": "GOSUB_RETVAL"}, - {"Application": "GotoIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "5", "Context": "osvpi_account_clean", "Channel": "SIP/150010003-0000000c", "AppData": "3?osvpi_account_call_int,202,1:i,1", "content": ""}, - {"Application": "Gosub", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "1", "Context": "osvpi_account_call_int", "Channel": "SIP/150010003-0000000c", "AppData": "osvpi_proc_check_limits,202,1", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "0", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARGC)"}, - {"Application": "NoOp", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "1", "Context": "osvpi_proc_check_limits", "Channel": "SIP/150010003-0000000c", "AppData": "DEBUG: call_limit: client 0/0 and account 0/4", "content": ""}, - {"Application": "GotoIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "2", "Context": "osvpi_proc_check_limits", "Channel": "SIP/150010003-0000000c", "AppData": "0?osvpi_handle_limit,202,client", "content": ""}, - {"Application": "GotoIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "3", "Context": "osvpi_proc_check_limits", "Channel": "SIP/150010003-0000000c", "AppData": "0?osvpi_handle_limit,202,account", "content": ""}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "4", "Context": "osvpi_proc_check_limits", "Channel": "SIP/150010003-0000000c", "AppData": "GROUP(account_lim)=150010003", "content": ""}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "5", "Context": "osvpi_proc_check_limits", "Channel": "SIP/150010003-0000000c", "AppData": "GROUP(client_lim)=15001", "content": ""}, - {"Application": "Return", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "6", "Context": "osvpi_proc_check_limits", "Channel": "SIP/150010003-0000000c", "AppData": "", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "", "Event": "VarSet", "content": "", "Variable": "GOSUB_RETVAL"}, - {"Application": "Gosub", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "2", "Context": "osvpi_account_call_int", "Channel": "SIP/150010003-0000000c", "AppData": "osvpi_proc_check_recurse,202,1(15001)", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "15001", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARG1)"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "1", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARGC)"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "1", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010003-0000000c", "AppData": "LOCAL(exten)=15001:202", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "15001:202", "Event": "VarSet", "content": "", "Variable": "LOCAL(exten)"}, - {"Application": "NoOp", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "2", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010003-0000000c", "AppData": "Recursion checking 15001:202 against ", "content": ""}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "3", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010003-0000000c", "AppData": "LOCAL(n)=0", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "0", "Event": "VarSet", "content": "", "Variable": "LOCAL(n)"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "4", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010003-0000000c", "AppData": "LOCAL(i)=1", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "1", "Event": "VarSet", "content": "", "Variable": "LOCAL(i)"}, - {"Application": "GotoIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "5", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010003-0000000c", "AppData": "1?add", "content": ""}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "9", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010003-0000000c", "AppData": "__EXTEN_LIST=15001:202 ", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "15001:202 ", "Event": "VarSet", "content": "", "Variable": "__EXTEN_LIST"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "10", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010003-0000000c", "AppData": "__EXTEN_LIST_LAST_EDIT_TIME=1502179190", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "1502179190", "Event": "VarSet", "content": "", "Variable": "__EXTEN_LIST_LAST_EDIT_TIME"}, - {"Application": "Return", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "11", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010003-0000000c", "AppData": "", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "", "Event": "VarSet", "content": "", "Variable": "GOSUB_RETVAL"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "3", "Context": "osvpi_account_call_int", "Channel": "SIP/150010003-0000000c", "AppData": "__ORIG_EXTEN=202", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "202", "Event": "VarSet", "content": "", "Variable": "__ORIG_EXTEN"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "0", "Event": "VarSet", "content": "", "Variable": "ODBCROWS"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "NODATA", "Event": "VarSet", "content": "", "Variable": "ODBCSTATUS"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "4", "Context": "osvpi_account_call_int", "Channel": "SIP/150010003-0000000c", "AppData": "ARRAY(conference_id,user_password,admin_password,conference_language)=", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "", "Event": "VarSet", "content": "", "Variable": "conference_id"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "", "Event": "VarSet", "content": "", "Variable": "user_password"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "", "Event": "VarSet", "content": "", "Variable": "admin_password"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "", "Event": "VarSet", "content": "", "Variable": "conference_language"}, - {"Application": "GotoIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "5", "Context": "osvpi_account_call_int", "Channel": "SIP/150010003-0000000c", "AppData": "0?osvpi_route_conference,ID,1", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "0", "Event": "VarSet", "content": "", "Variable": "ODBCROWS"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "NODATA", "Event": "VarSet", "content": "", "Variable": "ODBCSTATUS"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "6", "Context": "osvpi_account_call_int", "Channel": "SIP/150010003-0000000c", "AppData": "ARRAY(route_id,client_timezone)=", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "", "Event": "VarSet", "content": "", "Variable": "route_id"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "", "Event": "VarSet", "content": "", "Variable": "client_timezone"}, - {"Application": "GotoIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "7", "Context": "osvpi_account_call_int", "Channel": "SIP/150010003-0000000c", "AppData": "0?osvpi_route_root,202,restart", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "0", "Event": "VarSet", "content": "", "Variable": "ODBCROWS"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "NODATA", "Event": "VarSet", "content": "", "Variable": "ODBCSTATUS"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "8", "Context": "osvpi_account_call_int", "Channel": "SIP/150010003-0000000c", "AppData": "ARRAY(all_extensions,limited_extensions,password,account_spy_language)=", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "", "Event": "VarSet", "content": "", "Variable": "all_extensions"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "", "Event": "VarSet", "content": "", "Variable": "limited_extensions"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "", "Event": "VarSet", "content": "", "Variable": "password"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "", "Event": "VarSet", "content": "", "Variable": "account_spy_language"}, - {"Application": "GotoIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "9", "Context": "osvpi_account_call_int", "Channel": "SIP/150010003-0000000c", "AppData": "0?osvpi_account_spy,202,1", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "1", "Event": "VarSet", "content": "", "Variable": "ODBCROWS"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "SUCCESS", "Event": "VarSet", "content": "", "Variable": "ODBCSTATUS"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "interfaces", "Event": "VarSet", "content": "", "Variable": "~ODBCFIELDS~"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "10", "Context": "osvpi_account_call_int", "Channel": "SIP/150010003-0000000c", "AppData": "ARRAY(interfaces)=Local/ID710151@osvpi_route_phoneaccount", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "Local/ID710151@osvpi_route_phoneaccount", "Event": "VarSet", "content": "", "Variable": "interfaces"}, - {"Application": "GotoIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "11", "Context": "osvpi_account_call_int", "Channel": "SIP/150010003-0000000c", "AppData": "0?osvpi_handle_unallocated,202,1", "content": ""}, - {"Application": "Dial", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "202", "Privilege": "dialplan,all", "Priority": "12", "Context": "osvpi_account_call_int", "Channel": "SIP/150010003-0000000c", "AppData": "Local/ID710151@osvpi_route_phoneaccount", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "", "Event": "VarSet", "content": "", "Variable": "DIALSTATUS"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "", "Event": "VarSet", "content": "", "Variable": "DIALEDPEERNUMBER"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "", "Event": "VarSet", "content": "", "Variable": "DIALEDPEERNAME"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "", "Event": "VarSet", "content": "", "Variable": "ANSWEREDTIME"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "", "Event": "VarSet", "content": "", "Variable": "DIALEDTIME"}, - {"Uniqueid": "63f2f9ce924a-1502179190.25", "Event": "Newchannel", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;1", "CallerIDName": "", "Exten": "ID710151", "content": "", "Privilege": "call,all", "ChannelState": "0", "AccountCode": "", "ChannelStateDesc": "Down", "Context": "osvpi_route_phoneaccount", "CallerIDNum": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Event": "Newchannel", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "CallerIDName": "", "Exten": "ID710151", "content": "", "Privilege": "call,all", "ChannelState": "4", "AccountCode": "", "ChannelStateDesc": "Ring", "Context": "osvpi_route_phoneaccount", "CallerIDNum": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.25", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;1", "Value": "ID710151@osvpi_route_phoneaccount", "Event": "VarSet", "content": "", "Variable": "DIALEDPEERNUMBER"}, - {"CallerIDNum": "202", "Event": "NewCallerid", "Uniqueid": "63f2f9ce924a-1502179190.25", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;1", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Privilege": "call,all", "CallerIDName": "", "content": ""}, - {"Channel1": "Local/ID710151@osvpi_route_phoneaccount-00000006;1", "Event": "LocalBridge", "LocalOptimization": "Yes", "Uniqueid2": "63f2f9ce924a-1502179190.26", "Channel2": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Uniqueid1": "63f2f9ce924a-1502179190.25", "Privilege": "call,all", "Context": "osvpi_route_phoneaccount", "content": "", "Exten": "ID710151"}, - {"Event": "Dial", "Privilege": "call,all", "UniqueID": "63f2f9ce924a-1502179190.24", "DestUniqueID": "63f2f9ce924a-1502179190.25", "Channel": "SIP/150010003-0000000c", "SubEvent": "Begin", "CallerIDName": "Julia Rhodes", "content": "", "Dialstring": "ID710151@osvpi_route_phoneaccount", "ConnectedLineNum": "", "Destination": "Local/ID710151@osvpi_route_phoneaccount-00000006;1", "ConnectedLineName": "", "CallerIDNum": "203"}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "1", "Event": "VarSet", "content": "", "Variable": "ODBCROWS"}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "SUCCESS", "Event": "VarSet", "content": "", "Variable": "ODBCSTATUS"}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account", "Event": "VarSet", "content": "", "Variable": "~ODBCFIELDS~"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.26", "Extension": "ID710151", "Privilege": "dialplan,all", "Priority": "1", "Context": "osvpi_route_phoneaccount", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=150010002,accountid,dutch,from,450110,0", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "150010002", "Event": "VarSet", "content": "", "Variable": "__dst_account_id"}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "accountid", "Event": "VarSet", "content": "", "Variable": "l_mangle_did"}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "dutch", "Event": "VarSet", "content": "", "Variable": "l_mangle_cli"}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "from", "Event": "VarSet", "content": "", "Variable": "l_cli_header"}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "450110", "Event": "VarSet", "content": "", "Variable": "l_primary_pickupgroup"}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "0", "Event": "VarSet", "content": "", "Variable": "app_account"}, - {"Application": "GotoIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.26", "Extension": "ID710151", "Privilege": "dialplan,all", "Priority": "2", "Context": "osvpi_route_phoneaccount", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "AppData": "0?vialer", "content": ""}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.26", "Extension": "ID710151", "Privilege": "dialplan,all", "Priority": "3", "Context": "osvpi_route_phoneaccount", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "AppData": "_PICKUPMARK=450110", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "450110", "Event": "VarSet", "content": "", "Variable": "_PICKUPMARK"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.26", "Extension": "ID710151", "Privilege": "dialplan,all", "Priority": "4", "Context": "osvpi_route_phoneaccount", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "AppData": "l_trunk=0", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "0", "Event": "VarSet", "content": "", "Variable": "l_trunk"}, - {"Application": "Goto", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.26", "Extension": "ID710151", "Privilege": "dialplan,all", "Priority": "5", "Context": "osvpi_route_phoneaccount", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "AppData": "osvpi_route_account,ID710151,1", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "1", "Event": "VarSet", "content": "", "Variable": "ODBCROWS"}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "SUCCESS", "Event": "VarSet", "content": "", "Variable": "ODBCSTATUS"}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "proxy", "Event": "VarSet", "content": "", "Variable": "~ODBCFIELDS~"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.26", "Extension": "ID710151", "Privilege": "dialplan,all", "Priority": "1", "Context": "osvpi_route_account", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "AppData": "ARRAY(l_proxy)=172.20.0.13", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "172.20.0.13", "Event": "VarSet", "content": "", "Variable": "l_proxy"}, - {"Application": "Gosub", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.26", "Extension": "ID710151", "Privilege": "dialplan,all", "Priority": "2", "Context": "osvpi_route_account", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "AppData": "osvpi_proc_mangle_number,accountid,1(150010002,202)", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "150010002", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARG1)"}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "202", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARG2)"}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "2", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARGC)"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.26", "Extension": "accountid", "Privilege": "dialplan,all", "Priority": "1", "Context": "osvpi_proc_mangle_number", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "AppData": "MANGLED_EXTEN=150010002", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "150010002", "Event": "VarSet", "content": "", "Variable": "MANGLED_EXTEN"}, - {"Application": "Return", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.26", "Extension": "accountid", "Privilege": "dialplan,all", "Priority": "2", "Context": "osvpi_proc_mangle_number", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "AppData": "", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "", "Event": "VarSet", "content": "", "Variable": "GOSUB_RETVAL"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.26", "Extension": "ID710151", "Privilege": "dialplan,all", "Priority": "3", "Context": "osvpi_route_account", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "AppData": "l_did=150010002", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "150010002", "Event": "VarSet", "content": "", "Variable": "l_did"}, - {"Application": "Gosub", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.26", "Extension": "ID710151", "Privilege": "dialplan,all", "Priority": "4", "Context": "osvpi_route_account", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "AppData": "osvpi_proc_mangle_number,dutch,1(150010002,203)", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "150010002", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARG1)"}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "203", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARG2)"}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "2", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARGC)"}, - {"Application": "GotoIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.26", "Extension": "dutch", "Privilege": "dialplan,all", "Priority": "1", "Context": "osvpi_proc_mangle_number", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "AppData": "1?fullzero,1", "content": ""}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.26", "Extension": "fullzero", "Privilege": "dialplan,all", "Priority": "1", "Context": "osvpi_proc_mangle_number", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "AppData": "MANGLED_EXTEN=203", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "203", "Event": "VarSet", "content": "", "Variable": "MANGLED_EXTEN"}, - {"Application": "Return", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.26", "Extension": "fullzero", "Privilege": "dialplan,all", "Priority": "2", "Context": "osvpi_proc_mangle_number", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "AppData": "", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "", "Event": "VarSet", "content": "", "Variable": "GOSUB_RETVAL"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.26", "Extension": "ID710151", "Privilege": "dialplan,all", "Priority": "5", "Context": "osvpi_route_account", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "AppData": "l_mangle_cli_hdr=from-dutch", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "from-dutch", "Event": "VarSet", "content": "", "Variable": "l_mangle_cli_hdr"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.26", "Extension": "ID710151", "Privilege": "dialplan,all", "Priority": "6", "Context": "osvpi_route_account", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "AppData": "l_fromuser=", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "", "Event": "VarSet", "content": "", "Variable": "l_fromuser"}, - {"Application": "ExecIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.26", "Extension": "ID710151", "Privilege": "dialplan,all", "Priority": "7", "Context": "osvpi_route_account", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "AppData": "1?Set(l_fromuser=203)", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "203", "Event": "VarSet", "content": "", "Variable": "l_fromuser"}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "1", "Event": "VarSet", "content": "", "Variable": "ODBCROWS"}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "SUCCESS", "Event": "VarSet", "content": "", "Variable": "ODBCSTATUS"}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "IF((SELECT 1 FROM baseaccount_account ba INNER JOIN userdestination_selecteduserdestination udsud ON udsud.phoneaccount_id = ba.id INNER JOIN userdestination_userdestination udud ON udud.id = udsud.userdestination_id INNER JOIN crm_cloudctiuser cccu O", "Event": "VarSet", "content": "", "Variable": "~ODBCFIELDS~"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.26", "Extension": "ID710151", "Privilege": "dialplan,all", "Priority": "8", "Context": "osvpi_route_account", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "AppData": "ARRAY(cloudcti)=0", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "0", "Event": "VarSet", "content": "", "Variable": "cloudcti"}, - {"Application": "GotoIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.26", "Extension": "ID710151", "Privilege": "dialplan,all", "Priority": "9", "Context": "osvpi_route_account", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "AppData": "1?skipcloudcti", "content": ""}, - {"Application": "Goto", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.26", "Extension": "ID710151", "Privilege": "dialplan,all", "Priority": "11", "Context": "osvpi_route_account", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "AppData": "osvpi_proc_proxy_out,202,1", "content": ""}, - {"Application": "SIPAddHeader", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.26", "Extension": "202", "Privilege": "dialplan,all", "Priority": "1", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "AppData": "X-Accountcode: 150010002", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "X-Accountcode: 150010002", "Event": "VarSet", "content": "", "Variable": "__SIPADDHEADER01"}, - {"Application": "SIPAddHeader", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.26", "Extension": "202", "Privilege": "dialplan,all", "Priority": "2", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "AppData": "X-Insecure-Protection: geheim", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "X-Insecure-Protection: geheim", "Event": "VarSet", "content": "", "Variable": "__SIPADDHEADER02"}, - {"Application": "SIPAddHeader", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.26", "Extension": "202", "Privilege": "dialplan,all", "Priority": "3", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "AppData": "X-Mangle-Cli: from-dutch", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "X-Mangle-Cli: from-dutch", "Event": "VarSet", "content": "", "Variable": "__SIPADDHEADER03"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.26", "Extension": "202", "Privilege": "dialplan,all", "Priority": "4", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "AppData": "_dial_options_callaccept=", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "", "Event": "VarSet", "content": "", "Variable": "_dial_options_callaccept"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.26", "Extension": "202", "Privilege": "dialplan,all", "Priority": "5", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "AppData": "_dial_options_callnotify=", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "", "Event": "VarSet", "content": "", "Variable": "_dial_options_callnotify"}, - {"Application": "ExecIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.26", "Extension": "202", "Privilege": "dialplan,all", "Priority": "6", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "AppData": "0?Set(l_proxy=opensipsfg)", "content": ""}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.26", "Extension": "202", "Privilege": "dialplan,all", "Priority": "7", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "AppData": "l_extra_options=", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "", "Event": "VarSet", "content": "", "Variable": "l_extra_options"}, - {"Application": "Dial", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.26", "Extension": "202", "Privilege": "dialplan,all", "Priority": "8", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "AppData": "SIP/150010002/150010002/172.20.0.13!!203,,", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "", "Event": "VarSet", "content": "", "Variable": "DIALSTATUS"}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "", "Event": "VarSet", "content": "", "Variable": "DIALEDPEERNUMBER"}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "", "Event": "VarSet", "content": "", "Variable": "DIALEDPEERNAME"}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "", "Event": "VarSet", "content": "", "Variable": "ANSWEREDTIME"}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "", "Event": "VarSet", "content": "", "Variable": "DIALEDTIME"}, - {"Uniqueid": "63f2f9ce924a-1502179190.27", "Event": "Newchannel", "Channel": "SIP/150010002-0000000d", "CallerIDName": "", "Exten": "", "content": "", "Privilege": "call,all", "ChannelState": "0", "AccountCode": "150010002", "ChannelStateDesc": "Down", "Context": "osvpi_account", "CallerIDNum": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.27", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000d", "Value": "089ed6ce0743268c388e5ddb2da73197@test.voipgrid.nl", "Event": "VarSet", "content": "", "Variable": "SIPCALLID"}, - {"Uniqueid": "63f2f9ce924a-1502179190.27", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000d", "Value": "15001", "Event": "VarSet", "content": "", "Variable": "__client_id"}, - {"Uniqueid": "63f2f9ce924a-1502179190.27", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000d", "Value": "150010002", "Event": "VarSet", "content": "", "Variable": "__account_id"}, - {"Uniqueid": "63f2f9ce924a-1502179190.27", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000d", "Value": "no", "Event": "VarSet", "content": "", "Variable": "__record_call"}, - {"Uniqueid": "63f2f9ce924a-1502179190.27", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000d", "Value": "31", "Event": "VarSet", "content": "", "Variable": "__intprefix"}, - {"Uniqueid": "63f2f9ce924a-1502179190.27", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000d", "Value": "4", "Event": "VarSet", "content": "", "Variable": "__limit_account"}, - {"Uniqueid": "63f2f9ce924a-1502179190.27", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000d", "Value": "0", "Event": "VarSet", "content": "", "Variable": "__limit_client"}, - {"Uniqueid": "63f2f9ce924a-1502179190.27", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000d", "Value": "1", "Event": "VarSet", "content": "", "Variable": "__hide_ext_cliname"}, - {"Uniqueid": "63f2f9ce924a-1502179190.27", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000d", "Value": "osvpi_account_transfer", "Event": "VarSet", "content": "", "Variable": "__TRANSFER_CONTEXT"}, - {"Uniqueid": "63f2f9ce924a-1502179190.27", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000d", "Value": "150010002/150010002/172.20.0.13!!203", "Event": "VarSet", "content": "", "Variable": "DIALEDPEERNUMBER"}, - {"CallerIDNum": "202", "Event": "NewCallerid", "Uniqueid": "63f2f9ce924a-1502179190.27", "Channel": "SIP/150010002-0000000d", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Privilege": "call,all", "CallerIDName": "", "content": ""}, - {"Event": "Dial", "Privilege": "call,all", "UniqueID": "63f2f9ce924a-1502179190.26", "DestUniqueID": "63f2f9ce924a-1502179190.27", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "SubEvent": "Begin", "CallerIDName": "Julia Rhodes", "content": "", "Dialstring": "150010002/150010002/172.20.0.13!!203", "ConnectedLineNum": "202", "Destination": "SIP/150010002-0000000d", "ConnectedLineName": "", "CallerIDNum": "203"}, - {"CallerIDName": "", "Uniqueid": "63f2f9ce924a-1502179190.27", "Privilege": "call,all", "Event": "Newstate", "Channel": "SIP/150010002-0000000d", "ConnectedLineNum": "203", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Julia Rhodes", "CallerIDNum": "202", "content": ""}, - {"CallerIDName": "", "Uniqueid": "63f2f9ce924a-1502179190.25", "Privilege": "call,all", "Event": "Newstate", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;1", "ConnectedLineNum": "203", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Julia Rhodes", "CallerIDNum": "202", "content": ""}, - {"CallerIDName": "", "Uniqueid": "63f2f9ce924a-1502179190.27", "Privilege": "call,all", "Event": "Newstate", "Channel": "SIP/150010002-0000000d", "ConnectedLineNum": "203", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Julia Rhodes", "CallerIDNum": "202", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "ANSWER", "Event": "VarSet", "content": "", "Variable": "DIALSTATUS"}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "SIP/150010002-0000000d", "Event": "VarSet", "content": "", "Variable": "DIALEDPEERNAME"}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "150010002/150010002/172.20.0.13!!203", "Event": "VarSet", "content": "", "Variable": "DIALEDPEERNUMBER"}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "SIP/150010002-0000000d", "Event": "VarSet", "content": "", "Variable": "BRIDGEPEER"}, - {"Uniqueid": "63f2f9ce924a-1502179190.27", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000d", "Value": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Event": "VarSet", "content": "", "Variable": "BRIDGEPEER"}, - {"CallerIDName": "Julia Rhodes", "Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "call,all", "Event": "Newstate", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "ConnectedLineNum": "202", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "CallerIDNum": "203", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.27", "Privilege": "call,all", "Channel": "SIP/150010002-0000000d", "AccountCode": "150010003", "Event": "NewAccountCode", "OldAccountCode": "150010003", "content": ""}, - {"Channel1": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Privilege": "call,all", "Event": "Bridge", "Bridgestate": "Link", "Uniqueid2": "63f2f9ce924a-1502179190.27", "Channel2": "SIP/150010002-0000000d", "Uniqueid1": "63f2f9ce924a-1502179190.26", "CallerID1": "203", "Bridgetype": "core", "content": "", "CallerID2": "202"}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "SIP/150010002-0000000d", "Event": "VarSet", "content": "", "Variable": "BRIDGEPEER"}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "089ed6ce0743268c388e5ddb2da73197@test.voipgrid.nl", "Event": "VarSet", "content": "", "Variable": "BRIDGEPVTCALLID"}, - {"Uniqueid": "63f2f9ce924a-1502179190.27", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000d", "Value": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Event": "VarSet", "content": "", "Variable": "BRIDGEPEER"}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "SIP/150010002-0000000d", "Event": "VarSet", "content": "", "Variable": "BRIDGEPEER"}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "089ed6ce0743268c388e5ddb2da73197@test.voipgrid.nl", "Event": "VarSet", "content": "", "Variable": "BRIDGEPVTCALLID"}, - {"Uniqueid": "63f2f9ce924a-1502179190.27", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000d", "Value": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Event": "VarSet", "content": "", "Variable": "BRIDGEPEER"}, - {"CallerIDName": "", "Uniqueid": "63f2f9ce924a-1502179190.25", "Privilege": "call,all", "Event": "Newstate", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;1", "ConnectedLineNum": "203", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Julia Rhodes", "CallerIDNum": "202", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "ANSWER", "Event": "VarSet", "content": "", "Variable": "DIALSTATUS"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "Local/ID710151@osvpi_route_phoneaccount-00000006;1", "Event": "VarSet", "content": "", "Variable": "DIALEDPEERNAME"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "ID710151@osvpi_route_phoneaccount", "Event": "VarSet", "content": "", "Variable": "DIALEDPEERNUMBER"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "Local/ID710151@osvpi_route_phoneaccount-00000006;1", "Event": "VarSet", "content": "", "Variable": "BRIDGEPEER"}, - {"Uniqueid": "63f2f9ce924a-1502179190.25", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;1", "Value": "SIP/150010003-0000000c", "Event": "VarSet", "content": "", "Variable": "BRIDGEPEER"}, - {"CallerIDName": "Julia Rhodes", "Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "call,all", "Event": "Newstate", "Channel": "SIP/150010003-0000000c", "ConnectedLineNum": "", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "CallerIDNum": "203", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.25", "Privilege": "call,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;1", "AccountCode": "150010003", "Event": "NewAccountCode", "OldAccountCode": "150010003", "content": ""}, - {"Channel1": "SIP/150010003-0000000c", "Privilege": "call,all", "Event": "Bridge", "Bridgestate": "Link", "Uniqueid2": "63f2f9ce924a-1502179190.25", "Channel2": "Local/ID710151@osvpi_route_phoneaccount-00000006;1", "Uniqueid1": "63f2f9ce924a-1502179190.24", "CallerID1": "203", "Bridgetype": "core", "content": "", "CallerID2": "202"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "Local/ID710151@osvpi_route_phoneaccount-00000006;1", "Event": "VarSet", "content": "", "Variable": "BRIDGEPEER"}, - {"Uniqueid": "63f2f9ce924a-1502179190.25", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;1", "Value": "SIP/150010003-0000000c", "Event": "VarSet", "content": "", "Variable": "BRIDGEPEER"}, - {"Uniqueid": "63f2f9ce924a-1502179190.25", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;1", "Value": "1983767972", "Event": "VarSet", "content": "", "Variable": "BRIDGEPVTCALLID"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "Local/ID710151@osvpi_route_phoneaccount-00000006;1", "Event": "VarSet", "content": "", "Variable": "BRIDGEPEER"}, - {"Uniqueid": "63f2f9ce924a-1502179190.25", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;1", "Value": "SIP/150010003-0000000c", "Event": "VarSet", "content": "", "Variable": "BRIDGEPEER"}, - {"Uniqueid": "63f2f9ce924a-1502179190.25", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;1", "Value": "1983767972", "Event": "VarSet", "content": "", "Variable": "BRIDGEPVTCALLID"}, - {"CloneState": "Up", "OriginalState": "Up", "Event": "Masquerade", "Privilege": "call,all", "Clone": "SIP/150010002-0000000d", "Original": "Local/ID710151@osvpi_route_phoneaccount-00000006;1", "content": ""}, - {"Newname": "SIP/150010002-0000000d", "Uniqueid": "63f2f9ce924a-1502179190.27", "Privilege": "call,all", "Channel": "SIP/150010002-0000000d", "Event": "Rename", "content": ""}, - {"Newname": "SIP/150010002-0000000d", "Uniqueid": "63f2f9ce924a-1502179190.25", "Privilege": "call,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;1", "Event": "Rename", "content": ""}, - {"Newname": "Local/ID710151@osvpi_route_phoneaccount-00000006;1", "Uniqueid": "63f2f9ce924a-1502179190.27", "Privilege": "call,all", "Channel": "SIP/150010002-0000000d", "Event": "Rename", "content": ""}, - {"CallerIDNum": "202", "Event": "NewCallerid", "Uniqueid": "63f2f9ce924a-1502179190.25", "Channel": "SIP/150010002-0000000d", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Privilege": "call,all", "CallerIDName": "", "content": ""}, - {"Channel1": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Privilege": "call,all", "Event": "Bridge", "Bridgestate": "Unlink", "Uniqueid2": "63f2f9ce924a-1502179190.27", "Channel2": "Local/ID710151@osvpi_route_phoneaccount-00000006;1", "Uniqueid1": "63f2f9ce924a-1502179190.26", "CallerID1": "203", "Bridgetype": "core", "content": "", "CallerID2": "202"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "SIP/150010002-0000000d", "Event": "VarSet", "content": "", "Variable": "BRIDGEPEER"}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "0", "Event": "VarSet", "content": "", "Variable": "ANSWEREDTIME"}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "1", "Event": "VarSet", "content": "", "Variable": "DIALEDTIME"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "089ed6ce0743268c388e5ddb2da73197@test.voipgrid.nl", "Event": "VarSet", "content": "", "Variable": "BRIDGEPVTCALLID"}, - {"Uniqueid": "63f2f9ce924a-1502179190.25", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000d", "Value": "SIP/150010003-0000000c", "Event": "VarSet", "content": "", "Variable": "BRIDGEPEER"}, - {"Uniqueid": "63f2f9ce924a-1502179190.25", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000d", "Value": "1983767972", "Event": "VarSet", "content": "", "Variable": "BRIDGEPVTCALLID"}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Event": "HangupRequest", "Privilege": "call,all", "content": ""}, - {"Cause": "16", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502179190.27", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;1", "Cause-txt": "Normal Clearing", "Event": "Hangup", "CallerIDName": "", "ConnectedLineNum": "203", "content": "", "AccountCode": "150010003", "ConnectedLineName": "Julia Rhodes", "CallerIDNum": "202"}, - {"Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "dialplan,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Value": "ANSWER", "Event": "VarSet", "content": "", "Variable": "DIALSTATUS"}, - {"Event": "Dial", "Privilege": "call,all", "UniqueID": "63f2f9ce924a-1502179190.26", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "SubEvent": "End", "DialStatus": "ANSWER", "content": ""}, - {"Cause": "16", "Uniqueid": "63f2f9ce924a-1502179190.26", "Privilege": "call,all", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Event": "SoftHangupRequest", "content": ""}, - {"Application": "GotoIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.26", "Extension": "onhangup", "Privilege": "dialplan,all", "Priority": "1", "Context": "handlers", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "AppData": "1?nosip", "content": ""}, - {"Application": "GosubIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.26", "Extension": "onhangup", "Privilege": "dialplan,all", "Priority": "3", "Context": "handlers", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "AppData": "0?osvpi_proc_httptouch,s,1()", "content": ""}, - {"Cause": "16", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502179190.26", "Channel": "Local/ID710151@osvpi_route_phoneaccount-00000006;2", "Cause-txt": "Normal Clearing", "Event": "Hangup", "CallerIDName": "Julia Rhodes", "ConnectedLineNum": "202", "content": "", "AccountCode": "150010003", "ConnectedLineName": "", "CallerIDNum": "203"}, - {"Class": "default", "State": "Start", "Event": "MusicOnHold", "Privilege": "call,all", "UniqueID": "63f2f9ce924a-1502179190.24", "Channel": "SIP/150010003-0000000c", "content": ""}, - {"SenderSSRC": "4241621140", "Event": "RTCPReceived", "Privilege": "reporting,all", "PacketsLost": "54012", "IAJitter": "0", "DLSR": "0.0000(sec)", "HighestSequence": "54312", "LastSR": "0.0000000000", "ReceptionReports": "1", "content": "", "SequenceNumberCycles": "0", "From": "172.20.0.254:60337", "PT": "200(Sender Report)", "FractionLost": "148"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Event": "Newchannel", "Channel": "SIP/150010002-0000000e", "CallerIDName": "Docker", "Exten": "201", "content": "", "Privilege": "call,all", "ChannelState": "0", "AccountCode": "150010002", "ChannelStateDesc": "Down", "Context": "osvpi_account", "CallerIDNum": "150010002"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "sip:150010002@10.13.36.116:5060", "Event": "VarSet", "content": "", "Variable": "SIPURI"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "10.13.37.110", "Event": "VarSet", "content": "", "Variable": "SIPDOMAIN"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "925b5d58-51642b15@10.13.36.116", "Event": "VarSet", "content": "", "Variable": "SIPCALLID"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "15001", "Event": "VarSet", "content": "", "Variable": "__client_id"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "150010002", "Event": "VarSet", "content": "", "Variable": "__account_id"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "no", "Event": "VarSet", "content": "", "Variable": "__record_call"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "31", "Event": "VarSet", "content": "", "Variable": "__intprefix"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "4", "Event": "VarSet", "content": "", "Variable": "__limit_account"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "0", "Event": "VarSet", "content": "", "Variable": "__limit_client"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "1", "Event": "VarSet", "content": "", "Variable": "__hide_ext_cliname"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "osvpi_account_transfer", "Event": "VarSet", "content": "", "Variable": "__TRANSFER_CONTEXT"}, - {"CallerIDName": "Docker", "Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "call,all", "Event": "Newstate", "Channel": "SIP/150010002-0000000e", "ConnectedLineNum": "", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "CallerIDNum": "150010002", "content": ""}, - {"Application": "ExecIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "1", "Context": "osvpi_account", "Channel": "SIP/150010002-0000000e", "AppData": "0?GotoIf(0?osvpi_proc_hangup_insecure,201,1)", "content": ""}, - {"Application": "Gosub", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "2", "Context": "osvpi_account", "Channel": "SIP/150010002-0000000e", "AppData": "osvpi_proc_check_forwards,s,1", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "0", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARGC)"}, - {"Application": "GotoIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "s", "Privilege": "dialplan,all", "Priority": "1", "Context": "osvpi_proc_check_forwards", "Channel": "SIP/150010002-0000000e", "AppData": "0?check,1", "content": ""}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "s", "Privilege": "dialplan,all", "Priority": "2", "Context": "osvpi_proc_check_forwards", "Channel": "SIP/150010002-0000000e", "AppData": "LOCAL(tmp)=70", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "70", "Event": "VarSet", "content": "", "Variable": "LOCAL(tmp)"}, - {"Application": "ExecIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "s", "Privilege": "dialplan,all", "Priority": "3", "Context": "osvpi_proc_check_forwards", "Channel": "SIP/150010002-0000000e", "AppData": "0?Goto(init,1)", "content": ""}, - {"Application": "ExecIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "s", "Privilege": "dialplan,all", "Priority": "4", "Context": "osvpi_proc_check_forwards", "Channel": "SIP/150010002-0000000e", "AppData": "1?Goto(init,1)", "content": ""}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "init", "Privilege": "dialplan,all", "Priority": "1", "Context": "osvpi_proc_check_forwards", "Channel": "SIP/150010002-0000000e", "AppData": "MASTER_CHANNEL(SIP_MAX_FORWARDS)=16", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "16", "Event": "VarSet", "content": "", "Variable": "SIP_MAX_FORWARDS"}, - {"Application": "NoOp", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "init", "Privilege": "dialplan,all", "Priority": "2", "Context": "osvpi_proc_check_forwards", "Channel": "SIP/150010002-0000000e", "AppData": "DEBUG: MaxForwards: initialized to: 16", "content": ""}, - {"Application": "Return", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "init", "Privilege": "dialplan,all", "Priority": "3", "Context": "osvpi_proc_check_forwards", "Channel": "SIP/150010002-0000000e", "AppData": "", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "", "Event": "VarSet", "content": "", "Variable": "GOSUB_RETVAL"}, - {"Application": "GotoIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "3", "Context": "osvpi_account", "Channel": "SIP/150010002-0000000e", "AppData": "0?osvpi_account_transfer,201,1", "content": ""}, - {"Application": "NoOp", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "4", "Context": "osvpi_account", "Channel": "SIP/150010002-0000000e", "AppData": "ENTRY POINT username=150010002,ip=172.20.0.13/172.20.0.13,from=sip:150010002@10.13.37.110,contact=sip:150010002@10.13.36.116:5060,ua=Cisco/SPA504G-7.5.2b,name=Docker,num=150010002,pres=allowed_not_screened", "content": ""}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "5", "Context": "osvpi_account", "Channel": "SIP/150010002-0000000e", "AppData": "is_transfer=0", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "0", "Event": "VarSet", "content": "", "Variable": "is_transfer"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "6", "Context": "osvpi_account", "Channel": "SIP/150010002-0000000e", "AppData": "CDR(amaflags)=BILLING", "content": ""}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "7", "Context": "osvpi_account", "Channel": "SIP/150010002-0000000e", "AppData": "user_privacy=0", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "0", "Event": "VarSet", "content": "", "Variable": "user_privacy"}, - {"Application": "ExecIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "8", "Context": "osvpi_account", "Channel": "SIP/150010002-0000000e", "AppData": "1?Set(__supports_progress=1)", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "1", "Event": "VarSet", "content": "", "Variable": "__supports_progress"}, - {"Application": "Gosub", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "9", "Context": "osvpi_account", "Channel": "SIP/150010002-0000000e", "AppData": "osvpi_proc_record_call,s-no,1(out,15001,150010002)", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "out", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARG1)"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "15001", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARG2)"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "150010002", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARG3)"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "3", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARGC)"}, - {"Application": "Return", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "s-no", "Privilege": "dialplan,all", "Priority": "1", "Context": "osvpi_proc_record_call", "Channel": "SIP/150010002-0000000e", "AppData": "", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "", "Event": "VarSet", "content": "", "Variable": "GOSUB_RETVAL"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "10", "Context": "osvpi_account", "Channel": "SIP/150010002-0000000e", "AppData": "l_tmp=", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "", "Event": "VarSet", "content": "", "Variable": "l_tmp"}, - {"Application": "ExecIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "11", "Context": "osvpi_account", "Channel": "SIP/150010002-0000000e", "AppData": "1?Set(l_tmp=)", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "", "Event": "VarSet", "content": "", "Variable": "l_tmp"}, - {"Application": "GotoIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "12", "Context": "osvpi_account", "Channel": "SIP/150010002-0000000e", "AppData": "1?checkprivacy", "content": ""}, - {"Application": "ExecIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "16", "Context": "osvpi_account", "Channel": "SIP/150010002-0000000e", "AppData": "0?Set(CALLERID(pres)=allowed_passed_screen)", "content": ""}, - {"Application": "ExecIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "17", "Context": "osvpi_account", "Channel": "SIP/150010002-0000000e", "AppData": "0?Set(CALLERID(pres)=prohib_passed_screen)", "content": ""}, - {"Application": "ExecIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "18", "Context": "osvpi_account", "Channel": "SIP/150010002-0000000e", "AppData": "0?Set(CHANNEL(musicclass)=)", "content": ""}, - {"Application": "GotoIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "19", "Context": "osvpi_account", "Channel": "SIP/150010002-0000000e", "AppData": "1?continue", "content": ""}, - {"Application": "Gosub", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "22", "Context": "osvpi_account", "Channel": "SIP/150010002-0000000e", "AppData": "osvpi_proc_set_i18n_region,31,1", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "0", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARGC)"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "31", "Privilege": "dialplan,all", "Priority": "1", "Context": "osvpi_proc_set_i18n_region", "Channel": "SIP/150010002-0000000e", "AppData": "i18n_region=NL", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "NL", "Event": "VarSet", "content": "", "Variable": "i18n_region"}, - {"Application": "Return", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "31", "Privilege": "dialplan,all", "Priority": "2", "Context": "osvpi_proc_set_i18n_region", "Channel": "SIP/150010002-0000000e", "AppData": "", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "", "Event": "VarSet", "content": "", "Variable": "GOSUB_RETVAL"}, - {"Application": "Goto", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "23", "Context": "osvpi_account", "Channel": "SIP/150010002-0000000e", "AppData": "osvpi_account_emergency_NL,201,1", "content": ""}, - {"Application": "Goto", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "1", "Context": "osvpi_account_emergency_NL", "Channel": "SIP/150010002-0000000e", "AppData": "osvpi_account_no_emergency,201,1", "content": ""}, - {"Application": "Goto", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "1", "Context": "osvpi_account_no_emergency", "Channel": "SIP/150010002-0000000e", "AppData": "osvpi_account,201,no-emergency", "content": ""}, - {"Application": "Goto", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "24", "Context": "osvpi_account", "Channel": "SIP/150010002-0000000e", "AppData": "osvpi_account_clean,201,1", "content": ""}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "1", "Context": "osvpi_account_clean", "Channel": "SIP/150010002-0000000e", "AppData": "return=osvpi_account_clean", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "osvpi_account_clean", "Event": "VarSet", "content": "", "Variable": "return"}, - {"Application": "Goto", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "2", "Context": "osvpi_account_clean", "Channel": "SIP/150010002-0000000e", "AppData": "osvpi_return_to_canonical,31i201,1", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "31i201", "Event": "VarSet", "content": "", "Variable": "INVALID_EXTEN"}, - {"Application": "Goto", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "i", "Privilege": "dialplan,all", "Priority": "1", "Context": "osvpi_return_to_canonical", "Channel": "SIP/150010002-0000000e", "AppData": "osvpi_account_clean,201,local", "content": ""}, - {"Application": "GotoIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "3", "Context": "osvpi_account_clean", "Channel": "SIP/150010002-0000000e", "AppData": "0?extern", "content": ""}, - {"Application": "Gosub", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "4", "Context": "osvpi_account_clean", "Channel": "SIP/150010002-0000000e", "AppData": "osvpi_proc_set_callerid,201,1(150010002,0,0)", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "150010002", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARG1)"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "0", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARG2)"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "0", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARG3)"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "3", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARGC)"}, - {"Application": "GotoIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "1", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010002-0000000e", "AppData": "0?done", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "1", "Event": "VarSet", "content": "", "Variable": "ODBCROWS"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "SUCCESS", "Event": "VarSet", "content": "", "Variable": "ODBCSTATUS"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "set,privacy,name,number_int,number_ext", "Event": "VarSet", "content": "", "Variable": "~ODBCFIELDS~"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "2", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010002-0000000e", "AppData": "ARRAY(LOCAL(set),LOCAL(privacy),LOCAL(name),LOCAL(number_int),LOCAL(number_ext))=1,0,Robert Murray,202,+31150010001", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "1", "Event": "VarSet", "content": "", "Variable": "LOCAL(set)"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "0", "Event": "VarSet", "content": "", "Variable": "LOCAL(privacy)"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "Robert Murray", "Event": "VarSet", "content": "", "Variable": "LOCAL(name)"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "202", "Event": "VarSet", "content": "", "Variable": "LOCAL(number_int)"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "+31150010001", "Event": "VarSet", "content": "", "Variable": "LOCAL(number_ext)"}, - {"Application": "GotoIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "3", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010002-0000000e", "AppData": "0?presentation", "content": ""}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "4", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010002-0000000e", "AppData": "CALLERID(pres)=allowed_passed_screen", "content": ""}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "5", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010002-0000000e", "AppData": "CALLERID(name)=Robert Murray", "content": ""}, - {"CallerIDNum": "150010002", "Event": "NewCallerid", "Uniqueid": "63f2f9ce924a-1502179195.28", "Channel": "SIP/150010002-0000000e", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "Privilege": "call,all", "CallerIDName": "Robert Murray", "content": ""}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "6", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010002-0000000e", "AppData": "CALLERID(num)=202", "content": ""}, - {"CallerIDNum": "202", "Event": "NewCallerid", "Uniqueid": "63f2f9ce924a-1502179195.28", "Channel": "SIP/150010002-0000000e", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "Privilege": "call,all", "CallerIDName": "Robert Murray", "content": ""}, - {"Application": "ExecIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "7", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010002-0000000e", "AppData": "0?Set(CALLERID(pres)=prohib_passed_screen)", "content": ""}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "8", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010002-0000000e", "AppData": "CALLERID(ANI)=202", "content": ""}, - {"Application": "Gosub", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "9", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010002-0000000e", "AppData": "osvpi_proc_set_callerid_internal,201,1", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARG1)"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARG2)"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARG3)"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "0", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARGC)"}, - {"Application": "GotoIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "1", "Context": "osvpi_proc_set_callerid_internal", "Channel": "SIP/150010002-0000000e", "AppData": "1?nop", "content": ""}, - {"Application": "ExecIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "5", "Context": "osvpi_proc_set_callerid_internal", "Channel": "SIP/150010002-0000000e", "AppData": "0?Set(CALLERID(ANI)=20)", "content": ""}, - {"Application": "Return", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "6", "Context": "osvpi_proc_set_callerid_internal", "Channel": "SIP/150010002-0000000e", "AppData": "", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "", "Event": "VarSet", "content": "", "Variable": "GOSUB_RETVAL"}, - {"Application": "Return", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "10", "Context": "osvpi_proc_set_callerid", "Channel": "SIP/150010002-0000000e", "AppData": "", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "", "Event": "VarSet", "content": "", "Variable": "GOSUB_RETVAL"}, - {"Application": "GotoIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "5", "Context": "osvpi_account_clean", "Channel": "SIP/150010002-0000000e", "AppData": "3?osvpi_account_call_int,201,1:i,1", "content": ""}, - {"Application": "Gosub", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "1", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-0000000e", "AppData": "osvpi_proc_check_limits,201,1", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "0", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARGC)"}, - {"Application": "NoOp", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "1", "Context": "osvpi_proc_check_limits", "Channel": "SIP/150010002-0000000e", "AppData": "DEBUG: call_limit: client 1/0 and account 0/4", "content": ""}, - {"Application": "GotoIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "2", "Context": "osvpi_proc_check_limits", "Channel": "SIP/150010002-0000000e", "AppData": "0?osvpi_handle_limit,201,client", "content": ""}, - {"Application": "GotoIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "3", "Context": "osvpi_proc_check_limits", "Channel": "SIP/150010002-0000000e", "AppData": "0?osvpi_handle_limit,201,account", "content": ""}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "4", "Context": "osvpi_proc_check_limits", "Channel": "SIP/150010002-0000000e", "AppData": "GROUP(account_lim)=150010002", "content": ""}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "5", "Context": "osvpi_proc_check_limits", "Channel": "SIP/150010002-0000000e", "AppData": "GROUP(client_lim)=15001", "content": ""}, - {"Application": "Return", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "6", "Context": "osvpi_proc_check_limits", "Channel": "SIP/150010002-0000000e", "AppData": "", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "", "Event": "VarSet", "content": "", "Variable": "GOSUB_RETVAL"}, - {"Application": "Gosub", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "2", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-0000000e", "AppData": "osvpi_proc_check_recurse,201,1(15001)", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "15001", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARG1)"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "1", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARGC)"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "1", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010002-0000000e", "AppData": "LOCAL(exten)=15001:201", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "15001:201", "Event": "VarSet", "content": "", "Variable": "LOCAL(exten)"}, - {"Application": "NoOp", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "2", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010002-0000000e", "AppData": "Recursion checking 15001:201 against ", "content": ""}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "3", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010002-0000000e", "AppData": "LOCAL(n)=0", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "0", "Event": "VarSet", "content": "", "Variable": "LOCAL(n)"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "4", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010002-0000000e", "AppData": "LOCAL(i)=1", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "1", "Event": "VarSet", "content": "", "Variable": "LOCAL(i)"}, - {"Application": "GotoIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "5", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010002-0000000e", "AppData": "1?add", "content": ""}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "9", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010002-0000000e", "AppData": "__EXTEN_LIST=15001:201 ", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "15001:201 ", "Event": "VarSet", "content": "", "Variable": "__EXTEN_LIST"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "10", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010002-0000000e", "AppData": "__EXTEN_LIST_LAST_EDIT_TIME=1502179195", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "1502179195", "Event": "VarSet", "content": "", "Variable": "__EXTEN_LIST_LAST_EDIT_TIME"}, - {"Application": "Return", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "11", "Context": "osvpi_proc_check_recurse", "Channel": "SIP/150010002-0000000e", "AppData": "", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "", "Event": "VarSet", "content": "", "Variable": "GOSUB_RETVAL"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "3", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-0000000e", "AppData": "__ORIG_EXTEN=201", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "201", "Event": "VarSet", "content": "", "Variable": "__ORIG_EXTEN"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "0", "Event": "VarSet", "content": "", "Variable": "ODBCROWS"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "NODATA", "Event": "VarSet", "content": "", "Variable": "ODBCSTATUS"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "4", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-0000000e", "AppData": "ARRAY(conference_id,user_password,admin_password,conference_language)=", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "", "Event": "VarSet", "content": "", "Variable": "conference_id"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "", "Event": "VarSet", "content": "", "Variable": "user_password"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "", "Event": "VarSet", "content": "", "Variable": "admin_password"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "", "Event": "VarSet", "content": "", "Variable": "conference_language"}, - {"Application": "GotoIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "5", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-0000000e", "AppData": "0?osvpi_route_conference,ID,1", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "0", "Event": "VarSet", "content": "", "Variable": "ODBCROWS"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "NODATA", "Event": "VarSet", "content": "", "Variable": "ODBCSTATUS"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "6", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-0000000e", "AppData": "ARRAY(route_id,client_timezone)=", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "", "Event": "VarSet", "content": "", "Variable": "route_id"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "", "Event": "VarSet", "content": "", "Variable": "client_timezone"}, - {"Application": "GotoIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "7", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-0000000e", "AppData": "0?osvpi_route_root,201,restart", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "0", "Event": "VarSet", "content": "", "Variable": "ODBCROWS"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "NODATA", "Event": "VarSet", "content": "", "Variable": "ODBCSTATUS"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "8", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-0000000e", "AppData": "ARRAY(all_extensions,limited_extensions,password,account_spy_language)=", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "", "Event": "VarSet", "content": "", "Variable": "all_extensions"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "", "Event": "VarSet", "content": "", "Variable": "limited_extensions"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "", "Event": "VarSet", "content": "", "Variable": "password"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "", "Event": "VarSet", "content": "", "Variable": "account_spy_language"}, - {"Application": "GotoIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "9", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-0000000e", "AppData": "0?osvpi_account_spy,201,1", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "1", "Event": "VarSet", "content": "", "Variable": "ODBCROWS"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "SUCCESS", "Event": "VarSet", "content": "", "Variable": "ODBCSTATUS"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "interfaces", "Event": "VarSet", "content": "", "Variable": "~ODBCFIELDS~"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "10", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-0000000e", "AppData": "ARRAY(interfaces)=Local/ID710150@osvpi_route_phoneaccount", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "Local/ID710150@osvpi_route_phoneaccount", "Event": "VarSet", "content": "", "Variable": "interfaces"}, - {"Application": "GotoIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "11", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-0000000e", "AppData": "0?osvpi_handle_unallocated,201,1", "content": ""}, - {"Application": "Dial", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "201", "Privilege": "dialplan,all", "Priority": "12", "Context": "osvpi_account_call_int", "Channel": "SIP/150010002-0000000e", "AppData": "Local/ID710150@osvpi_route_phoneaccount", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "", "Event": "VarSet", "content": "", "Variable": "DIALSTATUS"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "", "Event": "VarSet", "content": "", "Variable": "DIALEDPEERNUMBER"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "", "Event": "VarSet", "content": "", "Variable": "DIALEDPEERNAME"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "", "Event": "VarSet", "content": "", "Variable": "ANSWEREDTIME"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "", "Event": "VarSet", "content": "", "Variable": "DIALEDTIME"}, - {"Uniqueid": "63f2f9ce924a-1502179195.29", "Event": "Newchannel", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;1", "CallerIDName": "", "Exten": "ID710150", "content": "", "Privilege": "call,all", "ChannelState": "0", "AccountCode": "", "ChannelStateDesc": "Down", "Context": "osvpi_route_phoneaccount", "CallerIDNum": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Event": "Newchannel", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "CallerIDName": "", "Exten": "ID710150", "content": "", "Privilege": "call,all", "ChannelState": "4", "AccountCode": "", "ChannelStateDesc": "Ring", "Context": "osvpi_route_phoneaccount", "CallerIDNum": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.29", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;1", "Value": "ID710150@osvpi_route_phoneaccount", "Event": "VarSet", "content": "", "Variable": "DIALEDPEERNUMBER"}, - {"CallerIDNum": "201", "Event": "NewCallerid", "Uniqueid": "63f2f9ce924a-1502179195.29", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;1", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Privilege": "call,all", "CallerIDName": "", "content": ""}, - {"Channel1": "Local/ID710150@osvpi_route_phoneaccount-00000007;1", "Event": "LocalBridge", "LocalOptimization": "Yes", "Uniqueid2": "63f2f9ce924a-1502179195.30", "Channel2": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Uniqueid1": "63f2f9ce924a-1502179195.29", "Privilege": "call,all", "Context": "osvpi_route_phoneaccount", "content": "", "Exten": "ID710150"}, - {"Event": "Dial", "Privilege": "call,all", "UniqueID": "63f2f9ce924a-1502179195.28", "DestUniqueID": "63f2f9ce924a-1502179195.29", "Channel": "SIP/150010002-0000000e", "SubEvent": "Begin", "CallerIDName": "Robert Murray", "content": "", "Dialstring": "ID710150@osvpi_route_phoneaccount", "ConnectedLineNum": "", "Destination": "Local/ID710150@osvpi_route_phoneaccount-00000007;1", "ConnectedLineName": "", "CallerIDNum": "202"}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "1", "Event": "VarSet", "content": "", "Variable": "ODBCROWS"}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "SUCCESS", "Event": "VarSet", "content": "", "Variable": "ODBCSTATUS"}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account", "Event": "VarSet", "content": "", "Variable": "~ODBCFIELDS~"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.30", "Extension": "ID710150", "Privilege": "dialplan,all", "Priority": "1", "Context": "osvpi_route_phoneaccount", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=150010001,accountid,dutch,from,,0", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "150010001", "Event": "VarSet", "content": "", "Variable": "__dst_account_id"}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "accountid", "Event": "VarSet", "content": "", "Variable": "l_mangle_did"}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "dutch", "Event": "VarSet", "content": "", "Variable": "l_mangle_cli"}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "from", "Event": "VarSet", "content": "", "Variable": "l_cli_header"}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "", "Event": "VarSet", "content": "", "Variable": "l_primary_pickupgroup"}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "0", "Event": "VarSet", "content": "", "Variable": "app_account"}, - {"Application": "GotoIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.30", "Extension": "ID710150", "Privilege": "dialplan,all", "Priority": "2", "Context": "osvpi_route_phoneaccount", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "AppData": "0?vialer", "content": ""}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.30", "Extension": "ID710150", "Privilege": "dialplan,all", "Priority": "3", "Context": "osvpi_route_phoneaccount", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "AppData": "_PICKUPMARK=", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "", "Event": "VarSet", "content": "", "Variable": "_PICKUPMARK"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.30", "Extension": "ID710150", "Privilege": "dialplan,all", "Priority": "4", "Context": "osvpi_route_phoneaccount", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "AppData": "l_trunk=0", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "0", "Event": "VarSet", "content": "", "Variable": "l_trunk"}, - {"Application": "Goto", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.30", "Extension": "ID710150", "Privilege": "dialplan,all", "Priority": "5", "Context": "osvpi_route_phoneaccount", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "AppData": "osvpi_route_account,ID710150,1", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "1", "Event": "VarSet", "content": "", "Variable": "ODBCROWS"}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "SUCCESS", "Event": "VarSet", "content": "", "Variable": "ODBCSTATUS"}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "proxy", "Event": "VarSet", "content": "", "Variable": "~ODBCFIELDS~"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.30", "Extension": "ID710150", "Privilege": "dialplan,all", "Priority": "1", "Context": "osvpi_route_account", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "AppData": "ARRAY(l_proxy)=172.20.0.13", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "172.20.0.13", "Event": "VarSet", "content": "", "Variable": "l_proxy"}, - {"Application": "Gosub", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.30", "Extension": "ID710150", "Privilege": "dialplan,all", "Priority": "2", "Context": "osvpi_route_account", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "AppData": "osvpi_proc_mangle_number,accountid,1(150010001,201)", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "150010001", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARG1)"}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "201", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARG2)"}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "2", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARGC)"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.30", "Extension": "accountid", "Privilege": "dialplan,all", "Priority": "1", "Context": "osvpi_proc_mangle_number", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "AppData": "MANGLED_EXTEN=150010001", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "150010001", "Event": "VarSet", "content": "", "Variable": "MANGLED_EXTEN"}, - {"Application": "Return", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.30", "Extension": "accountid", "Privilege": "dialplan,all", "Priority": "2", "Context": "osvpi_proc_mangle_number", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "AppData": "", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "", "Event": "VarSet", "content": "", "Variable": "GOSUB_RETVAL"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.30", "Extension": "ID710150", "Privilege": "dialplan,all", "Priority": "3", "Context": "osvpi_route_account", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "AppData": "l_did=150010001", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "150010001", "Event": "VarSet", "content": "", "Variable": "l_did"}, - {"Application": "Gosub", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.30", "Extension": "ID710150", "Privilege": "dialplan,all", "Priority": "4", "Context": "osvpi_route_account", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "AppData": "osvpi_proc_mangle_number,dutch,1(150010001,202)", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "150010001", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARG1)"}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "202", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARG2)"}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "2", "Event": "VarSet", "content": "", "Variable": "LOCAL(ARGC)"}, - {"Application": "GotoIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.30", "Extension": "dutch", "Privilege": "dialplan,all", "Priority": "1", "Context": "osvpi_proc_mangle_number", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "AppData": "1?fullzero,1", "content": ""}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.30", "Extension": "fullzero", "Privilege": "dialplan,all", "Priority": "1", "Context": "osvpi_proc_mangle_number", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "AppData": "MANGLED_EXTEN=202", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "202", "Event": "VarSet", "content": "", "Variable": "MANGLED_EXTEN"}, - {"Application": "Return", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.30", "Extension": "fullzero", "Privilege": "dialplan,all", "Priority": "2", "Context": "osvpi_proc_mangle_number", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "AppData": "", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "", "Event": "VarSet", "content": "", "Variable": "GOSUB_RETVAL"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.30", "Extension": "ID710150", "Privilege": "dialplan,all", "Priority": "5", "Context": "osvpi_route_account", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "AppData": "l_mangle_cli_hdr=from-dutch", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "from-dutch", "Event": "VarSet", "content": "", "Variable": "l_mangle_cli_hdr"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.30", "Extension": "ID710150", "Privilege": "dialplan,all", "Priority": "6", "Context": "osvpi_route_account", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "AppData": "l_fromuser=", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "", "Event": "VarSet", "content": "", "Variable": "l_fromuser"}, - {"Application": "ExecIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.30", "Extension": "ID710150", "Privilege": "dialplan,all", "Priority": "7", "Context": "osvpi_route_account", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "AppData": "1?Set(l_fromuser=202)", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "202", "Event": "VarSet", "content": "", "Variable": "l_fromuser"}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "1", "Event": "VarSet", "content": "", "Variable": "ODBCROWS"}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "SUCCESS", "Event": "VarSet", "content": "", "Variable": "ODBCSTATUS"}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "IF((SELECT 1 FROM baseaccount_account ba INNER JOIN userdestination_selecteduserdestination udsud ON udsud.phoneaccount_id = ba.id INNER JOIN userdestination_userdestination udud ON udud.id = udsud.userdestination_id INNER JOIN crm_cloudctiuser cccu O", "Event": "VarSet", "content": "", "Variable": "~ODBCFIELDS~"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.30", "Extension": "ID710150", "Privilege": "dialplan,all", "Priority": "8", "Context": "osvpi_route_account", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "AppData": "ARRAY(cloudcti)=0", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "0", "Event": "VarSet", "content": "", "Variable": "cloudcti"}, - {"Application": "GotoIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.30", "Extension": "ID710150", "Privilege": "dialplan,all", "Priority": "9", "Context": "osvpi_route_account", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "AppData": "1?skipcloudcti", "content": ""}, - {"Application": "Goto", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.30", "Extension": "ID710150", "Privilege": "dialplan,all", "Priority": "11", "Context": "osvpi_route_account", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "AppData": "osvpi_proc_proxy_out,201,1", "content": ""}, - {"Application": "SIPAddHeader", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.30", "Extension": "201", "Privilege": "dialplan,all", "Priority": "1", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "AppData": "X-Accountcode: 150010001", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "X-Accountcode: 150010001", "Event": "VarSet", "content": "", "Variable": "__SIPADDHEADER01"}, - {"Application": "SIPAddHeader", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.30", "Extension": "201", "Privilege": "dialplan,all", "Priority": "2", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "AppData": "X-Insecure-Protection: geheim", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "X-Insecure-Protection: geheim", "Event": "VarSet", "content": "", "Variable": "__SIPADDHEADER02"}, - {"Application": "SIPAddHeader", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.30", "Extension": "201", "Privilege": "dialplan,all", "Priority": "3", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "AppData": "X-Mangle-Cli: from-dutch", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "X-Mangle-Cli: from-dutch", "Event": "VarSet", "content": "", "Variable": "__SIPADDHEADER03"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.30", "Extension": "201", "Privilege": "dialplan,all", "Priority": "4", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "AppData": "_dial_options_callaccept=", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "", "Event": "VarSet", "content": "", "Variable": "_dial_options_callaccept"}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.30", "Extension": "201", "Privilege": "dialplan,all", "Priority": "5", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "AppData": "_dial_options_callnotify=", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "", "Event": "VarSet", "content": "", "Variable": "_dial_options_callnotify"}, - {"Application": "ExecIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.30", "Extension": "201", "Privilege": "dialplan,all", "Priority": "6", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "AppData": "0?Set(l_proxy=opensipsfg)", "content": ""}, - {"Application": "Set", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.30", "Extension": "201", "Privilege": "dialplan,all", "Priority": "7", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "AppData": "l_extra_options=", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "", "Event": "VarSet", "content": "", "Variable": "l_extra_options"}, - {"Application": "Dial", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.30", "Extension": "201", "Privilege": "dialplan,all", "Priority": "8", "Context": "osvpi_proc_proxy_out", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "AppData": "SIP/150010001/150010001/172.20.0.13!!202,,", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "", "Event": "VarSet", "content": "", "Variable": "DIALSTATUS"}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "", "Event": "VarSet", "content": "", "Variable": "DIALEDPEERNUMBER"}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "", "Event": "VarSet", "content": "", "Variable": "DIALEDPEERNAME"}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "", "Event": "VarSet", "content": "", "Variable": "ANSWEREDTIME"}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "", "Event": "VarSet", "content": "", "Variable": "DIALEDTIME"}, - {"Uniqueid": "63f2f9ce924a-1502179195.31", "Event": "Newchannel", "Channel": "SIP/150010001-0000000f", "CallerIDName": "", "Exten": "", "content": "", "Privilege": "call,all", "ChannelState": "0", "AccountCode": "150010001", "ChannelStateDesc": "Down", "Context": "osvpi_account", "CallerIDNum": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.31", "Privilege": "dialplan,all", "Channel": "SIP/150010001-0000000f", "Value": "18d031f4598550cf1edcb66e2b5509ba@test.voipgrid.nl", "Event": "VarSet", "content": "", "Variable": "SIPCALLID"}, - {"Uniqueid": "63f2f9ce924a-1502179195.31", "Privilege": "dialplan,all", "Channel": "SIP/150010001-0000000f", "Value": "15001", "Event": "VarSet", "content": "", "Variable": "__client_id"}, - {"Uniqueid": "63f2f9ce924a-1502179195.31", "Privilege": "dialplan,all", "Channel": "SIP/150010001-0000000f", "Value": "150010001", "Event": "VarSet", "content": "", "Variable": "__account_id"}, - {"Uniqueid": "63f2f9ce924a-1502179195.31", "Privilege": "dialplan,all", "Channel": "SIP/150010001-0000000f", "Value": "no", "Event": "VarSet", "content": "", "Variable": "__record_call"}, - {"Uniqueid": "63f2f9ce924a-1502179195.31", "Privilege": "dialplan,all", "Channel": "SIP/150010001-0000000f", "Value": "31", "Event": "VarSet", "content": "", "Variable": "__intprefix"}, - {"Uniqueid": "63f2f9ce924a-1502179195.31", "Privilege": "dialplan,all", "Channel": "SIP/150010001-0000000f", "Value": "4", "Event": "VarSet", "content": "", "Variable": "__limit_account"}, - {"Uniqueid": "63f2f9ce924a-1502179195.31", "Privilege": "dialplan,all", "Channel": "SIP/150010001-0000000f", "Value": "0", "Event": "VarSet", "content": "", "Variable": "__limit_client"}, - {"Uniqueid": "63f2f9ce924a-1502179195.31", "Privilege": "dialplan,all", "Channel": "SIP/150010001-0000000f", "Value": "1", "Event": "VarSet", "content": "", "Variable": "__hide_ext_cliname"}, - {"Uniqueid": "63f2f9ce924a-1502179195.31", "Privilege": "dialplan,all", "Channel": "SIP/150010001-0000000f", "Value": "osvpi_account_transfer", "Event": "VarSet", "content": "", "Variable": "__TRANSFER_CONTEXT"}, - {"Uniqueid": "63f2f9ce924a-1502179195.31", "Privilege": "dialplan,all", "Channel": "SIP/150010001-0000000f", "Value": "150010001/150010001/172.20.0.13!!202", "Event": "VarSet", "content": "", "Variable": "DIALEDPEERNUMBER"}, - {"CallerIDNum": "201", "Event": "NewCallerid", "Uniqueid": "63f2f9ce924a-1502179195.31", "Channel": "SIP/150010001-0000000f", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Privilege": "call,all", "CallerIDName": "", "content": ""}, - {"Event": "Dial", "Privilege": "call,all", "UniqueID": "63f2f9ce924a-1502179195.30", "DestUniqueID": "63f2f9ce924a-1502179195.31", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "SubEvent": "Begin", "CallerIDName": "Robert Murray", "content": "", "Dialstring": "150010001/150010001/172.20.0.13!!202", "ConnectedLineNum": "201", "Destination": "SIP/150010001-0000000f", "ConnectedLineName": "", "CallerIDNum": "202"}, - {"CallerIDName": "", "Uniqueid": "63f2f9ce924a-1502179195.31", "Privilege": "call,all", "Event": "Newstate", "Channel": "SIP/150010001-0000000f", "ConnectedLineNum": "202", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Robert Murray", "CallerIDNum": "201", "content": ""}, - {"CallerIDName": "", "Uniqueid": "63f2f9ce924a-1502179195.29", "Privilege": "call,all", "Event": "Newstate", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;1", "ConnectedLineNum": "202", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Robert Murray", "CallerIDNum": "201", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "osvpi_account", "Event": "VarSet", "content": "", "Variable": "SIPREFERRINGCONTEXT"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "\"Docker\" ", "Event": "VarSet", "content": "", "Variable": "SIPREFERREDBYHDR"}, - {"TransferType": "Attended", "Uniqueid": "63f2f9ce924a-1502179190.25", "SIP-Callid": "089ed6ce0743268c388e5ddb2da73197@test.voipgrid.nl", "Channel": "SIP/150010002-0000000d", "Privilege": "call,all", "TargetChannel": "SIP/150010002-0000000e", "TargetUniqueid": "63f2f9ce924a-1502179195.28", "Event": "Transfer", "content": "", "TransferMethod": "SIP"}, - {"State": "Stop", "Event": "MusicOnHold", "Privilege": "call,all", "UniqueID": "63f2f9ce924a-1502179190.24", "Channel": "SIP/150010003-0000000c", "content": ""}, - {"CloneState": "Up", "OriginalState": "Ring", "Event": "Masquerade", "Privilege": "call,all", "Clone": "SIP/150010003-0000000c", "Original": "SIP/150010002-0000000e", "content": ""}, - {"Newname": "SIP/150010003-0000000c", "Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "call,all", "Channel": "SIP/150010003-0000000c", "Event": "Rename", "content": ""}, - {"Newname": "SIP/150010003-0000000c", "Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "call,all", "Channel": "SIP/150010002-0000000e", "Event": "Rename", "content": ""}, - {"Newname": "SIP/150010002-0000000e", "Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "call,all", "Channel": "SIP/150010003-0000000c", "Event": "Rename", "content": ""}, - {"CallerIDNum": "203", "Event": "NewCallerid", "Uniqueid": "63f2f9ce924a-1502179195.28", "Channel": "SIP/150010003-0000000c", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "Privilege": "call,all", "CallerIDName": "Julia Rhodes", "content": ""}, - {"Channel1": "SIP/150010002-0000000e", "Privilege": "call,all", "Event": "Bridge", "Bridgestate": "Unlink", "Uniqueid2": "63f2f9ce924a-1502179190.25", "Channel2": "SIP/150010002-0000000d", "Uniqueid1": "63f2f9ce924a-1502179190.24", "CallerID1": "202", "Bridgetype": "core", "content": "", "CallerID2": "202"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "1", "Event": "VarSet", "content": "", "Variable": "DIALEDTIME"}, - {"Cause": "16", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502179190.25", "Channel": "SIP/150010002-0000000d", "Cause-txt": "Normal Clearing", "Event": "Hangup", "CallerIDName": "", "ConnectedLineNum": "203", "content": "", "AccountCode": "150010003", "ConnectedLineName": "Julia Rhodes", "CallerIDNum": "202"}, - {"Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "dialplan,all", "Channel": "SIP/150010002-0000000e", "Value": "ANSWER", "Event": "VarSet", "content": "", "Variable": "DIALSTATUS"}, - {"Event": "Dial", "Privilege": "call,all", "UniqueID": "63f2f9ce924a-1502179190.24", "Channel": "SIP/150010002-0000000e", "SubEvent": "End", "DialStatus": "ANSWER", "content": ""}, - {"Cause": "16", "Uniqueid": "63f2f9ce924a-1502179190.24", "Privilege": "call,all", "Channel": "SIP/150010002-0000000e", "Event": "SoftHangupRequest", "content": ""}, - {"Application": "GotoIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "onhangup", "Privilege": "dialplan,all", "Priority": "1", "Context": "handlers", "Channel": "SIP/150010002-0000000e", "AppData": "0?nosip", "content": ""}, - {"Application": "NoOp", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "onhangup", "Privilege": "dialplan,all", "Priority": "2", "Context": "handlers", "Channel": "SIP/150010002-0000000e", "AppData": "LOG: rtpqos: caller=172.20.0.254:36766;asterisk=0.0.0.0:17406;ssrc=445429968;themssrc=0;lp=0;rxjitter=0.000000;rxcount=0;txjitter=0.000000;txcount=0;rlp=0;rtt=0.000000;billsec=0", "content": ""}, - {"Application": "GosubIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179190.24", "Extension": "onhangup", "Privilege": "dialplan,all", "Priority": "3", "Context": "handlers", "Channel": "SIP/150010002-0000000e", "AppData": "0?osvpi_proc_httptouch,s,1()", "content": ""}, - {"Cause": "16", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502179190.24", "Channel": "SIP/150010002-0000000e", "Cause-txt": "Normal Clearing", "Event": "Hangup", "CallerIDName": "Robert Murray", "ConnectedLineNum": "", "content": "", "AccountCode": "150010003", "ConnectedLineName": "", "CallerIDNum": "202"}, - {"SenderSSRC": "4241620992", "Event": "RTCPReceived", "Privilege": "reporting,all", "PacketsLost": "54012", "IAJitter": "0", "DLSR": "0.0000(sec)", "HighestSequence": "54437", "LastSR": "0.0000000000", "ReceptionReports": "1", "content": "", "SequenceNumberCycles": "0", "From": "172.20.0.254:60337", "PT": "200(Sender Report)", "FractionLost": "0"}, - {"CallerIDName": "", "Uniqueid": "63f2f9ce924a-1502179195.31", "Privilege": "call,all", "Event": "Newstate", "Channel": "SIP/150010001-0000000f", "ConnectedLineNum": "203", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Julia Rhodes", "CallerIDNum": "201", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "ANSWER", "Event": "VarSet", "content": "", "Variable": "DIALSTATUS"}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "SIP/150010001-0000000f", "Event": "VarSet", "content": "", "Variable": "DIALEDPEERNAME"}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "150010001/150010001/172.20.0.13!!202", "Event": "VarSet", "content": "", "Variable": "DIALEDPEERNUMBER"}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "SIP/150010001-0000000f", "Event": "VarSet", "content": "", "Variable": "BRIDGEPEER"}, - {"Uniqueid": "63f2f9ce924a-1502179195.31", "Privilege": "dialplan,all", "Channel": "SIP/150010001-0000000f", "Value": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Event": "VarSet", "content": "", "Variable": "BRIDGEPEER"}, - {"CallerIDName": "Robert Murray", "Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "call,all", "Event": "Newstate", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "ConnectedLineNum": "201", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "CallerIDNum": "202", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.31", "Privilege": "call,all", "Channel": "SIP/150010001-0000000f", "AccountCode": "150010002", "Event": "NewAccountCode", "OldAccountCode": "150010002", "content": ""}, - {"Channel1": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Privilege": "call,all", "Event": "Bridge", "Bridgestate": "Link", "Uniqueid2": "63f2f9ce924a-1502179195.31", "Channel2": "SIP/150010001-0000000f", "Uniqueid1": "63f2f9ce924a-1502179195.30", "CallerID1": "202", "Bridgetype": "core", "content": "", "CallerID2": "201"}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "SIP/150010001-0000000f", "Event": "VarSet", "content": "", "Variable": "BRIDGEPEER"}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "18d031f4598550cf1edcb66e2b5509ba@test.voipgrid.nl", "Event": "VarSet", "content": "", "Variable": "BRIDGEPVTCALLID"}, - {"Uniqueid": "63f2f9ce924a-1502179195.31", "Privilege": "dialplan,all", "Channel": "SIP/150010001-0000000f", "Value": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Event": "VarSet", "content": "", "Variable": "BRIDGEPEER"}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "SIP/150010001-0000000f", "Event": "VarSet", "content": "", "Variable": "BRIDGEPEER"}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "18d031f4598550cf1edcb66e2b5509ba@test.voipgrid.nl", "Event": "VarSet", "content": "", "Variable": "BRIDGEPVTCALLID"}, - {"Uniqueid": "63f2f9ce924a-1502179195.31", "Privilege": "dialplan,all", "Channel": "SIP/150010001-0000000f", "Value": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Event": "VarSet", "content": "", "Variable": "BRIDGEPEER"}, - {"CallerIDName": "", "Uniqueid": "63f2f9ce924a-1502179195.29", "Privilege": "call,all", "Event": "Newstate", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;1", "ConnectedLineNum": "203", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Julia Rhodes", "CallerIDNum": "201", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "ANSWER", "Event": "VarSet", "content": "", "Variable": "DIALSTATUS"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "Local/ID710150@osvpi_route_phoneaccount-00000007;1", "Event": "VarSet", "content": "", "Variable": "DIALEDPEERNAME"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "ID710150@osvpi_route_phoneaccount", "Event": "VarSet", "content": "", "Variable": "DIALEDPEERNUMBER"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "Local/ID710150@osvpi_route_phoneaccount-00000007;1", "Event": "VarSet", "content": "", "Variable": "BRIDGEPEER"}, - {"Uniqueid": "63f2f9ce924a-1502179195.29", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;1", "Value": "SIP/150010003-0000000c", "Event": "VarSet", "content": "", "Variable": "BRIDGEPEER"}, - {"Uniqueid": "63f2f9ce924a-1502179195.29", "Privilege": "call,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;1", "AccountCode": "150010003", "Event": "NewAccountCode", "OldAccountCode": "150010002", "content": ""}, - {"Channel1": "SIP/150010003-0000000c", "Privilege": "call,all", "Event": "Bridge", "Bridgestate": "Link", "Uniqueid2": "63f2f9ce924a-1502179195.29", "Channel2": "Local/ID710150@osvpi_route_phoneaccount-00000007;1", "Uniqueid1": "63f2f9ce924a-1502179195.28", "CallerID1": "203", "Bridgetype": "core", "content": "", "CallerID2": "201"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "Local/ID710150@osvpi_route_phoneaccount-00000007;1", "Event": "VarSet", "content": "", "Variable": "BRIDGEPEER"}, - {"Uniqueid": "63f2f9ce924a-1502179195.29", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;1", "Value": "SIP/150010003-0000000c", "Event": "VarSet", "content": "", "Variable": "BRIDGEPEER"}, - {"Uniqueid": "63f2f9ce924a-1502179195.29", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;1", "Value": "1983767972", "Event": "VarSet", "content": "", "Variable": "BRIDGEPVTCALLID"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "Local/ID710150@osvpi_route_phoneaccount-00000007;1", "Event": "VarSet", "content": "", "Variable": "BRIDGEPEER"}, - {"Uniqueid": "63f2f9ce924a-1502179195.29", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;1", "Value": "SIP/150010003-0000000c", "Event": "VarSet", "content": "", "Variable": "BRIDGEPEER"}, - {"Uniqueid": "63f2f9ce924a-1502179195.29", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;1", "Value": "1983767972", "Event": "VarSet", "content": "", "Variable": "BRIDGEPVTCALLID"}, - {"SentOctets": "38880", "Privilege": "reporting,all", "OurSSRC": "1777543732", "SentPackets": "243", "IAJitter": "0.0111", "DLSR": "2.0690 (sec)", "TheirLastSR": "3992773374", "Event": "RTCPSent", "content": "", "SentNTP": "1502179198.3918045184", "CumulativeLoss": "0", "SentRTP": "38880", "To": "172.20.0.254:60337", "FractionLost": "0"}, - {"CloneState": "Up", "OriginalState": "Up", "Event": "Masquerade", "Privilege": "call,all", "Clone": "SIP/150010001-0000000f", "Original": "Local/ID710150@osvpi_route_phoneaccount-00000007;1", "content": ""}, - {"Newname": "SIP/150010001-0000000f", "Uniqueid": "63f2f9ce924a-1502179195.31", "Privilege": "call,all", "Channel": "SIP/150010001-0000000f", "Event": "Rename", "content": ""}, - {"Newname": "SIP/150010001-0000000f", "Uniqueid": "63f2f9ce924a-1502179195.29", "Privilege": "call,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;1", "Event": "Rename", "content": ""}, - {"Newname": "Local/ID710150@osvpi_route_phoneaccount-00000007;1", "Uniqueid": "63f2f9ce924a-1502179195.31", "Privilege": "call,all", "Channel": "SIP/150010001-0000000f", "Event": "Rename", "content": ""}, - {"CallerIDNum": "201", "Event": "NewCallerid", "Uniqueid": "63f2f9ce924a-1502179195.29", "Channel": "SIP/150010001-0000000f", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Privilege": "call,all", "CallerIDName": "", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "SIP/150010001-0000000f", "Event": "VarSet", "content": "", "Variable": "BRIDGEPEER"}, - {"Channel1": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Privilege": "call,all", "Event": "Bridge", "Bridgestate": "Unlink", "Uniqueid2": "63f2f9ce924a-1502179195.31", "Channel2": "Local/ID710150@osvpi_route_phoneaccount-00000007;1", "Uniqueid1": "63f2f9ce924a-1502179195.30", "CallerID1": "202", "Bridgetype": "core", "content": "", "CallerID2": "201"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "18d031f4598550cf1edcb66e2b5509ba@test.voipgrid.nl", "Event": "VarSet", "content": "", "Variable": "BRIDGEPVTCALLID"}, - {"Uniqueid": "63f2f9ce924a-1502179195.29", "Privilege": "dialplan,all", "Channel": "SIP/150010001-0000000f", "Value": "SIP/150010003-0000000c", "Event": "VarSet", "content": "", "Variable": "BRIDGEPEER"}, - {"Uniqueid": "63f2f9ce924a-1502179195.29", "Privilege": "dialplan,all", "Channel": "SIP/150010001-0000000f", "Value": "1983767972", "Event": "VarSet", "content": "", "Variable": "BRIDGEPVTCALLID"}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "1", "Event": "VarSet", "content": "", "Variable": "ANSWEREDTIME"}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "4", "Event": "VarSet", "content": "", "Variable": "DIALEDTIME"}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Event": "HangupRequest", "Privilege": "call,all", "content": ""}, - {"Cause": "16", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502179195.31", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;1", "Cause-txt": "Normal Clearing", "Event": "Hangup", "CallerIDName": "", "ConnectedLineNum": "203", "content": "", "AccountCode": "150010002", "ConnectedLineName": "Julia Rhodes", "CallerIDNum": "201"}, - {"Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "dialplan,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Value": "ANSWER", "Event": "VarSet", "content": "", "Variable": "DIALSTATUS"}, - {"Event": "Dial", "Privilege": "call,all", "UniqueID": "63f2f9ce924a-1502179195.30", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "SubEvent": "End", "DialStatus": "ANSWER", "content": ""}, - {"Cause": "16", "Uniqueid": "63f2f9ce924a-1502179195.30", "Privilege": "call,all", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Event": "SoftHangupRequest", "content": ""}, - {"Application": "GotoIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.30", "Extension": "onhangup", "Privilege": "dialplan,all", "Priority": "1", "Context": "handlers", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "AppData": "1?nosip", "content": ""}, - {"Application": "GosubIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.30", "Extension": "onhangup", "Privilege": "dialplan,all", "Priority": "3", "Context": "handlers", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "AppData": "0?osvpi_proc_httptouch,s,1()", "content": ""}, - {"Cause": "16", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502179195.30", "Channel": "Local/ID710150@osvpi_route_phoneaccount-00000007;2", "Cause-txt": "Normal Clearing", "Event": "Hangup", "CallerIDName": "Robert Murray", "ConnectedLineNum": "201", "content": "", "AccountCode": "150010002", "ConnectedLineName": "", "CallerIDNum": "202"}, - {"SenderSSRC": "4241620992", "Event": "RTCPReceived", "Privilege": "reporting,all", "PacketsLost": "54012", "IAJitter": "4", "DLSR": "0.4107(sec)", "content": "", "LastSR": "60926.1071838354623954944", "ReceptionReports": "1", "HighestSequence": "54534", "SequenceNumberCycles": "0", "From": "172.20.0.254:60337", "PT": "200(Sender Report)", "FractionLost": "0", "RTT": "14(sec)"}, - {"SenderSSRC": "4241620992", "Event": "RTCPReceived", "Privilege": "reporting,all", "PacketsLost": "54012", "IAJitter": "80", "DLSR": "2.9200(sec)", "content": "", "LastSR": "60926.1071838354623954944", "ReceptionReports": "1", "HighestSequence": "54534", "SequenceNumberCycles": "0", "From": "172.20.0.254:60337", "PT": "200(Sender Report)", "FractionLost": "0", "RTT": "14(sec)"}, - {"SenderSSRC": "0", "Event": "RTCPReceived", "Privilege": "reporting,all", "PacketsLost": "0", "IAJitter": "99", "DLSR": "32768.0000(sec)", "HighestSequence": "541", "LastSR": "0.0000000000", "ReceptionReports": "1", "content": "", "SequenceNumberCycles": "0", "From": "172.20.0.254:47991", "PT": "200(Sender Report)", "FractionLost": "0"}, - {"Uniqueid": "63f2f9ce924a-1502179195.29", "Privilege": "dialplan,all", "Channel": "SIP/150010001-0000000f", "Value": "ssrc=257427803;themssrc=292220924;lp=0;rxjitter=0.000000;rxcount=1;txjitter=0.000000;txcount=22;rlp=0;rtt=0.000000", "Event": "VarSet", "content": "", "Variable": "RTPAUDIOQOS"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "ssrc=257427803;themssrc=292220924;lp=0;rxjitter=0.000000;rxcount=1;txjitter=0.000000;txcount=22;rlp=0;rtt=0.000000", "Event": "VarSet", "content": "", "Variable": "RTPAUDIOQOSBRIDGED"}, - {"Uniqueid": "63f2f9ce924a-1502179195.29", "Privilege": "dialplan,all", "Channel": "SIP/150010001-0000000f", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Event": "VarSet", "content": "", "Variable": "RTPAUDIOQOSJITTER"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Event": "VarSet", "content": "", "Variable": "RTPAUDIOQOSJITTERBRIDGED"}, - {"Uniqueid": "63f2f9ce924a-1502179195.29", "Privilege": "dialplan,all", "Channel": "SIP/150010001-0000000f", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Event": "VarSet", "content": "", "Variable": "RTPAUDIOQOSLOSS"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Event": "VarSet", "content": "", "Variable": "RTPAUDIOQOSLOSSBRIDGED"}, - {"Uniqueid": "63f2f9ce924a-1502179195.29", "Privilege": "dialplan,all", "Channel": "SIP/150010001-0000000f", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Event": "VarSet", "content": "", "Variable": "RTPAUDIOQOSRTT"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Event": "VarSet", "content": "", "Variable": "RTPAUDIOQOSRTTBRIDGED"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "ssrc=1855549089;themssrc=158691103;lp=0;rxjitter=0.000000;rxcount=266;txjitter=0.012109;txcount=243;rlp=54012;rtt=0.014000", "Event": "VarSet", "content": "", "Variable": "RTPAUDIOQOS"}, - {"Uniqueid": "63f2f9ce924a-1502179195.29", "Privilege": "dialplan,all", "Channel": "SIP/150010001-0000000f", "Value": "ssrc=1855549089;themssrc=158691103;lp=0;rxjitter=0.000000;rxcount=266;txjitter=0.012109;txcount=243;rlp=54012;rtt=0.014000", "Event": "VarSet", "content": "", "Variable": "RTPAUDIOQOSBRIDGED"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Event": "VarSet", "content": "", "Variable": "RTPAUDIOQOSJITTER"}, - {"Uniqueid": "63f2f9ce924a-1502179195.29", "Privilege": "dialplan,all", "Channel": "SIP/150010001-0000000f", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Event": "VarSet", "content": "", "Variable": "RTPAUDIOQOSJITTERBRIDGED"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Event": "VarSet", "content": "", "Variable": "RTPAUDIOQOSLOSS"}, - {"Uniqueid": "63f2f9ce924a-1502179195.29", "Privilege": "dialplan,all", "Channel": "SIP/150010001-0000000f", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Event": "VarSet", "content": "", "Variable": "RTPAUDIOQOSLOSSBRIDGED"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Event": "VarSet", "content": "", "Variable": "RTPAUDIOQOSRTT"}, - {"Uniqueid": "63f2f9ce924a-1502179195.29", "Privilege": "dialplan,all", "Channel": "SIP/150010001-0000000f", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Event": "VarSet", "content": "", "Variable": "RTPAUDIOQOSRTTBRIDGED"}, - {"Uniqueid": "63f2f9ce924a-1502179195.29", "Channel": "SIP/150010001-0000000f", "Event": "HangupRequest", "Privilege": "call,all", "content": ""}, - {"Channel1": "SIP/150010003-0000000c", "Privilege": "call,all", "Event": "Bridge", "Bridgestate": "Unlink", "Uniqueid2": "63f2f9ce924a-1502179195.29", "Channel2": "SIP/150010001-0000000f", "Uniqueid1": "63f2f9ce924a-1502179195.28", "CallerID1": "203", "Bridgetype": "core", "content": "", "CallerID2": "201"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "4", "Event": "VarSet", "content": "", "Variable": "ANSWEREDTIME"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "6", "Event": "VarSet", "content": "", "Variable": "DIALEDTIME"}, - {"Cause": "16", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502179195.29", "Channel": "SIP/150010001-0000000f", "Cause-txt": "Normal Clearing", "Event": "Hangup", "CallerIDName": "", "ConnectedLineNum": "203", "content": "", "AccountCode": "150010002", "ConnectedLineName": "Julia Rhodes", "CallerIDNum": "201"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "ANSWER", "Event": "VarSet", "content": "", "Variable": "DIALSTATUS"}, - {"Event": "Dial", "Privilege": "call,all", "UniqueID": "63f2f9ce924a-1502179195.28", "Channel": "SIP/150010003-0000000c", "SubEvent": "End", "DialStatus": "ANSWER", "content": ""}, - {"Cause": "16", "Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "call,all", "Channel": "SIP/150010003-0000000c", "Event": "SoftHangupRequest", "content": ""}, - {"Application": "GotoIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "onhangup", "Privilege": "dialplan,all", "Priority": "1", "Context": "handlers", "Channel": "SIP/150010003-0000000c", "AppData": "0?nosip", "content": ""}, - {"Application": "NoOp", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "onhangup", "Privilege": "dialplan,all", "Priority": "2", "Context": "handlers", "Channel": "SIP/150010003-0000000c", "AppData": "LOG: rtpqos: caller=172.20.0.254:60336;asterisk=0.0.0.0:11846;ssrc=1855549089;themssrc=158691103;lp=0;rxjitter=0.000000;rxcount=266;txjitter=0.012109;txcount=243;rlp=54012;rtt=0.014000;billsec=0", "content": ""}, - {"Application": "GosubIf", "Event": "Newexten", "Uniqueid": "63f2f9ce924a-1502179195.28", "Extension": "onhangup", "Privilege": "dialplan,all", "Priority": "3", "Context": "handlers", "Channel": "SIP/150010003-0000000c", "AppData": "0?osvpi_proc_httptouch,s,1()", "content": ""}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "ssrc=1855549089;themssrc=158691103;lp=0;rxjitter=0.000000;rxcount=266;txjitter=0.012109;txcount=243;rlp=54012;rtt=0.014000", "Event": "VarSet", "content": "", "Variable": "RTPAUDIOQOS"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Event": "VarSet", "content": "", "Variable": "RTPAUDIOQOSJITTER"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Event": "VarSet", "content": "", "Variable": "RTPAUDIOQOSLOSS"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Event": "VarSet", "content": "", "Variable": "RTPAUDIOQOSRTT"}, - {"Uniqueid": "63f2f9ce924a-1502179195.28", "Privilege": "dialplan,all", "Channel": "SIP/150010003-0000000c", "Value": "ssrc=1855549089;themssrc=158691103;lp=0;rxjitter=0.000000;rxcount=266;txjitter=0.012109;txcount=243;rlp=54012;rtt=0.014000", "Event": "VarSet", "content": "", "Variable": "RTPAUDIOQOS"}, - {"Cause": "16", "Privilege": "call,all", "Uniqueid": "63f2f9ce924a-1502179195.28", "Channel": "SIP/150010003-0000000c", "Cause-txt": "Normal Clearing", "Event": "Hangup", "CallerIDName": "Julia Rhodes", "ConnectedLineNum": "", "content": "", "AccountCode": "150010003", "ConnectedLineName": "", "CallerIDNum": "203"} + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000096", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newchannel", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2709", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000096", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2709", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000096", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "10", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2709", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000061;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730150", "Language": "en", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2711", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000061;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730150", "Language": "en", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2712", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000061;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2711", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000061;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2711", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000061;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2711", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000061;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730150", "Language": "en", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2712", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000061;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730150", "Language": "en", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2712", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000061;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730150", "Language": "en", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2712", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730150", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31150010001", "LocalOneChannel": "Local/ID730150@osvpi_route_phoneaccount-00000061;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31260010001", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "+31150010001", "LocalOneLanguage": "en", "LocalOneLinkedid": "f29ea68048f6-1530024929.2709", "LocalOnePriority": "1", "LocalOneUniqueid": "f29ea68048f6-1530024929.2711", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31260010001", "LocalTwoChannel": "Local/ID730150@osvpi_route_phoneaccount-00000061;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31150010001", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730150", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "f29ea68048f6-1530024929.2709", "LocalTwoPriority": "1", "LocalTwoUniqueid": "f29ea68048f6-1530024929.2712", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000096", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/ID730150@osvpi_route_phoneaccount-00000061;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "+31150010001", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530024929.2709", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530024929.2711", "DialString": "ID730150@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2709", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010001-00000097", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2716", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000097", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2716", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000097", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530024929.2709", "OldAccountCode": "150010001", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2716", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000097", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2716", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000061;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "SIP/150010001-00000097", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "+31150010001", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530024929.2709", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530024929.2716", "DialString": "150010001/150010001/172.20.0.13!!0260010001", "Event": "DialBegin", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2712", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000097", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2716", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000061;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2711", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000097", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2716", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000061;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "SIP/150010001-00000097", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530024929.2709", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530024929.2716", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2712", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000061;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2711", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000096", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/ID730150@osvpi_route_phoneaccount-00000061;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530024929.2709", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530024929.2711", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2709", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000096", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2709", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "cdeeba94-da99-4c51-bc25-218264aacd4b", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000061;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2712", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "33bd4e86-5774-45a8-9205-139b64267126", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "cdeeba94-da99-4c51-bc25-218264aacd4b", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000061;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2711", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "cdeeba94-da99-4c51-bc25-218264aacd4b", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000096", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2709", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "33bd4e86-5774-45a8-9205-139b64267126", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000097", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2716", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "33bd4e86-5774-45a8-9205-139b64267126", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000061;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2712", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "d72a4c96-ed56-4495-bdc0-908eb7527e0c", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "3730991f-ba80-4ff6-870d-172e50ed7354", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "33bd4e86-5774-45a8-9205-139b64267126", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000097", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2716", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "cdeeba94-da99-4c51-bc25-218264aacd4b", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000061;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2711", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "cdeeba94-da99-4c51-bc25-218264aacd4b", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000097", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "f29ea68048f6-1530024929.2711", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2716", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "33bd4e86-5774-45a8-9205-139b64267126", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000061;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2712", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "33bd4e86-5774-45a8-9205-139b64267126", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000061;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2712", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000061;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2711", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "d72a4c96-ed56-4495-bdc0-908eb7527e0c", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000098", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530024939.2753", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024939.2753", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000098", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530024939.2753", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024939.2753", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "150010001", "Channel": "SIP/150010001-00000098", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530024939.2753", "Priority": "5", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024939.2753", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000098", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530024939.2753", "Priority": "6", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024939.2753", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000062;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "f29ea68048f6-1530024939.2753", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024939.2756", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000062;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "f29ea68048f6-1530024939.2753", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024939.2758", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000062;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530024939.2753", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024939.2756", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000062;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530024939.2753", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024939.2756", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000062;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530024939.2753", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024939.2756", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000062;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730151", "Language": "en", "Linkedid": "f29ea68048f6-1530024939.2753", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024939.2758", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000062;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730151", "Language": "en", "Linkedid": "f29ea68048f6-1530024939.2753", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024939.2758", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000062;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730151", "Language": "en", "Linkedid": "f29ea68048f6-1530024939.2753", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024939.2758", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730151", "LocalOneAccountCode": "150010001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "202", "LocalOneChannel": "Local/ID730151@osvpi_route_phoneaccount-00000062;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Andrew Garza", "LocalOneConnectedLineNum": "201", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "202", "LocalOneLanguage": "en", "LocalOneLinkedid": "f29ea68048f6-1530024939.2753", "LocalOnePriority": "1", "LocalOneUniqueid": "f29ea68048f6-1530024939.2756", "LocalOptimization": "Yes", "LocalTwoAccountCode": "150010001", "LocalTwoCallerIDName": "Andrew Garza", "LocalTwoCallerIDNum": "201", "LocalTwoChannel": "Local/ID730151@osvpi_route_phoneaccount-00000062;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "202", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730151", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "f29ea68048f6-1530024939.2753", "LocalTwoPriority": "1", "LocalTwoUniqueid": "f29ea68048f6-1530024939.2758", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000098", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-00000062;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "202", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530024939.2753", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530024939.2756", "DialString": "ID730151@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530024939.2753", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024939.2753", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010002-00000099", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "f29ea68048f6-1530024939.2753", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024939.2761", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000099", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530024939.2753", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024939.2761", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000099", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530024939.2753", "OldAccountCode": "150010002", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024939.2761", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000099", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530024939.2753", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024939.2761", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000062;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "SIP/150010002-00000099", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "202", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530024939.2753", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530024939.2761", "DialString": "150010002/150010002/172.20.0.13!!201", "Event": "DialBegin", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530024939.2753", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024939.2758", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000099", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530024939.2753", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024939.2761", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000062;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530024939.2753", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024939.2756", "content": ""}, + {"DestApp": "Dial", "DestType": "App", "Event": "AttendedTransfer", "IsExternal": "No", "OrigBridgeCreator": "", "OrigBridgeName": "", "OrigBridgeNumChannels": "2", "OrigBridgeTechnology": "simple_bridge", "OrigBridgeType": "basic", "OrigBridgeUniqueid": "cdeeba94-da99-4c51-bc25-218264aacd4b", "OrigBridgeVideoSourceMode": "none", "OrigTransfererAccountCode": "15001", "OrigTransfererCallerIDName": "", "OrigTransfererCallerIDNum": "+31150010001", "OrigTransfererChannel": "SIP/150010001-00000097", "OrigTransfererChannelState": "6", "OrigTransfererChannelStateDesc": "Up", "OrigTransfererConnectedLineName": "", "OrigTransfererConnectedLineNum": "+31260010001", "OrigTransfererContext": "osvpi_account", "OrigTransfererExten": "", "OrigTransfererLanguage": "nl", "OrigTransfererLinkedid": "f29ea68048f6-1530024929.2709", "OrigTransfererPriority": "1", "OrigTransfererUniqueid": "f29ea68048f6-1530024929.2716", "Privilege": "call,all", "Result": "Success", "SecondTransfererAccountCode": "150010001", "SecondTransfererCallerIDName": "Andrew Garza", "SecondTransfererCallerIDNum": "201", "SecondTransfererChannel": "SIP/150010001-00000098", "SecondTransfererChannelState": "4", "SecondTransfererChannelStateDesc": "Ring", "SecondTransfererConnectedLineName": "", "SecondTransfererConnectedLineNum": "", "SecondTransfererContext": "osvpi_account_call_int", "SecondTransfererExten": "202", "SecondTransfererLanguage": "nl", "SecondTransfererLinkedid": "f29ea68048f6-1530024939.2753", "SecondTransfererPriority": "12", "SecondTransfererUniqueid": "f29ea68048f6-1530024939.2753", "SystemName": "f29ea68048f6", "TransfereeAccountCode": "15001", "TransfereeCallerIDName": "", "TransfereeCallerIDNum": "+31260010001", "TransfereeChannel": "SIP/voipgrid-siproute-docker-00000096", "TransfereeChannelState": "6", "TransfereeChannelStateDesc": "Up", "TransfereeConnectedLineName": "", "TransfereeConnectedLineNum": "", "TransfereeContext": "osvpi_route_phoneaccount_step", "TransfereeExten": "+31150010001", "TransfereeLanguage": "nl", "TransfereeLinkedid": "f29ea68048f6-1530024929.2709", "TransfereePriority": "1", "TransfereeUniqueid": "f29ea68048f6-1530024929.2709", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "cdeeba94-da99-4c51-bc25-218264aacd4b", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000097", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2716", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "cdeeba94-da99-4c51-bc25-218264aacd4b", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000096", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2709", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010001-00000097", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2716", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "cdeeba94-da99-4c51-bc25-218264aacd4b", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/150010001-00000098", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-00000062;1", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "202", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530024939.2753", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530024939.2756", "DialStatus": "NOANSWER", "Event": "DialEnd", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530024939.2753", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024939.2753", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000096", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-00000062;1", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "202", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530024939.2753", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530024939.2756", "DialString": "ID730151@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2709", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000096", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "NewAccountCode", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530024929.2709", "OldAccountCode": "15001", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2709", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000096", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "NewAccountCode", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530024929.2709", "OldAccountCode": "150010001", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2709", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-00000098", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530024939.2753", "OldAccountCode": "150010001", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024939.2753", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000062;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530024939.2753", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024939.2756", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000099", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530024939.2753", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024939.2761", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010001-00000098", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "f29ea68048f6-1530024939.2753", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024939.2753", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000099", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530024939.2753", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024939.2761", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000062;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "NewCallerid", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530024939.2753", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024939.2758", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000062;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "SIP/150010002-00000099", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530024939.2753", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530024939.2761", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530024939.2753", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024939.2758", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000062;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530024939.2753", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024939.2758", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000062;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530024939.2753", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024939.2756", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ff479e52-3dcc-4163-b870-932a05f783d1", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000096", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-00000062;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530024939.2753", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530024939.2756", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2709", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c12f02c3-6928-45fa-b4ca-f9e3a99ddade", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ff479e52-3dcc-4163-b870-932a05f783d1", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000099", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530024939.2753", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024939.2761", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ff479e52-3dcc-4163-b870-932a05f783d1", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000062;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530024939.2753", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024939.2758", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c12f02c3-6928-45fa-b4ca-f9e3a99ddade", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000062;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530024939.2753", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024939.2756", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c12f02c3-6928-45fa-b4ca-f9e3a99ddade", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000096", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2709", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c12f02c3-6928-45fa-b4ca-f9e3a99ddade", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000096", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2709", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ff479e52-3dcc-4163-b870-932a05f783d1", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000062;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530024939.2753", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024939.2758", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ff479e52-3dcc-4163-b870-932a05f783d1", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000096", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "12", "Privilege": "call,all", "SwapUniqueid": "f29ea68048f6-1530024939.2758", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2709", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c12f02c3-6928-45fa-b4ca-f9e3a99ddade", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000062;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024939.2756", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c12f02c3-6928-45fa-b4ca-f9e3a99ddade", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000062;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024939.2756", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000062;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "f29ea68048f6-1530024939.2753", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024939.2758", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "3730991f-ba80-4ff6-870d-172e50ed7354", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ff479e52-3dcc-4163-b870-932a05f783d1", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000096", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2709", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ff479e52-3dcc-4163-b870-932a05f783d1", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000099", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024939.2761", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/voipgrid-siproute-docker-00000096", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024929.2709", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ff479e52-3dcc-4163-b870-932a05f783d1", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010002-00000099", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530024929.2709", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530024939.2761", "content": ""} ] diff --git a/tests/fixtures/xfer_blonde/xfer_blonde_group_a.json b/tests/fixtures/xfer_blonde/xfer_blonde_group_a.json index 8051e66..06f2380 100644 --- a/tests/fixtures/xfer_blonde/xfer_blonde_group_a.json +++ b/tests/fixtures/xfer_blonde/xfer_blonde_group_a.json @@ -1,798 +1,132 @@ [ - {"Event": "FullyBooted", "content": "", "Privilege": "system,all", "Status": "Fully Booted"}, - {"Exten": "204", "Privilege": "call,all", "Event": "Newchannel", "Channel": "SIP/150010002-00000005", "content": "", "ChannelState": "0", "Context": "osvpi_account", "AccountCode": "150010002", "CallerIDName": "Bob", "Uniqueid": "0f00dcaa884f-1509353018.11", "ChannelStateDesc": "Down", "CallerIDNum": "150010002"}, - {"Event": "VarSet", "Variable": "SIPURI", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "sip:150010002@10.13.36.116:5061", "content": ""}, - {"Event": "VarSet", "Variable": "SIPDOMAIN", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "10.13.37.110", "content": ""}, - {"Event": "VarSet", "Variable": "SIPCALLID", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "66e3ac40-de169846@10.13.36.116", "content": ""}, - {"Event": "VarSet", "Variable": "__client_id", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "15001", "content": ""}, - {"Event": "VarSet", "Variable": "__account_id", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "150010002", "content": ""}, - {"Event": "VarSet", "Variable": "__record_call", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "no", "content": ""}, - {"Event": "VarSet", "Variable": "__intprefix", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "31", "content": ""}, - {"Event": "VarSet", "Variable": "__limit_account", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "4", "content": ""}, - {"Event": "VarSet", "Variable": "__limit_client", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "0", "content": ""}, - {"Event": "VarSet", "Variable": "__hide_ext_cliname", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "1", "content": ""}, - {"Event": "VarSet", "Variable": "__TRANSFER_CONTEXT", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "osvpi_account_transfer", "content": ""}, - {"Event": "Newstate", "ConnectedLineName": "", "Privilege": "call,all", "ConnectedLineNum": "", "CallerIDName": "Bob", "content": "", "Channel": "SIP/150010002-00000005", "ChannelState": "4", "ChannelStateDesc": "Ring", "CallerIDNum": "150010002", "Uniqueid": "0f00dcaa884f-1509353018.11"}, - {"Event": "Newexten", "Application": "ExecIf", "Context": "osvpi_account", "Privilege": "dialplan,all", "AppData": "0?GotoIf(0?osvpi_proc_hangup_insecure,204,1)", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "1", "content": ""}, - {"Event": "Newexten", "Application": "Gosub", "Context": "osvpi_account", "Privilege": "dialplan,all", "AppData": "osvpi_proc_check_forwards,s,1", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "2", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "0", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "osvpi_proc_check_forwards", "Privilege": "dialplan,all", "AppData": "0?check,1", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "s", "Priority": "1", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_check_forwards", "Privilege": "dialplan,all", "AppData": "LOCAL(tmp)=70", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "s", "Priority": "2", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(tmp)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "70", "content": ""}, - {"Event": "Newexten", "Application": "ExecIf", "Context": "osvpi_proc_check_forwards", "Privilege": "dialplan,all", "AppData": "0?Goto(init,1)", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "s", "Priority": "3", "content": ""}, - {"Event": "Newexten", "Application": "ExecIf", "Context": "osvpi_proc_check_forwards", "Privilege": "dialplan,all", "AppData": "1?Goto(init,1)", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "s", "Priority": "4", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_check_forwards", "Privilege": "dialplan,all", "AppData": "MASTER_CHANNEL(SIP_MAX_FORWARDS)=16", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "init", "Priority": "1", "content": ""}, - {"Event": "VarSet", "Variable": "SIP_MAX_FORWARDS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "16", "content": ""}, - {"Event": "Newexten", "Application": "NoOp", "Context": "osvpi_proc_check_forwards", "Privilege": "dialplan,all", "AppData": "DEBUG: MaxForwards: initialized to: 16", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "init", "Priority": "2", "content": ""}, - {"Event": "Newexten", "Application": "Return", "Context": "osvpi_proc_check_forwards", "Privilege": "dialplan,all", "AppData": "", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "init", "Priority": "3", "content": ""}, - {"Event": "VarSet", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "osvpi_account", "Privilege": "dialplan,all", "AppData": "0?osvpi_account_transfer,204,1", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "3", "content": ""}, - {"Event": "Newexten", "Application": "NoOp", "Context": "osvpi_account", "Privilege": "dialplan,all", "AppData": "ENTRY POINT username=150010002,ip=172.20.0.13/172.20.0.13,from=sip:150010002@10.13.37.110,contact=sip:150010002@10.13.36.116:5061,ua=Cisco/SPA504G-7.5.3,name=Bob,num=150010002,pres=allowed_not_screened", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "4", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_account", "Privilege": "dialplan,all", "AppData": "is_transfer=0", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "5", "content": ""}, - {"Event": "VarSet", "Variable": "is_transfer", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "0", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_account", "Privilege": "dialplan,all", "AppData": "CDR(amaflags)=BILLING", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "6", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_account", "Privilege": "dialplan,all", "AppData": "user_privacy=0", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "7", "content": ""}, - {"Event": "VarSet", "Variable": "user_privacy", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "0", "content": ""}, - {"Event": "Newexten", "Application": "ExecIf", "Context": "osvpi_account", "Privilege": "dialplan,all", "AppData": "1?Set(__supports_progress=1)", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "8", "content": ""}, - {"Event": "VarSet", "Variable": "__supports_progress", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "1", "content": ""}, - {"Event": "Newexten", "Application": "Gosub", "Context": "osvpi_account", "Privilege": "dialplan,all", "AppData": "osvpi_proc_record_call,s-no,1(out,15001,150010002)", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "9", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "out", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "15001", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARG3)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "150010002", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "3", "content": ""}, - {"Event": "Newexten", "Application": "Return", "Context": "osvpi_proc_record_call", "Privilege": "dialplan,all", "AppData": "", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "s-no", "Priority": "1", "content": ""}, - {"Event": "VarSet", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_account", "Privilege": "dialplan,all", "AppData": "l_tmp=", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "10", "content": ""}, - {"Event": "VarSet", "Variable": "l_tmp", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "ExecIf", "Context": "osvpi_account", "Privilege": "dialplan,all", "AppData": "1?Set(l_tmp=)", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "11", "content": ""}, - {"Event": "VarSet", "Variable": "l_tmp", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "osvpi_account", "Privilege": "dialplan,all", "AppData": "1?checkprivacy", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "12", "content": ""}, - {"Event": "Newexten", "Application": "ExecIf", "Context": "osvpi_account", "Privilege": "dialplan,all", "AppData": "0?Set(CALLERID(pres)=allowed_passed_screen)", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "16", "content": ""}, - {"Event": "Newexten", "Application": "ExecIf", "Context": "osvpi_account", "Privilege": "dialplan,all", "AppData": "0?Set(CALLERID(pres)=prohib_passed_screen)", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "17", "content": ""}, - {"Event": "Newexten", "Application": "ExecIf", "Context": "osvpi_account", "Privilege": "dialplan,all", "AppData": "0?Set(CHANNEL(musicclass)=)", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "18", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "osvpi_account", "Privilege": "dialplan,all", "AppData": "1?continue", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "19", "content": ""}, - {"Event": "Newexten", "Application": "Gosub", "Context": "osvpi_account", "Privilege": "dialplan,all", "AppData": "osvpi_proc_set_i18n_region,31,1", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "22", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "0", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_set_i18n_region", "Privilege": "dialplan,all", "AppData": "i18n_region=NL", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "31", "Priority": "1", "content": ""}, - {"Event": "VarSet", "Variable": "i18n_region", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "NL", "content": ""}, - {"Event": "Newexten", "Application": "Return", "Context": "osvpi_proc_set_i18n_region", "Privilege": "dialplan,all", "AppData": "", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "31", "Priority": "2", "content": ""}, - {"Event": "VarSet", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "Goto", "Context": "osvpi_account", "Privilege": "dialplan,all", "AppData": "osvpi_account_emergency_NL,204,1", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "23", "content": ""}, - {"Event": "Newexten", "Application": "Goto", "Context": "osvpi_account_emergency_NL", "Privilege": "dialplan,all", "AppData": "osvpi_account_no_emergency,204,1", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "1", "content": ""}, - {"Event": "Newexten", "Application": "Goto", "Context": "osvpi_account_no_emergency", "Privilege": "dialplan,all", "AppData": "osvpi_account,204,no-emergency", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "1", "content": ""}, - {"Event": "Newexten", "Application": "Goto", "Context": "osvpi_account", "Privilege": "dialplan,all", "AppData": "osvpi_account_clean,204,1", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "24", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_account_clean", "Privilege": "dialplan,all", "AppData": "return=osvpi_account_clean", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "1", "content": ""}, - {"Event": "VarSet", "Variable": "return", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "osvpi_account_clean", "content": ""}, - {"Event": "Newexten", "Application": "Goto", "Context": "osvpi_account_clean", "Privilege": "dialplan,all", "AppData": "osvpi_return_to_canonical,31i204,1", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "2", "content": ""}, - {"Event": "VarSet", "Variable": "INVALID_EXTEN", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "31i204", "content": ""}, - {"Event": "Newexten", "Application": "Goto", "Context": "osvpi_return_to_canonical", "Privilege": "dialplan,all", "AppData": "osvpi_account_clean,204,local", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "i", "Priority": "1", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "osvpi_account_clean", "Privilege": "dialplan,all", "AppData": "0?extern", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "3", "content": ""}, - {"Event": "Newexten", "Application": "Gosub", "Context": "osvpi_account_clean", "Privilege": "dialplan,all", "AppData": "osvpi_proc_set_callerid,204,1(150010002,0,0)", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "4", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "150010002", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "0", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARG3)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "0", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "3", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "osvpi_proc_set_callerid", "Privilege": "dialplan,all", "AppData": "0?done", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "1", "content": ""}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "1", "content": ""}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "SUCCESS", "content": ""}, - {"Event": "VarSet", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "set,privacy,name,number_int,number_ext", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_set_callerid", "Privilege": "dialplan,all", "AppData": "ARRAY(LOCAL(set),LOCAL(privacy),LOCAL(name),LOCAL(number_int),LOCAL(number_ext))=1,0,David Meadows,202,+31150010002", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "2", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(set)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "1", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(privacy)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "0", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(name)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "David Meadows", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(number_int)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "202", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(number_ext)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "+31150010002", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "osvpi_proc_set_callerid", "Privilege": "dialplan,all", "AppData": "0?presentation", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "3", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_set_callerid", "Privilege": "dialplan,all", "AppData": "CALLERID(pres)=allowed_passed_screen", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "4", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_set_callerid", "Privilege": "dialplan,all", "AppData": "CALLERID(name)=David Meadows", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "5", "content": ""}, - {"CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "Privilege": "call,all", "CallerIDName": "David Meadows", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Event": "NewCallerid", "CallerIDNum": "150010002", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_set_callerid", "Privilege": "dialplan,all", "AppData": "CALLERID(num)=202", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "6", "content": ""}, - {"CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "Privilege": "call,all", "CallerIDName": "David Meadows", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Event": "NewCallerid", "CallerIDNum": "202", "content": ""}, - {"Event": "Newexten", "Application": "ExecIf", "Context": "osvpi_proc_set_callerid", "Privilege": "dialplan,all", "AppData": "0?Set(CALLERID(pres)=prohib_passed_screen)", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "7", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_set_callerid", "Privilege": "dialplan,all", "AppData": "CALLERID(ANI)=202", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "8", "content": ""}, - {"Event": "Newexten", "Application": "Gosub", "Context": "osvpi_proc_set_callerid", "Privilege": "dialplan,all", "AppData": "osvpi_proc_set_callerid_internal,204,1", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "9", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARG3)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "0", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "osvpi_proc_set_callerid_internal", "Privilege": "dialplan,all", "AppData": "1?nop", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "1", "content": ""}, - {"Event": "Newexten", "Application": "ExecIf", "Context": "osvpi_proc_set_callerid_internal", "Privilege": "dialplan,all", "AppData": "0?Set(CALLERID(ANI)=20)", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "5", "content": ""}, - {"Event": "Newexten", "Application": "Return", "Context": "osvpi_proc_set_callerid_internal", "Privilege": "dialplan,all", "AppData": "", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "6", "content": ""}, - {"Event": "VarSet", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "Return", "Context": "osvpi_proc_set_callerid", "Privilege": "dialplan,all", "AppData": "", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "10", "content": ""}, - {"Event": "VarSet", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "osvpi_account_clean", "Privilege": "dialplan,all", "AppData": "3?osvpi_account_call_int,204,1:i,1", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "5", "content": ""}, - {"Event": "Newexten", "Application": "Gosub", "Context": "osvpi_account_call_int", "Privilege": "dialplan,all", "AppData": "osvpi_proc_check_limits,204,1", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "1", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "0", "content": ""}, - {"Event": "Newexten", "Application": "NoOp", "Context": "osvpi_proc_check_limits", "Privilege": "dialplan,all", "AppData": "DEBUG: call_limit: client 0/0 and account 0/4", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "1", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "osvpi_proc_check_limits", "Privilege": "dialplan,all", "AppData": "0?osvpi_handle_limit,204,client", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "2", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "osvpi_proc_check_limits", "Privilege": "dialplan,all", "AppData": "0?osvpi_handle_limit,204,account", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "3", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_check_limits", "Privilege": "dialplan,all", "AppData": "GROUP(account_lim)=150010002", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "4", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_check_limits", "Privilege": "dialplan,all", "AppData": "GROUP(client_lim)=15001", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "5", "content": ""}, - {"Event": "Newexten", "Application": "Return", "Context": "osvpi_proc_check_limits", "Privilege": "dialplan,all", "AppData": "", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "6", "content": ""}, - {"Event": "VarSet", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "Gosub", "Context": "osvpi_account_call_int", "Privilege": "dialplan,all", "AppData": "osvpi_proc_check_recurse,204,1(15001)", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "2", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "15001", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "1", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_check_recurse", "Privilege": "dialplan,all", "AppData": "LOCAL(exten)=15001:204", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "1", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(exten)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "15001:204", "content": ""}, - {"Event": "Newexten", "Application": "NoOp", "Context": "osvpi_proc_check_recurse", "Privilege": "dialplan,all", "AppData": "Recursion checking 15001:204 against ", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "2", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_check_recurse", "Privilege": "dialplan,all", "AppData": "LOCAL(n)=0", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "3", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(n)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "0", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_check_recurse", "Privilege": "dialplan,all", "AppData": "LOCAL(i)=1", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "4", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(i)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "1", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "osvpi_proc_check_recurse", "Privilege": "dialplan,all", "AppData": "1?add", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "5", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_check_recurse", "Privilege": "dialplan,all", "AppData": "__EXTEN_LIST=15001:204 ", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "9", "content": ""}, - {"Event": "VarSet", "Variable": "__EXTEN_LIST", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "15001:204 ", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_check_recurse", "Privilege": "dialplan,all", "AppData": "__EXTEN_LIST_LAST_EDIT_TIME=1509353018", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "10", "content": ""}, - {"Event": "VarSet", "Variable": "__EXTEN_LIST_LAST_EDIT_TIME", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "1509353018", "content": ""}, - {"Event": "Newexten", "Application": "Return", "Context": "osvpi_proc_check_recurse", "Privilege": "dialplan,all", "AppData": "", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "11", "content": ""}, - {"Event": "VarSet", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_account_call_int", "Privilege": "dialplan,all", "AppData": "__ORIG_EXTEN=204", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "3", "content": ""}, - {"Event": "VarSet", "Variable": "__ORIG_EXTEN", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "204", "content": ""}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "0", "content": ""}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "NODATA", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_account_call_int", "Privilege": "dialplan,all", "AppData": "ARRAY(conference_id,user_password,admin_password,conference_language)=", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "4", "content": ""}, - {"Event": "VarSet", "Variable": "conference_id", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "user_password", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "admin_password", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "conference_language", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "osvpi_account_call_int", "Privilege": "dialplan,all", "AppData": "0?osvpi_route_conference,ID,1", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "5", "content": ""}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "0", "content": ""}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "NODATA", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_account_call_int", "Privilege": "dialplan,all", "AppData": "ARRAY(route_id,client_timezone)=", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "6", "content": ""}, - {"Event": "VarSet", "Variable": "route_id", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "client_timezone", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "osvpi_account_call_int", "Privilege": "dialplan,all", "AppData": "0?osvpi_route_root,204,restart", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "7", "content": ""}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "0", "content": ""}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "NODATA", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_account_call_int", "Privilege": "dialplan,all", "AppData": "ARRAY(all_extensions,limited_extensions,password,account_spy_language)=", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "8", "content": ""}, - {"Event": "VarSet", "Variable": "all_extensions", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "limited_extensions", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "password", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "account_spy_language", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "osvpi_account_call_int", "Privilege": "dialplan,all", "AppData": "0?osvpi_account_spy,204,1", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "9", "content": ""}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "1", "content": ""}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "SUCCESS", "content": ""}, - {"Event": "VarSet", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "interfaces", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_account_call_int", "Privilege": "dialplan,all", "AppData": "ARRAY(interfaces)=Local/ID690153@osvpi_route_phoneaccount", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "10", "content": ""}, - {"Event": "VarSet", "Variable": "interfaces", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "Local/ID690153@osvpi_route_phoneaccount", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "osvpi_account_call_int", "Privilege": "dialplan,all", "AppData": "0?osvpi_handle_unallocated,204,1", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "11", "content": ""}, - {"Event": "Newexten", "Application": "Dial", "Context": "osvpi_account_call_int", "Privilege": "dialplan,all", "AppData": "Local/ID690153@osvpi_route_phoneaccount", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "204", "Priority": "12", "content": ""}, - {"Event": "VarSet", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "", "content": ""}, - {"Exten": "ID690153", "Privilege": "call,all", "Event": "Newchannel", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "content": "", "ChannelState": "0", "Context": "osvpi_route_phoneaccount", "AccountCode": "", "CallerIDName": "", "Uniqueid": "0f00dcaa884f-1509353018.12", "ChannelStateDesc": "Down", "CallerIDNum": ""}, - {"Exten": "ID690153", "Privilege": "call,all", "Event": "Newchannel", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "content": "", "ChannelState": "4", "Context": "osvpi_route_phoneaccount", "AccountCode": "", "CallerIDName": "", "Uniqueid": "0f00dcaa884f-1509353018.13", "ChannelStateDesc": "Ring", "CallerIDNum": ""}, - {"Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.12", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "Value": "ID690153@osvpi_route_phoneaccount", "content": ""}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Privilege": "call,all", "CallerIDName": "", "Uniqueid": "0f00dcaa884f-1509353018.12", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "Event": "NewCallerid", "CallerIDNum": "204", "content": ""}, - {"Exten": "ID690153", "Channel1": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "Channel2": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Uniqueid1": "0f00dcaa884f-1509353018.12", "Context": "osvpi_route_phoneaccount", "Privilege": "call,all", "LocalOptimization": "Yes", "Uniqueid2": "0f00dcaa884f-1509353018.13", "Event": "LocalBridge", "content": ""}, - {"SubEvent": "Begin", "Privilege": "call,all", "ConnectedLineNum": "", "UniqueID": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "content": "", "Dialstring": "ID690153@osvpi_route_phoneaccount", "CallerIDName": "David Meadows", "DestUniqueID": "0f00dcaa884f-1509353018.12", "ConnectedLineName": "", "Destination": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "Event": "Dial", "CallerIDNum": "202"}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "1", "content": ""}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "SUCCESS", "content": ""}, - {"Event": "VarSet", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_route_phoneaccount", "Privilege": "dialplan,all", "AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=150010004,accountid,dutch,from,,0", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Extension": "ID690153", "Priority": "1", "content": ""}, - {"Event": "VarSet", "Variable": "__dst_account_id", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "150010004", "content": ""}, - {"Event": "VarSet", "Variable": "l_mangle_did", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "accountid", "content": ""}, - {"Event": "VarSet", "Variable": "l_mangle_cli", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "dutch", "content": ""}, - {"Event": "VarSet", "Variable": "l_cli_header", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "from", "content": ""}, - {"Event": "VarSet", "Variable": "l_primary_pickupgroup", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "app_account", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "0", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "osvpi_route_phoneaccount", "Privilege": "dialplan,all", "AppData": "0?vialer", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Extension": "ID690153", "Priority": "2", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_route_phoneaccount", "Privilege": "dialplan,all", "AppData": "_PICKUPMARK=", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Extension": "ID690153", "Priority": "3", "content": ""}, - {"Event": "VarSet", "Variable": "_PICKUPMARK", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_route_phoneaccount", "Privilege": "dialplan,all", "AppData": "l_trunk=0", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Extension": "ID690153", "Priority": "4", "content": ""}, - {"Event": "VarSet", "Variable": "l_trunk", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "0", "content": ""}, - {"Event": "Newexten", "Application": "Goto", "Context": "osvpi_route_phoneaccount", "Privilege": "dialplan,all", "AppData": "osvpi_route_account,ID690153,1", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Extension": "ID690153", "Priority": "5", "content": ""}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "1", "content": ""}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "SUCCESS", "content": ""}, - {"Event": "VarSet", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "proxy", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "AppData": "ARRAY(l_proxy)=172.20.0.13", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Extension": "ID690153", "Priority": "1", "content": ""}, - {"Event": "VarSet", "Variable": "l_proxy", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "172.20.0.13", "content": ""}, - {"Event": "Newexten", "Application": "Gosub", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "AppData": "osvpi_proc_mangle_number,accountid,1(150010004,204)", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Extension": "ID690153", "Priority": "2", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "150010004", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "204", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "2", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_mangle_number", "Privilege": "dialplan,all", "AppData": "MANGLED_EXTEN=150010004", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Extension": "accountid", "Priority": "1", "content": ""}, - {"Event": "VarSet", "Variable": "MANGLED_EXTEN", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "150010004", "content": ""}, - {"Event": "Newexten", "Application": "Return", "Context": "osvpi_proc_mangle_number", "Privilege": "dialplan,all", "AppData": "", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Extension": "accountid", "Priority": "2", "content": ""}, - {"Event": "VarSet", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "AppData": "l_did=150010004", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Extension": "ID690153", "Priority": "3", "content": ""}, - {"Event": "VarSet", "Variable": "l_did", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "150010004", "content": ""}, - {"Event": "Newexten", "Application": "Gosub", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "AppData": "osvpi_proc_mangle_number,dutch,1(150010004,202)", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Extension": "ID690153", "Priority": "4", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "150010004", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "202", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "2", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "osvpi_proc_mangle_number", "Privilege": "dialplan,all", "AppData": "1?fullzero,1", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Extension": "dutch", "Priority": "1", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_mangle_number", "Privilege": "dialplan,all", "AppData": "MANGLED_EXTEN=202", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Extension": "fullzero", "Priority": "1", "content": ""}, - {"Event": "VarSet", "Variable": "MANGLED_EXTEN", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "202", "content": ""}, - {"Event": "Newexten", "Application": "Return", "Context": "osvpi_proc_mangle_number", "Privilege": "dialplan,all", "AppData": "", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Extension": "fullzero", "Priority": "2", "content": ""}, - {"Event": "VarSet", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "AppData": "l_mangle_cli_hdr=from-dutch", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Extension": "ID690153", "Priority": "5", "content": ""}, - {"Event": "VarSet", "Variable": "l_mangle_cli_hdr", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "from-dutch", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "AppData": "l_fromuser=", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Extension": "ID690153", "Priority": "6", "content": ""}, - {"Event": "VarSet", "Variable": "l_fromuser", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "ExecIf", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "AppData": "1?Set(l_fromuser=202)", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Extension": "ID690153", "Priority": "7", "content": ""}, - {"Event": "VarSet", "Variable": "l_fromuser", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "202", "content": ""}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "1", "content": ""}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "SUCCESS", "content": ""}, - {"Event": "VarSet", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "IF((SELECT 1 FROM baseaccount_account ba INNER JOIN userdestination_selecteduserdestination udsud ON udsud.phoneaccount_id = ba.id INNER JOIN userdestination_userdestination udud ON udud.id = udsud.userdestination_id INNER JOIN crm_cloudctiuser cccu O", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "AppData": "ARRAY(cloudcti)=0", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Extension": "ID690153", "Priority": "8", "content": ""}, - {"Event": "VarSet", "Variable": "cloudcti", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "0", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "AppData": "1?skipcloudcti", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Extension": "ID690153", "Priority": "9", "content": ""}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "1", "content": ""}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "SUCCESS", "content": ""}, - {"Event": "VarSet", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "GROUP_CONCAT(DISTINCT(csw.url) SEPARATOR ' '),internal_number,GROUP_CONCAT(DISTINCT(ud.internal_number) SEPARATOR ' ')", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "AppData": "ARRAY(webhooks,accountinternalnumber,userinternalnumbers)=,204,", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Extension": "ID690153", "Priority": "11", "content": ""}, - {"Event": "VarSet", "Variable": "webhooks", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "accountinternalnumber", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "204", "content": ""}, - {"Event": "VarSet", "Variable": "userinternalnumbers", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "Goto", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "AppData": "osvpi_proc_proxy_out,204,1", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Extension": "ID690153", "Priority": "13", "content": ""}, - {"Event": "Newexten", "Application": "SIPAddHeader", "Context": "osvpi_proc_proxy_out", "Privilege": "dialplan,all", "AppData": "X-Accountcode: 150010004", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Extension": "204", "Priority": "1", "content": ""}, - {"Event": "VarSet", "Variable": "__SIPADDHEADER01", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "X-Accountcode: 150010004", "content": ""}, - {"Event": "Newexten", "Application": "SIPAddHeader", "Context": "osvpi_proc_proxy_out", "Privilege": "dialplan,all", "AppData": "X-Insecure-Protection: geheim", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Extension": "204", "Priority": "2", "content": ""}, - {"Event": "VarSet", "Variable": "__SIPADDHEADER02", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "X-Insecure-Protection: geheim", "content": ""}, - {"Event": "Newexten", "Application": "SIPAddHeader", "Context": "osvpi_proc_proxy_out", "Privilege": "dialplan,all", "AppData": "X-Mangle-Cli: from-dutch", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Extension": "204", "Priority": "3", "content": ""}, - {"Event": "VarSet", "Variable": "__SIPADDHEADER03", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "X-Mangle-Cli: from-dutch", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_proxy_out", "Privilege": "dialplan,all", "AppData": "_dial_options_callaccept=", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Extension": "204", "Priority": "4", "content": ""}, - {"Event": "VarSet", "Variable": "_dial_options_callaccept", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_proxy_out", "Privilege": "dialplan,all", "AppData": "_dial_options_callnotify=", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Extension": "204", "Priority": "5", "content": ""}, - {"Event": "VarSet", "Variable": "_dial_options_callnotify", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "ExecIf", "Context": "osvpi_proc_proxy_out", "Privilege": "dialplan,all", "AppData": "0?Set(l_proxy=opensipsfg)", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Extension": "204", "Priority": "6", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_proxy_out", "Privilege": "dialplan,all", "AppData": "l_extra_options=", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Extension": "204", "Priority": "7", "content": ""}, - {"Event": "VarSet", "Variable": "l_extra_options", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "Dial", "Context": "osvpi_proc_proxy_out", "Privilege": "dialplan,all", "AppData": "SIP/150010004/150010004/172.20.0.13!!202,,", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Extension": "204", "Priority": "8", "content": ""}, - {"Event": "VarSet", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "", "content": ""}, - {"Exten": "", "Privilege": "call,all", "Event": "Newchannel", "Channel": "SIP/150010004-00000006", "content": "", "ChannelState": "0", "Context": "osvpi_account", "AccountCode": "150010004", "CallerIDName": "", "Uniqueid": "0f00dcaa884f-1509353018.14", "ChannelStateDesc": "Down", "CallerIDNum": ""}, - {"Event": "VarSet", "Variable": "SIPCALLID", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.14", "Channel": "SIP/150010004-00000006", "Value": "7e01a0a0696fcc1a03ef17b249a9c55b@test.voipgrid.nl", "content": ""}, - {"Event": "VarSet", "Variable": "__client_id", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.14", "Channel": "SIP/150010004-00000006", "Value": "15001", "content": ""}, - {"Event": "VarSet", "Variable": "__account_id", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.14", "Channel": "SIP/150010004-00000006", "Value": "150010004", "content": ""}, - {"Event": "VarSet", "Variable": "__record_call", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.14", "Channel": "SIP/150010004-00000006", "Value": "no", "content": ""}, - {"Event": "VarSet", "Variable": "__intprefix", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.14", "Channel": "SIP/150010004-00000006", "Value": "31", "content": ""}, - {"Event": "VarSet", "Variable": "__limit_account", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.14", "Channel": "SIP/150010004-00000006", "Value": "4", "content": ""}, - {"Event": "VarSet", "Variable": "__limit_client", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.14", "Channel": "SIP/150010004-00000006", "Value": "0", "content": ""}, - {"Event": "VarSet", "Variable": "__hide_ext_cliname", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.14", "Channel": "SIP/150010004-00000006", "Value": "1", "content": ""}, - {"Event": "VarSet", "Variable": "__TRANSFER_CONTEXT", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.14", "Channel": "SIP/150010004-00000006", "Value": "osvpi_account_transfer", "content": ""}, - {"Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.14", "Channel": "SIP/150010004-00000006", "Value": "150010004/150010004/172.20.0.13!!202", "content": ""}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Privilege": "call,all", "CallerIDName": "", "Uniqueid": "0f00dcaa884f-1509353018.14", "Channel": "SIP/150010004-00000006", "Event": "NewCallerid", "CallerIDNum": "204", "content": ""}, - {"SubEvent": "Begin", "Privilege": "call,all", "ConnectedLineNum": "204", "UniqueID": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "content": "", "Dialstring": "150010004/150010004/172.20.0.13!!202", "CallerIDName": "David Meadows", "DestUniqueID": "0f00dcaa884f-1509353018.14", "ConnectedLineName": "", "Destination": "SIP/150010004-00000006", "Event": "Dial", "CallerIDNum": "202"}, - {"Event": "Newstate", "ConnectedLineName": "David Meadows", "Privilege": "call,all", "ConnectedLineNum": "202", "CallerIDName": "", "content": "", "Channel": "SIP/150010004-00000006", "ChannelState": "5", "ChannelStateDesc": "Ringing", "CallerIDNum": "204", "Uniqueid": "0f00dcaa884f-1509353018.14"}, - {"Event": "Newstate", "ConnectedLineName": "David Meadows", "Privilege": "call,all", "ConnectedLineNum": "202", "CallerIDName": "", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "CallerIDNum": "204", "Uniqueid": "0f00dcaa884f-1509353018.12"}, - {"Event": "Newstate", "ConnectedLineName": "David Meadows", "Privilege": "call,all", "ConnectedLineNum": "202", "CallerIDName": "", "content": "", "Channel": "SIP/150010004-00000006", "ChannelState": "6", "ChannelStateDesc": "Up", "CallerIDNum": "204", "Uniqueid": "0f00dcaa884f-1509353018.14"}, - {"Event": "VarSet", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "ANSWER", "content": ""}, - {"Event": "VarSet", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "SIP/150010004-00000006", "content": ""}, - {"Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "150010004/150010004/172.20.0.13!!202", "content": ""}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "SIP/150010004-00000006", "content": ""}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.14", "Channel": "SIP/150010004-00000006", "Value": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "content": ""}, - {"Event": "Newstate", "ConnectedLineName": "", "Privilege": "call,all", "ConnectedLineNum": "204", "CallerIDName": "David Meadows", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "ChannelState": "6", "ChannelStateDesc": "Up", "CallerIDNum": "202", "Uniqueid": "0f00dcaa884f-1509353018.13"}, - {"OldAccountCode": "150010002", "AccountCode": "150010002", "Privilege": "call,all", "Uniqueid": "0f00dcaa884f-1509353018.14", "Channel": "SIP/150010004-00000006", "content": "", "Event": "NewAccountCode"}, - {"Bridgetype": "core", "Channel1": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Channel2": "SIP/150010004-00000006", "Uniqueid1": "0f00dcaa884f-1509353018.13", "Privilege": "call,all", "Bridgestate": "Link", "content": "", "Uniqueid2": "0f00dcaa884f-1509353018.14", "CallerID1": "202", "Event": "Bridge", "CallerID2": "204"}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "SIP/150010004-00000006", "content": ""}, - {"Event": "VarSet", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "7e01a0a0696fcc1a03ef17b249a9c55b@test.voipgrid.nl", "content": ""}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.14", "Channel": "SIP/150010004-00000006", "Value": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "content": ""}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "SIP/150010004-00000006", "content": ""}, - {"Event": "VarSet", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "7e01a0a0696fcc1a03ef17b249a9c55b@test.voipgrid.nl", "content": ""}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.14", "Channel": "SIP/150010004-00000006", "Value": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "content": ""}, - {"Event": "Newstate", "ConnectedLineName": "David Meadows", "Privilege": "call,all", "ConnectedLineNum": "202", "CallerIDName": "", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "ChannelState": "6", "ChannelStateDesc": "Up", "CallerIDNum": "204", "Uniqueid": "0f00dcaa884f-1509353018.12"}, - {"Event": "VarSet", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "ANSWER", "content": ""}, - {"Event": "VarSet", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "content": ""}, - {"Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "ID690153@osvpi_route_phoneaccount", "content": ""}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "content": ""}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.12", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "Value": "SIP/150010002-00000005", "content": ""}, - {"Event": "Newstate", "ConnectedLineName": "", "Privilege": "call,all", "ConnectedLineNum": "", "CallerIDName": "David Meadows", "content": "", "Channel": "SIP/150010002-00000005", "ChannelState": "6", "ChannelStateDesc": "Up", "CallerIDNum": "202", "Uniqueid": "0f00dcaa884f-1509353018.11"}, - {"OldAccountCode": "150010002", "AccountCode": "150010002", "Privilege": "call,all", "Uniqueid": "0f00dcaa884f-1509353018.12", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "content": "", "Event": "NewAccountCode"}, - {"Bridgetype": "core", "Channel1": "SIP/150010002-00000005", "Channel2": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "Uniqueid1": "0f00dcaa884f-1509353018.11", "Privilege": "call,all", "Bridgestate": "Link", "content": "", "Uniqueid2": "0f00dcaa884f-1509353018.12", "CallerID1": "202", "Event": "Bridge", "CallerID2": "204"}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "content": ""}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.12", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "Value": "SIP/150010002-00000005", "content": ""}, - {"Event": "VarSet", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.12", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "Value": "66e3ac40-de169846@10.13.36.116", "content": ""}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "content": ""}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.12", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "Value": "SIP/150010002-00000005", "content": ""}, - {"Event": "VarSet", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.12", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "Value": "66e3ac40-de169846@10.13.36.116", "content": ""}, - {"CloneState": "Up", "Privilege": "call,all", "Event": "Masquerade", "content": "", "OriginalState": "Up", "Clone": "SIP/150010004-00000006", "Original": "Local/ID690153@osvpi_route_phoneaccount-00000003;1"}, - {"Event": "Rename", "Privilege": "call,all", "Newname": "SIP/150010004-00000006", "Uniqueid": "0f00dcaa884f-1509353018.14", "Channel": "SIP/150010004-00000006", "content": ""}, - {"Event": "Rename", "Privilege": "call,all", "Newname": "SIP/150010004-00000006", "Uniqueid": "0f00dcaa884f-1509353018.12", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "content": ""}, - {"Event": "Rename", "Privilege": "call,all", "Newname": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "Uniqueid": "0f00dcaa884f-1509353018.14", "Channel": "SIP/150010004-00000006", "content": ""}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Privilege": "call,all", "CallerIDName": "", "Uniqueid": "0f00dcaa884f-1509353018.12", "Channel": "SIP/150010004-00000006", "Event": "NewCallerid", "CallerIDNum": "204", "content": ""}, - {"Bridgetype": "core", "Channel1": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Channel2": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "Uniqueid1": "0f00dcaa884f-1509353018.13", "Privilege": "call,all", "Bridgestate": "Unlink", "content": "", "Uniqueid2": "0f00dcaa884f-1509353018.14", "CallerID1": "202", "Event": "Bridge", "CallerID2": "204"}, - {"Event": "VarSet", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "0", "content": ""}, - {"Event": "VarSet", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "2", "content": ""}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "SIP/150010004-00000006", "content": ""}, - {"Event": "VarSet", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "7e01a0a0696fcc1a03ef17b249a9c55b@test.voipgrid.nl", "content": ""}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.12", "Channel": "SIP/150010004-00000006", "Value": "SIP/150010002-00000005", "content": ""}, - {"Event": "VarSet", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.12", "Channel": "SIP/150010004-00000006", "Value": "66e3ac40-de169846@10.13.36.116", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "content": "", "Privilege": "call,all", "Event": "HangupRequest"}, - {"Cause": "16", "Privilege": "call,all", "ConnectedLineNum": "202", "ConnectedLineName": "David Meadows", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;1", "content": "", "Cause-txt": "Normal Clearing", "AccountCode": "150010002", "CallerIDName": "", "Uniqueid": "0f00dcaa884f-1509353018.14", "Event": "Hangup", "CallerIDNum": "204"}, - {"Event": "VarSet", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Value": "ANSWER", "content": ""}, - {"Event": "Dial", "SubEvent": "End", "Privilege": "call,all", "UniqueID": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "DialStatus": "ANSWER", "content": ""}, - {"Event": "SoftHangupRequest", "Cause": "16", "Privilege": "call,all", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "handlers", "Privilege": "dialplan,all", "AppData": "1?nosip", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Extension": "onhangup", "Priority": "1", "content": ""}, - {"Event": "Newexten", "Application": "GosubIf", "Context": "handlers", "Privilege": "dialplan,all", "AppData": "0?osvpi_proc_httptouch,s,1()", "Uniqueid": "0f00dcaa884f-1509353018.13", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "Extension": "onhangup", "Priority": "3", "content": ""}, - {"Cause": "16", "Privilege": "call,all", "ConnectedLineNum": "204", "ConnectedLineName": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000003;2", "content": "", "Cause-txt": "Normal Clearing", "AccountCode": "150010002", "CallerIDName": "David Meadows", "Uniqueid": "0f00dcaa884f-1509353018.13", "Event": "Hangup", "CallerIDNum": "202"}, - {"State": "Start", "Privilege": "call,all", "UniqueID": "0f00dcaa884f-1509353018.12", "Channel": "SIP/150010004-00000006", "Event": "MusicOnHold", "Class": "default", "content": ""}, - {"Exten": "403", "Privilege": "call,all", "Event": "Newchannel", "Channel": "SIP/150010002-00000007", "content": "", "ChannelState": "0", "Context": "osvpi_account", "AccountCode": "150010002", "CallerIDName": "Bob", "Uniqueid": "0f00dcaa884f-1509353024.15", "ChannelStateDesc": "Down", "CallerIDNum": "150010002"}, - {"Event": "VarSet", "Variable": "SIPURI", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "sip:150010002@10.13.36.116:5061", "content": ""}, - {"Event": "VarSet", "Variable": "SIPDOMAIN", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "10.13.37.110", "content": ""}, - {"Event": "VarSet", "Variable": "SIPCALLID", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "7d1a8bd0-573ac037@10.13.36.116", "content": ""}, - {"Event": "VarSet", "Variable": "__client_id", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "15001", "content": ""}, - {"Event": "VarSet", "Variable": "__account_id", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "150010002", "content": ""}, - {"Event": "VarSet", "Variable": "__record_call", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "no", "content": ""}, - {"Event": "VarSet", "Variable": "__intprefix", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "31", "content": ""}, - {"Event": "VarSet", "Variable": "__limit_account", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "4", "content": ""}, - {"Event": "VarSet", "Variable": "__limit_client", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "0", "content": ""}, - {"Event": "VarSet", "Variable": "__hide_ext_cliname", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "1", "content": ""}, - {"Event": "VarSet", "Variable": "__TRANSFER_CONTEXT", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "osvpi_account_transfer", "content": ""}, - {"Event": "Newstate", "ConnectedLineName": "", "Privilege": "call,all", "ConnectedLineNum": "", "CallerIDName": "Bob", "content": "", "Channel": "SIP/150010002-00000007", "ChannelState": "4", "ChannelStateDesc": "Ring", "CallerIDNum": "150010002", "Uniqueid": "0f00dcaa884f-1509353024.15"}, - {"Event": "Newexten", "Application": "ExecIf", "Context": "osvpi_account", "Privilege": "dialplan,all", "AppData": "0?GotoIf(0?osvpi_proc_hangup_insecure,403,1)", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "1", "content": ""}, - {"Event": "Newexten", "Application": "Gosub", "Context": "osvpi_account", "Privilege": "dialplan,all", "AppData": "osvpi_proc_check_forwards,s,1", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "2", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "0", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "osvpi_proc_check_forwards", "Privilege": "dialplan,all", "AppData": "0?check,1", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "s", "Priority": "1", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_check_forwards", "Privilege": "dialplan,all", "AppData": "LOCAL(tmp)=70", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "s", "Priority": "2", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(tmp)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "70", "content": ""}, - {"Event": "Newexten", "Application": "ExecIf", "Context": "osvpi_proc_check_forwards", "Privilege": "dialplan,all", "AppData": "0?Goto(init,1)", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "s", "Priority": "3", "content": ""}, - {"Event": "Newexten", "Application": "ExecIf", "Context": "osvpi_proc_check_forwards", "Privilege": "dialplan,all", "AppData": "1?Goto(init,1)", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "s", "Priority": "4", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_check_forwards", "Privilege": "dialplan,all", "AppData": "MASTER_CHANNEL(SIP_MAX_FORWARDS)=16", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "init", "Priority": "1", "content": ""}, - {"Event": "VarSet", "Variable": "SIP_MAX_FORWARDS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "16", "content": ""}, - {"Event": "Newexten", "Application": "NoOp", "Context": "osvpi_proc_check_forwards", "Privilege": "dialplan,all", "AppData": "DEBUG: MaxForwards: initialized to: 16", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "init", "Priority": "2", "content": ""}, - {"Event": "Newexten", "Application": "Return", "Context": "osvpi_proc_check_forwards", "Privilege": "dialplan,all", "AppData": "", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "init", "Priority": "3", "content": ""}, - {"Event": "VarSet", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "osvpi_account", "Privilege": "dialplan,all", "AppData": "0?osvpi_account_transfer,403,1", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "3", "content": ""}, - {"Event": "Newexten", "Application": "NoOp", "Context": "osvpi_account", "Privilege": "dialplan,all", "AppData": "ENTRY POINT username=150010002,ip=172.20.0.13/172.20.0.13,from=sip:150010002@10.13.37.110,contact=sip:150010002@10.13.36.116:5061,ua=Cisco/SPA504G-7.5.3,name=Bob,num=150010002,pres=allowed_not_screened", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "4", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_account", "Privilege": "dialplan,all", "AppData": "is_transfer=0", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "5", "content": ""}, - {"Event": "VarSet", "Variable": "is_transfer", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "0", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_account", "Privilege": "dialplan,all", "AppData": "CDR(amaflags)=BILLING", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "6", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_account", "Privilege": "dialplan,all", "AppData": "user_privacy=0", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "7", "content": ""}, - {"Event": "VarSet", "Variable": "user_privacy", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "0", "content": ""}, - {"Event": "Newexten", "Application": "ExecIf", "Context": "osvpi_account", "Privilege": "dialplan,all", "AppData": "1?Set(__supports_progress=1)", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "8", "content": ""}, - {"Event": "VarSet", "Variable": "__supports_progress", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "1", "content": ""}, - {"Event": "Newexten", "Application": "Gosub", "Context": "osvpi_account", "Privilege": "dialplan,all", "AppData": "osvpi_proc_record_call,s-no,1(out,15001,150010002)", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "9", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "out", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "15001", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARG3)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "150010002", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "3", "content": ""}, - {"Event": "Newexten", "Application": "Return", "Context": "osvpi_proc_record_call", "Privilege": "dialplan,all", "AppData": "", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "s-no", "Priority": "1", "content": ""}, - {"Event": "VarSet", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_account", "Privilege": "dialplan,all", "AppData": "l_tmp=", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "10", "content": ""}, - {"Event": "VarSet", "Variable": "l_tmp", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "ExecIf", "Context": "osvpi_account", "Privilege": "dialplan,all", "AppData": "1?Set(l_tmp=)", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "11", "content": ""}, - {"Event": "VarSet", "Variable": "l_tmp", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "osvpi_account", "Privilege": "dialplan,all", "AppData": "1?checkprivacy", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "12", "content": ""}, - {"Event": "Newexten", "Application": "ExecIf", "Context": "osvpi_account", "Privilege": "dialplan,all", "AppData": "0?Set(CALLERID(pres)=allowed_passed_screen)", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "16", "content": ""}, - {"Event": "Newexten", "Application": "ExecIf", "Context": "osvpi_account", "Privilege": "dialplan,all", "AppData": "0?Set(CALLERID(pres)=prohib_passed_screen)", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "17", "content": ""}, - {"Event": "Newexten", "Application": "ExecIf", "Context": "osvpi_account", "Privilege": "dialplan,all", "AppData": "0?Set(CHANNEL(musicclass)=)", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "18", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "osvpi_account", "Privilege": "dialplan,all", "AppData": "1?continue", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "19", "content": ""}, - {"Event": "Newexten", "Application": "Gosub", "Context": "osvpi_account", "Privilege": "dialplan,all", "AppData": "osvpi_proc_set_i18n_region,31,1", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "22", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "0", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_set_i18n_region", "Privilege": "dialplan,all", "AppData": "i18n_region=NL", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "31", "Priority": "1", "content": ""}, - {"Event": "VarSet", "Variable": "i18n_region", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "NL", "content": ""}, - {"Event": "Newexten", "Application": "Return", "Context": "osvpi_proc_set_i18n_region", "Privilege": "dialplan,all", "AppData": "", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "31", "Priority": "2", "content": ""}, - {"Event": "VarSet", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "Goto", "Context": "osvpi_account", "Privilege": "dialplan,all", "AppData": "osvpi_account_emergency_NL,403,1", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "23", "content": ""}, - {"Event": "Newexten", "Application": "Goto", "Context": "osvpi_account_emergency_NL", "Privilege": "dialplan,all", "AppData": "osvpi_account_no_emergency,403,1", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "1", "content": ""}, - {"Event": "Newexten", "Application": "Goto", "Context": "osvpi_account_no_emergency", "Privilege": "dialplan,all", "AppData": "osvpi_account,403,no-emergency", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "1", "content": ""}, - {"Event": "Newexten", "Application": "Goto", "Context": "osvpi_account", "Privilege": "dialplan,all", "AppData": "osvpi_account_clean,403,1", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "24", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_account_clean", "Privilege": "dialplan,all", "AppData": "return=osvpi_account_clean", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "1", "content": ""}, - {"Event": "VarSet", "Variable": "return", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "osvpi_account_clean", "content": ""}, - {"Event": "Newexten", "Application": "Goto", "Context": "osvpi_account_clean", "Privilege": "dialplan,all", "AppData": "osvpi_return_to_canonical,31i403,1", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "2", "content": ""}, - {"Event": "VarSet", "Variable": "INVALID_EXTEN", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "31i403", "content": ""}, - {"Event": "Newexten", "Application": "Goto", "Context": "osvpi_return_to_canonical", "Privilege": "dialplan,all", "AppData": "osvpi_account_clean,403,local", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "i", "Priority": "1", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "osvpi_account_clean", "Privilege": "dialplan,all", "AppData": "0?extern", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "3", "content": ""}, - {"Event": "Newexten", "Application": "Gosub", "Context": "osvpi_account_clean", "Privilege": "dialplan,all", "AppData": "osvpi_proc_set_callerid,403,1(150010002,0,0)", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "4", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "150010002", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "0", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARG3)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "0", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "3", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "osvpi_proc_set_callerid", "Privilege": "dialplan,all", "AppData": "0?done", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "1", "content": ""}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "1", "content": ""}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "SUCCESS", "content": ""}, - {"Event": "VarSet", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "set,privacy,name,number_int,number_ext", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_set_callerid", "Privilege": "dialplan,all", "AppData": "ARRAY(LOCAL(set),LOCAL(privacy),LOCAL(name),LOCAL(number_int),LOCAL(number_ext))=1,0,David Meadows,202,+31150010002", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "2", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(set)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "1", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(privacy)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "0", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(name)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "David Meadows", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(number_int)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "202", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(number_ext)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "+31150010002", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "osvpi_proc_set_callerid", "Privilege": "dialplan,all", "AppData": "0?presentation", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "3", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_set_callerid", "Privilege": "dialplan,all", "AppData": "CALLERID(pres)=allowed_passed_screen", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "4", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_set_callerid", "Privilege": "dialplan,all", "AppData": "CALLERID(name)=David Meadows", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "5", "content": ""}, - {"CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "Privilege": "call,all", "CallerIDName": "David Meadows", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Event": "NewCallerid", "CallerIDNum": "150010002", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_set_callerid", "Privilege": "dialplan,all", "AppData": "CALLERID(num)=202", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "6", "content": ""}, - {"CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "Privilege": "call,all", "CallerIDName": "David Meadows", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Event": "NewCallerid", "CallerIDNum": "202", "content": ""}, - {"Event": "Newexten", "Application": "ExecIf", "Context": "osvpi_proc_set_callerid", "Privilege": "dialplan,all", "AppData": "0?Set(CALLERID(pres)=prohib_passed_screen)", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "7", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_set_callerid", "Privilege": "dialplan,all", "AppData": "CALLERID(ANI)=202", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "8", "content": ""}, - {"Event": "Newexten", "Application": "Gosub", "Context": "osvpi_proc_set_callerid", "Privilege": "dialplan,all", "AppData": "osvpi_proc_set_callerid_internal,403,1", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "9", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARG3)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "0", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "osvpi_proc_set_callerid_internal", "Privilege": "dialplan,all", "AppData": "1?nop", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "1", "content": ""}, - {"Event": "Newexten", "Application": "ExecIf", "Context": "osvpi_proc_set_callerid_internal", "Privilege": "dialplan,all", "AppData": "0?Set(CALLERID(ANI)=20)", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "5", "content": ""}, - {"Event": "Newexten", "Application": "Return", "Context": "osvpi_proc_set_callerid_internal", "Privilege": "dialplan,all", "AppData": "", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "6", "content": ""}, - {"Event": "VarSet", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "Return", "Context": "osvpi_proc_set_callerid", "Privilege": "dialplan,all", "AppData": "", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "10", "content": ""}, - {"Event": "VarSet", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "osvpi_account_clean", "Privilege": "dialplan,all", "AppData": "3?osvpi_account_call_int,403,1:i,1", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "5", "content": ""}, - {"Event": "Newexten", "Application": "Gosub", "Context": "osvpi_account_call_int", "Privilege": "dialplan,all", "AppData": "osvpi_proc_check_limits,403,1", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "1", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "0", "content": ""}, - {"Event": "Newexten", "Application": "NoOp", "Context": "osvpi_proc_check_limits", "Privilege": "dialplan,all", "AppData": "DEBUG: call_limit: client 1/0 and account 1/4", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "1", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "osvpi_proc_check_limits", "Privilege": "dialplan,all", "AppData": "0?osvpi_handle_limit,403,client", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "2", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "osvpi_proc_check_limits", "Privilege": "dialplan,all", "AppData": "0?osvpi_handle_limit,403,account", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "3", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_check_limits", "Privilege": "dialplan,all", "AppData": "GROUP(account_lim)=150010002", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "4", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_check_limits", "Privilege": "dialplan,all", "AppData": "GROUP(client_lim)=15001", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "5", "content": ""}, - {"Event": "Newexten", "Application": "Return", "Context": "osvpi_proc_check_limits", "Privilege": "dialplan,all", "AppData": "", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "6", "content": ""}, - {"Event": "VarSet", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "Gosub", "Context": "osvpi_account_call_int", "Privilege": "dialplan,all", "AppData": "osvpi_proc_check_recurse,403,1(15001)", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "2", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "15001", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "1", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_check_recurse", "Privilege": "dialplan,all", "AppData": "LOCAL(exten)=15001:403", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "1", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(exten)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "15001:403", "content": ""}, - {"Event": "Newexten", "Application": "NoOp", "Context": "osvpi_proc_check_recurse", "Privilege": "dialplan,all", "AppData": "Recursion checking 15001:403 against ", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "2", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_check_recurse", "Privilege": "dialplan,all", "AppData": "LOCAL(n)=0", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "3", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(n)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "0", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_check_recurse", "Privilege": "dialplan,all", "AppData": "LOCAL(i)=1", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "4", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(i)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "1", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "osvpi_proc_check_recurse", "Privilege": "dialplan,all", "AppData": "1?add", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "5", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_check_recurse", "Privilege": "dialplan,all", "AppData": "__EXTEN_LIST=15001:403 ", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "9", "content": ""}, - {"Event": "VarSet", "Variable": "__EXTEN_LIST", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "15001:403 ", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_check_recurse", "Privilege": "dialplan,all", "AppData": "__EXTEN_LIST_LAST_EDIT_TIME=1509353024", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "10", "content": ""}, - {"Event": "VarSet", "Variable": "__EXTEN_LIST_LAST_EDIT_TIME", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "1509353024", "content": ""}, - {"Event": "Newexten", "Application": "Return", "Context": "osvpi_proc_check_recurse", "Privilege": "dialplan,all", "AppData": "", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "11", "content": ""}, - {"Event": "VarSet", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_account_call_int", "Privilege": "dialplan,all", "AppData": "__ORIG_EXTEN=403", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "3", "content": ""}, - {"Event": "VarSet", "Variable": "__ORIG_EXTEN", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "403", "content": ""}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "0", "content": ""}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "NODATA", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_account_call_int", "Privilege": "dialplan,all", "AppData": "ARRAY(conference_id,user_password,admin_password,conference_language)=", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "4", "content": ""}, - {"Event": "VarSet", "Variable": "conference_id", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "user_password", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "admin_password", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "conference_language", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "osvpi_account_call_int", "Privilege": "dialplan,all", "AppData": "0?osvpi_route_conference,ID,1", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "5", "content": ""}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "0", "content": ""}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "NODATA", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_account_call_int", "Privilege": "dialplan,all", "AppData": "ARRAY(route_id,client_timezone)=", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "6", "content": ""}, - {"Event": "VarSet", "Variable": "route_id", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "client_timezone", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "osvpi_account_call_int", "Privilege": "dialplan,all", "AppData": "0?osvpi_route_root,403,restart", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "7", "content": ""}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "0", "content": ""}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "NODATA", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_account_call_int", "Privilege": "dialplan,all", "AppData": "ARRAY(all_extensions,limited_extensions,password,account_spy_language)=", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "8", "content": ""}, - {"Event": "VarSet", "Variable": "all_extensions", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "limited_extensions", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "password", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "account_spy_language", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "osvpi_account_call_int", "Privilege": "dialplan,all", "AppData": "0?osvpi_account_spy,403,1", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "9", "content": ""}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "1", "content": ""}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "SUCCESS", "content": ""}, - {"Event": "VarSet", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "interfaces", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_account_call_int", "Privilege": "dialplan,all", "AppData": "ARRAY(interfaces)=Local/ID690150@osvpi_route_phoneaccount&Local/ID690152@osvpi_route_phoneaccount", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "10", "content": ""}, - {"Event": "VarSet", "Variable": "interfaces", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "Local/ID690150@osvpi_route_phoneaccount&Local/ID690152@osvpi_route_phoneaccount", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "osvpi_account_call_int", "Privilege": "dialplan,all", "AppData": "0?osvpi_handle_unallocated,403,1", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "11", "content": ""}, - {"Event": "Newexten", "Application": "Dial", "Context": "osvpi_account_call_int", "Privilege": "dialplan,all", "AppData": "Local/ID690150@osvpi_route_phoneaccount&Local/ID690152@osvpi_route_phoneaccount", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Extension": "403", "Priority": "12", "content": ""}, - {"Event": "VarSet", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "Value": "", "content": ""}, - {"Exten": "ID690150", "Privilege": "call,all", "Event": "Newchannel", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;1", "content": "", "ChannelState": "0", "Context": "osvpi_route_phoneaccount", "AccountCode": "", "CallerIDName": "", "Uniqueid": "0f00dcaa884f-1509353024.16", "ChannelStateDesc": "Down", "CallerIDNum": ""}, - {"Exten": "ID690150", "Privilege": "call,all", "Event": "Newchannel", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "content": "", "ChannelState": "4", "Context": "osvpi_route_phoneaccount", "AccountCode": "", "CallerIDName": "", "Uniqueid": "0f00dcaa884f-1509353024.17", "ChannelStateDesc": "Ring", "CallerIDNum": ""}, - {"Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.16", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;1", "Value": "ID690150@osvpi_route_phoneaccount", "content": ""}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Privilege": "call,all", "CallerIDName": "", "Uniqueid": "0f00dcaa884f-1509353024.16", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;1", "Event": "NewCallerid", "CallerIDNum": "403", "content": ""}, - {"Exten": "ID690152", "Privilege": "call,all", "Event": "Newchannel", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;1", "content": "", "ChannelState": "0", "Context": "osvpi_route_phoneaccount", "AccountCode": "", "CallerIDName": "", "Uniqueid": "0f00dcaa884f-1509353024.18", "ChannelStateDesc": "Down", "CallerIDNum": ""}, - {"Exten": "ID690152", "Privilege": "call,all", "Event": "Newchannel", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "content": "", "ChannelState": "4", "Context": "osvpi_route_phoneaccount", "AccountCode": "", "CallerIDName": "", "Uniqueid": "0f00dcaa884f-1509353024.19", "ChannelStateDesc": "Ring", "CallerIDNum": ""}, - {"Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.18", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;1", "Value": "ID690152@osvpi_route_phoneaccount", "content": ""}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Privilege": "call,all", "CallerIDName": "", "Uniqueid": "0f00dcaa884f-1509353024.18", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;1", "Event": "NewCallerid", "CallerIDNum": "403", "content": ""}, - {"Exten": "ID690150", "Channel1": "Local/ID690150@osvpi_route_phoneaccount-00000004;1", "Channel2": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Uniqueid1": "0f00dcaa884f-1509353024.16", "Context": "osvpi_route_phoneaccount", "Privilege": "call,all", "LocalOptimization": "Yes", "Uniqueid2": "0f00dcaa884f-1509353024.17", "Event": "LocalBridge", "content": ""}, - {"SubEvent": "Begin", "Privilege": "call,all", "ConnectedLineNum": "", "UniqueID": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "content": "", "Dialstring": "ID690150@osvpi_route_phoneaccount", "CallerIDName": "David Meadows", "DestUniqueID": "0f00dcaa884f-1509353024.16", "ConnectedLineName": "", "Destination": "Local/ID690150@osvpi_route_phoneaccount-00000004;1", "Event": "Dial", "CallerIDNum": "202"}, - {"Exten": "ID690152", "Channel1": "Local/ID690152@osvpi_route_phoneaccount-00000005;1", "Channel2": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Uniqueid1": "0f00dcaa884f-1509353024.18", "Context": "osvpi_route_phoneaccount", "Privilege": "call,all", "LocalOptimization": "Yes", "Uniqueid2": "0f00dcaa884f-1509353024.19", "Event": "LocalBridge", "content": ""}, - {"SubEvent": "Begin", "Privilege": "call,all", "ConnectedLineNum": "", "UniqueID": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "content": "", "Dialstring": "ID690152@osvpi_route_phoneaccount", "CallerIDName": "David Meadows", "DestUniqueID": "0f00dcaa884f-1509353024.18", "ConnectedLineName": "", "Destination": "Local/ID690152@osvpi_route_phoneaccount-00000005;1", "Event": "Dial", "CallerIDNum": "202"}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "1", "content": ""}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "SUCCESS", "content": ""}, - {"Event": "VarSet", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account", "content": ""}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "1", "content": ""}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "SUCCESS", "content": ""}, - {"Event": "VarSet", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_route_phoneaccount", "Privilege": "dialplan,all", "AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=150010001,accountid,dutch,from,,0", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Extension": "ID690150", "Priority": "1", "content": ""}, - {"Event": "VarSet", "Variable": "__dst_account_id", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "150010001", "content": ""}, - {"Event": "VarSet", "Variable": "l_mangle_did", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "accountid", "content": ""}, - {"Event": "VarSet", "Variable": "l_mangle_cli", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "dutch", "content": ""}, - {"Event": "VarSet", "Variable": "l_cli_header", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "from", "content": ""}, - {"Event": "VarSet", "Variable": "l_primary_pickupgroup", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "app_account", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "0", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "osvpi_route_phoneaccount", "Privilege": "dialplan,all", "AppData": "0?vialer", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Extension": "ID690150", "Priority": "2", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_route_phoneaccount", "Privilege": "dialplan,all", "AppData": "_PICKUPMARK=", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Extension": "ID690150", "Priority": "3", "content": ""}, - {"Event": "VarSet", "Variable": "_PICKUPMARK", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_route_phoneaccount", "Privilege": "dialplan,all", "AppData": "l_trunk=0", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Extension": "ID690150", "Priority": "4", "content": ""}, - {"Event": "VarSet", "Variable": "l_trunk", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "0", "content": ""}, - {"Event": "Newexten", "Application": "Goto", "Context": "osvpi_route_phoneaccount", "Privilege": "dialplan,all", "AppData": "osvpi_route_account,ID690150,1", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Extension": "ID690150", "Priority": "5", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_route_phoneaccount", "Privilege": "dialplan,all", "AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=150010003,accountid,dutch,from,,0", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Extension": "ID690152", "Priority": "1", "content": ""}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "1", "content": ""}, - {"Event": "VarSet", "Variable": "__dst_account_id", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "150010003", "content": ""}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "SUCCESS", "content": ""}, - {"Event": "VarSet", "Variable": "l_mangle_did", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "accountid", "content": ""}, - {"Event": "VarSet", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "proxy", "content": ""}, - {"Event": "VarSet", "Variable": "l_mangle_cli", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "dutch", "content": ""}, - {"Event": "VarSet", "Variable": "l_cli_header", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "from", "content": ""}, - {"Event": "VarSet", "Variable": "l_primary_pickupgroup", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "app_account", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "0", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "osvpi_route_phoneaccount", "Privilege": "dialplan,all", "AppData": "0?vialer", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Extension": "ID690152", "Priority": "2", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_route_phoneaccount", "Privilege": "dialplan,all", "AppData": "_PICKUPMARK=", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Extension": "ID690152", "Priority": "3", "content": ""}, - {"Event": "VarSet", "Variable": "_PICKUPMARK", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_route_phoneaccount", "Privilege": "dialplan,all", "AppData": "l_trunk=0", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Extension": "ID690152", "Priority": "4", "content": ""}, - {"Event": "VarSet", "Variable": "l_trunk", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "0", "content": ""}, - {"Event": "Newexten", "Application": "Goto", "Context": "osvpi_route_phoneaccount", "Privilege": "dialplan,all", "AppData": "osvpi_route_account,ID690152,1", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Extension": "ID690152", "Priority": "5", "content": ""}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "1", "content": ""}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "SUCCESS", "content": ""}, - {"Event": "VarSet", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "proxy", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "AppData": "ARRAY(l_proxy)=172.20.0.13", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Extension": "ID690150", "Priority": "1", "content": ""}, - {"Event": "VarSet", "Variable": "l_proxy", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "172.20.0.13", "content": ""}, - {"Event": "Newexten", "Application": "Gosub", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "AppData": "osvpi_proc_mangle_number,accountid,1(150010001,403)", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Extension": "ID690150", "Priority": "2", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "150010001", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "403", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "2", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_mangle_number", "Privilege": "dialplan,all", "AppData": "MANGLED_EXTEN=150010001", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Extension": "accountid", "Priority": "1", "content": ""}, - {"Event": "VarSet", "Variable": "MANGLED_EXTEN", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "150010001", "content": ""}, - {"Event": "Newexten", "Application": "Return", "Context": "osvpi_proc_mangle_number", "Privilege": "dialplan,all", "AppData": "", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Extension": "accountid", "Priority": "2", "content": ""}, - {"Event": "VarSet", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "AppData": "l_did=150010001", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Extension": "ID690150", "Priority": "3", "content": ""}, - {"Event": "VarSet", "Variable": "l_did", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "150010001", "content": ""}, - {"Event": "Newexten", "Application": "Gosub", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "AppData": "osvpi_proc_mangle_number,dutch,1(150010001,202)", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Extension": "ID690150", "Priority": "4", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "150010001", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "202", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "2", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "osvpi_proc_mangle_number", "Privilege": "dialplan,all", "AppData": "1?fullzero,1", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Extension": "dutch", "Priority": "1", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_mangle_number", "Privilege": "dialplan,all", "AppData": "MANGLED_EXTEN=202", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Extension": "fullzero", "Priority": "1", "content": ""}, - {"Event": "VarSet", "Variable": "MANGLED_EXTEN", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "202", "content": ""}, - {"Event": "Newexten", "Application": "Return", "Context": "osvpi_proc_mangle_number", "Privilege": "dialplan,all", "AppData": "", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Extension": "fullzero", "Priority": "2", "content": ""}, - {"Event": "VarSet", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "AppData": "l_mangle_cli_hdr=from-dutch", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Extension": "ID690150", "Priority": "5", "content": ""}, - {"Event": "VarSet", "Variable": "l_mangle_cli_hdr", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "from-dutch", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "AppData": "l_fromuser=", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Extension": "ID690150", "Priority": "6", "content": ""}, - {"Event": "VarSet", "Variable": "l_fromuser", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "ExecIf", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "AppData": "1?Set(l_fromuser=202)", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Extension": "ID690150", "Priority": "7", "content": ""}, - {"Event": "VarSet", "Variable": "l_fromuser", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "202", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "AppData": "ARRAY(l_proxy)=172.20.0.13", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Extension": "ID690152", "Priority": "1", "content": ""}, - {"Event": "VarSet", "Variable": "l_proxy", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "172.20.0.13", "content": ""}, - {"Event": "Newexten", "Application": "Gosub", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "AppData": "osvpi_proc_mangle_number,accountid,1(150010003,403)", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Extension": "ID690152", "Priority": "2", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "150010003", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "403", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "2", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_mangle_number", "Privilege": "dialplan,all", "AppData": "MANGLED_EXTEN=150010003", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Extension": "accountid", "Priority": "1", "content": ""}, - {"Event": "VarSet", "Variable": "MANGLED_EXTEN", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "150010003", "content": ""}, - {"Event": "Newexten", "Application": "Return", "Context": "osvpi_proc_mangle_number", "Privilege": "dialplan,all", "AppData": "", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Extension": "accountid", "Priority": "2", "content": ""}, - {"Event": "VarSet", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "AppData": "l_did=150010003", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Extension": "ID690152", "Priority": "3", "content": ""}, - {"Event": "VarSet", "Variable": "l_did", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "150010003", "content": ""}, - {"Event": "Newexten", "Application": "Gosub", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "AppData": "osvpi_proc_mangle_number,dutch,1(150010003,202)", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Extension": "ID690152", "Priority": "4", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "150010003", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "202", "content": ""}, - {"Event": "VarSet", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "2", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "osvpi_proc_mangle_number", "Privilege": "dialplan,all", "AppData": "1?fullzero,1", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Extension": "dutch", "Priority": "1", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_mangle_number", "Privilege": "dialplan,all", "AppData": "MANGLED_EXTEN=202", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Extension": "fullzero", "Priority": "1", "content": ""}, - {"Event": "VarSet", "Variable": "MANGLED_EXTEN", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "202", "content": ""}, - {"Event": "Newexten", "Application": "Return", "Context": "osvpi_proc_mangle_number", "Privilege": "dialplan,all", "AppData": "", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Extension": "fullzero", "Priority": "2", "content": ""}, - {"Event": "VarSet", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "AppData": "l_mangle_cli_hdr=from-dutch", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Extension": "ID690152", "Priority": "5", "content": ""}, - {"Event": "VarSet", "Variable": "l_mangle_cli_hdr", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "from-dutch", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "AppData": "l_fromuser=", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Extension": "ID690152", "Priority": "6", "content": ""}, - {"Event": "VarSet", "Variable": "l_fromuser", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "ExecIf", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "AppData": "1?Set(l_fromuser=202)", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Extension": "ID690152", "Priority": "7", "content": ""}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "1", "content": ""}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "SUCCESS", "content": ""}, - {"Event": "VarSet", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "IF((SELECT 1 FROM baseaccount_account ba INNER JOIN userdestination_selecteduserdestination udsud ON udsud.phoneaccount_id = ba.id INNER JOIN userdestination_userdestination udud ON udud.id = udsud.userdestination_id INNER JOIN crm_cloudctiuser cccu O", "content": ""}, - {"Event": "VarSet", "Variable": "l_fromuser", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "202", "content": ""}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "1", "content": ""}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "SUCCESS", "content": ""}, - {"Event": "VarSet", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "IF((SELECT 1 FROM baseaccount_account ba INNER JOIN userdestination_selecteduserdestination udsud ON udsud.phoneaccount_id = ba.id INNER JOIN userdestination_userdestination udud ON udud.id = udsud.userdestination_id INNER JOIN crm_cloudctiuser cccu O", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "AppData": "ARRAY(cloudcti)=0", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Extension": "ID690150", "Priority": "8", "content": ""}, - {"Event": "VarSet", "Variable": "cloudcti", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "0", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "AppData": "1?skipcloudcti", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Extension": "ID690150", "Priority": "9", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "AppData": "ARRAY(cloudcti)=0", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Extension": "ID690152", "Priority": "8", "content": ""}, - {"Event": "VarSet", "Variable": "cloudcti", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "0", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "AppData": "1?skipcloudcti", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Extension": "ID690152", "Priority": "9", "content": ""}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "1", "content": ""}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "SUCCESS", "content": ""}, - {"Event": "VarSet", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "GROUP_CONCAT(DISTINCT(csw.url) SEPARATOR ' '),internal_number,GROUP_CONCAT(DISTINCT(ud.internal_number) SEPARATOR ' ')", "content": ""}, - {"Event": "VarSet", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "1", "content": ""}, - {"Event": "VarSet", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "SUCCESS", "content": ""}, - {"Event": "VarSet", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "GROUP_CONCAT(DISTINCT(csw.url) SEPARATOR ' '),internal_number,GROUP_CONCAT(DISTINCT(ud.internal_number) SEPARATOR ' ')", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "AppData": "ARRAY(webhooks,accountinternalnumber,userinternalnumbers)=,201,", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Extension": "ID690150", "Priority": "11", "content": ""}, - {"Event": "VarSet", "Variable": "webhooks", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "accountinternalnumber", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "201", "content": ""}, - {"Event": "VarSet", "Variable": "userinternalnumbers", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "Goto", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "AppData": "osvpi_proc_proxy_out,403,1", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Extension": "ID690150", "Priority": "13", "content": ""}, - {"Event": "Newexten", "Application": "SIPAddHeader", "Context": "osvpi_proc_proxy_out", "Privilege": "dialplan,all", "AppData": "X-Accountcode: 150010001", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Extension": "403", "Priority": "1", "content": ""}, - {"Event": "VarSet", "Variable": "__SIPADDHEADER01", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "X-Accountcode: 150010001", "content": ""}, - {"Event": "Newexten", "Application": "SIPAddHeader", "Context": "osvpi_proc_proxy_out", "Privilege": "dialplan,all", "AppData": "X-Insecure-Protection: geheim", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Extension": "403", "Priority": "2", "content": ""}, - {"Event": "VarSet", "Variable": "__SIPADDHEADER02", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "X-Insecure-Protection: geheim", "content": ""}, - {"Event": "Newexten", "Application": "SIPAddHeader", "Context": "osvpi_proc_proxy_out", "Privilege": "dialplan,all", "AppData": "X-Mangle-Cli: from-dutch", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Extension": "403", "Priority": "3", "content": ""}, - {"Event": "VarSet", "Variable": "__SIPADDHEADER03", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "X-Mangle-Cli: from-dutch", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_proxy_out", "Privilege": "dialplan,all", "AppData": "_dial_options_callaccept=", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Extension": "403", "Priority": "4", "content": ""}, - {"Event": "VarSet", "Variable": "_dial_options_callaccept", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_proxy_out", "Privilege": "dialplan,all", "AppData": "_dial_options_callnotify=", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Extension": "403", "Priority": "5", "content": ""}, - {"Event": "VarSet", "Variable": "_dial_options_callnotify", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "ExecIf", "Context": "osvpi_proc_proxy_out", "Privilege": "dialplan,all", "AppData": "0?Set(l_proxy=opensipsfg)", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Extension": "403", "Priority": "6", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_proxy_out", "Privilege": "dialplan,all", "AppData": "l_extra_options=", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Extension": "403", "Priority": "7", "content": ""}, - {"Event": "VarSet", "Variable": "l_extra_options", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "Dial", "Context": "osvpi_proc_proxy_out", "Privilege": "dialplan,all", "AppData": "SIP/150010001/150010001/172.20.0.13!!202,,", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Extension": "403", "Priority": "8", "content": ""}, - {"Event": "VarSet", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "AppData": "ARRAY(webhooks,accountinternalnumber,userinternalnumbers)=,203,", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Extension": "ID690152", "Priority": "11", "content": ""}, - {"Event": "VarSet", "Variable": "webhooks", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "accountinternalnumber", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "203", "content": ""}, - {"Event": "VarSet", "Variable": "userinternalnumbers", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "Goto", "Context": "osvpi_route_account", "Privilege": "dialplan,all", "AppData": "osvpi_proc_proxy_out,403,1", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Extension": "ID690152", "Priority": "13", "content": ""}, - {"Event": "Newexten", "Application": "SIPAddHeader", "Context": "osvpi_proc_proxy_out", "Privilege": "dialplan,all", "AppData": "X-Accountcode: 150010003", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Extension": "403", "Priority": "1", "content": ""}, - {"Event": "VarSet", "Variable": "__SIPADDHEADER01", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "X-Accountcode: 150010003", "content": ""}, - {"Event": "Newexten", "Application": "SIPAddHeader", "Context": "osvpi_proc_proxy_out", "Privilege": "dialplan,all", "AppData": "X-Insecure-Protection: geheim", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Extension": "403", "Priority": "2", "content": ""}, - {"Event": "VarSet", "Variable": "__SIPADDHEADER02", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "X-Insecure-Protection: geheim", "content": ""}, - {"Event": "Newexten", "Application": "SIPAddHeader", "Context": "osvpi_proc_proxy_out", "Privilege": "dialplan,all", "AppData": "X-Mangle-Cli: from-dutch", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Extension": "403", "Priority": "3", "content": ""}, - {"Event": "VarSet", "Variable": "__SIPADDHEADER03", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "X-Mangle-Cli: from-dutch", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_proxy_out", "Privilege": "dialplan,all", "AppData": "_dial_options_callaccept=", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Extension": "403", "Priority": "4", "content": ""}, - {"Event": "VarSet", "Variable": "_dial_options_callaccept", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_proxy_out", "Privilege": "dialplan,all", "AppData": "_dial_options_callnotify=", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Extension": "403", "Priority": "5", "content": ""}, - {"Event": "VarSet", "Variable": "_dial_options_callnotify", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "ExecIf", "Context": "osvpi_proc_proxy_out", "Privilege": "dialplan,all", "AppData": "0?Set(l_proxy=opensipsfg)", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Extension": "403", "Priority": "6", "content": ""}, - {"Event": "Newexten", "Application": "Set", "Context": "osvpi_proc_proxy_out", "Privilege": "dialplan,all", "AppData": "l_extra_options=", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Extension": "403", "Priority": "7", "content": ""}, - {"Event": "VarSet", "Variable": "l_extra_options", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "", "content": ""}, - {"Event": "Newexten", "Application": "Dial", "Context": "osvpi_proc_proxy_out", "Privilege": "dialplan,all", "AppData": "SIP/150010003/150010003/172.20.0.13!!202,,", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Extension": "403", "Priority": "8", "content": ""}, - {"Event": "VarSet", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "", "content": ""}, - {"Event": "VarSet", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "", "content": ""}, - {"Exten": "", "Privilege": "call,all", "Event": "Newchannel", "Channel": "SIP/150010001-00000008", "content": "", "ChannelState": "0", "Context": "osvpi_account", "AccountCode": "150010001", "CallerIDName": "", "Uniqueid": "0f00dcaa884f-1509353024.20", "ChannelStateDesc": "Down", "CallerIDNum": ""}, - {"Exten": "", "Privilege": "call,all", "Event": "Newchannel", "Channel": "SIP/150010003-00000009", "content": "", "ChannelState": "0", "Context": "osvpi_account", "AccountCode": "150010003", "CallerIDName": "", "Uniqueid": "0f00dcaa884f-1509353024.21", "ChannelStateDesc": "Down", "CallerIDNum": ""}, - {"Event": "VarSet", "Variable": "SIPCALLID", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.20", "Channel": "SIP/150010001-00000008", "Value": "403f05cd3e154021031c94fe4d90e142@test.voipgrid.nl", "content": ""}, - {"Event": "VarSet", "Variable": "__client_id", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.20", "Channel": "SIP/150010001-00000008", "Value": "15001", "content": ""}, - {"Event": "VarSet", "Variable": "SIPCALLID", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.21", "Channel": "SIP/150010003-00000009", "Value": "0979b86f4bc6f2b82e9e311f4b602a21@test.voipgrid.nl", "content": ""}, - {"Event": "VarSet", "Variable": "__account_id", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.20", "Channel": "SIP/150010001-00000008", "Value": "150010001", "content": ""}, - {"Event": "VarSet", "Variable": "__record_call", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.20", "Channel": "SIP/150010001-00000008", "Value": "no", "content": ""}, - {"Event": "VarSet", "Variable": "__intprefix", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.20", "Channel": "SIP/150010001-00000008", "Value": "31", "content": ""}, - {"Event": "VarSet", "Variable": "__client_id", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.21", "Channel": "SIP/150010003-00000009", "Value": "15001", "content": ""}, - {"Event": "VarSet", "Variable": "__account_id", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.21", "Channel": "SIP/150010003-00000009", "Value": "150010003", "content": ""}, - {"Event": "VarSet", "Variable": "__record_call", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.21", "Channel": "SIP/150010003-00000009", "Value": "no", "content": ""}, - {"Event": "VarSet", "Variable": "__intprefix", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.21", "Channel": "SIP/150010003-00000009", "Value": "31", "content": ""}, - {"Event": "VarSet", "Variable": "__limit_account", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.21", "Channel": "SIP/150010003-00000009", "Value": "4", "content": ""}, - {"Event": "VarSet", "Variable": "__limit_account", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.20", "Channel": "SIP/150010001-00000008", "Value": "4", "content": ""}, - {"Event": "VarSet", "Variable": "__limit_client", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.20", "Channel": "SIP/150010001-00000008", "Value": "0", "content": ""}, - {"Event": "VarSet", "Variable": "__limit_client", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.21", "Channel": "SIP/150010003-00000009", "Value": "0", "content": ""}, - {"Event": "VarSet", "Variable": "__hide_ext_cliname", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.20", "Channel": "SIP/150010001-00000008", "Value": "1", "content": ""}, - {"Event": "VarSet", "Variable": "__hide_ext_cliname", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.21", "Channel": "SIP/150010003-00000009", "Value": "1", "content": ""}, - {"Event": "VarSet", "Variable": "__TRANSFER_CONTEXT", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.20", "Channel": "SIP/150010001-00000008", "Value": "osvpi_account_transfer", "content": ""}, - {"Event": "VarSet", "Variable": "__TRANSFER_CONTEXT", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.21", "Channel": "SIP/150010003-00000009", "Value": "osvpi_account_transfer", "content": ""}, - {"Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.20", "Channel": "SIP/150010001-00000008", "Value": "150010001/150010001/172.20.0.13!!202", "content": ""}, - {"Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.21", "Channel": "SIP/150010003-00000009", "Value": "150010003/150010003/172.20.0.13!!202", "content": ""}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Privilege": "call,all", "CallerIDName": "", "Uniqueid": "0f00dcaa884f-1509353024.20", "Channel": "SIP/150010001-00000008", "Event": "NewCallerid", "CallerIDNum": "403", "content": ""}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Privilege": "call,all", "CallerIDName": "", "Uniqueid": "0f00dcaa884f-1509353024.21", "Channel": "SIP/150010003-00000009", "Event": "NewCallerid", "CallerIDNum": "403", "content": ""}, - {"SubEvent": "Begin", "Privilege": "call,all", "ConnectedLineNum": "403", "UniqueID": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "content": "", "Dialstring": "150010001/150010001/172.20.0.13!!202", "CallerIDName": "David Meadows", "DestUniqueID": "0f00dcaa884f-1509353024.20", "ConnectedLineName": "", "Destination": "SIP/150010001-00000008", "Event": "Dial", "CallerIDNum": "202"}, - {"SubEvent": "Begin", "Privilege": "call,all", "ConnectedLineNum": "403", "UniqueID": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "content": "", "Dialstring": "150010003/150010003/172.20.0.13!!202", "CallerIDName": "David Meadows", "DestUniqueID": "0f00dcaa884f-1509353024.21", "ConnectedLineName": "", "Destination": "SIP/150010003-00000009", "Event": "Dial", "CallerIDNum": "202"}, - {"Event": "Newstate", "ConnectedLineName": "David Meadows", "Privilege": "call,all", "ConnectedLineNum": "202", "CallerIDName": "", "content": "", "Channel": "SIP/150010001-00000008", "ChannelState": "5", "ChannelStateDesc": "Ringing", "CallerIDNum": "403", "Uniqueid": "0f00dcaa884f-1509353024.20"}, - {"Event": "Newstate", "ConnectedLineName": "David Meadows", "Privilege": "call,all", "ConnectedLineNum": "202", "CallerIDName": "", "content": "", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "CallerIDNum": "403", "Uniqueid": "0f00dcaa884f-1509353024.16"}, - {"Event": "Newstate", "ConnectedLineName": "David Meadows", "Privilege": "call,all", "ConnectedLineNum": "202", "CallerIDName": "", "content": "", "Channel": "SIP/150010003-00000009", "ChannelState": "5", "ChannelStateDesc": "Ringing", "CallerIDNum": "403", "Uniqueid": "0f00dcaa884f-1509353024.21"}, - {"Event": "Newstate", "ConnectedLineName": "David Meadows", "Privilege": "call,all", "ConnectedLineNum": "202", "CallerIDName": "", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "CallerIDNum": "403", "Uniqueid": "0f00dcaa884f-1509353024.18"}, - {"FractionLost": "86", "SentPackets": "165", "IAJitter": "0.0001", "Privilege": "reporting,all", "SentNTP": "1509353025.2119831552", "SentOctets": "26400", "content": "", "TheirLastSR": "0", "SentRTP": "26400", "OurSSRC": "1839203487", "To": "172.20.0.254:59803", "Event": "RTCPSent", "CumulativeLoss": "84", "DLSR": "58945.5170 (sec)"}, - {"Event": "VarSet", "Variable": "SIPREFERRINGCONTEXT", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.12", "Channel": "SIP/150010004-00000006", "Value": "osvpi_account", "content": ""}, - {"Event": "VarSet", "Variable": "SIPREFERREDBYHDR", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.12", "Channel": "SIP/150010004-00000006", "Value": "\"Bob\" ", "content": ""}, - {"TransferMethod": "SIP", "TransferType": "Attended", "Privilege": "call,all", "TargetUniqueid": "0f00dcaa884f-1509353024.15", "TargetChannel": "SIP/150010002-00000007", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "SIP-Callid": "66e3ac40-de169846@10.13.36.116", "content": "", "Event": "Transfer"}, - {"State": "Stop", "Event": "MusicOnHold", "Privilege": "call,all", "UniqueID": "0f00dcaa884f-1509353018.12", "Channel": "SIP/150010004-00000006", "content": ""}, - {"CloneState": "Up", "Privilege": "call,all", "Event": "Masquerade", "content": "", "OriginalState": "Ring", "Clone": "SIP/150010004-00000006", "Original": "SIP/150010002-00000007"}, - {"Event": "Rename", "Privilege": "call,all", "Newname": "SIP/150010004-00000006", "Uniqueid": "0f00dcaa884f-1509353018.12", "Channel": "SIP/150010004-00000006", "content": ""}, - {"Event": "Rename", "Privilege": "call,all", "Newname": "SIP/150010004-00000006", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010002-00000007", "content": ""}, - {"Event": "Rename", "Privilege": "call,all", "Newname": "SIP/150010002-00000007", "Uniqueid": "0f00dcaa884f-1509353018.12", "Channel": "SIP/150010004-00000006", "content": ""}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Privilege": "call,all", "CallerIDName": "", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010004-00000006", "Event": "NewCallerid", "CallerIDNum": "204", "content": ""}, - {"Bridgetype": "core", "Channel1": "SIP/150010002-00000005", "Channel2": "SIP/150010002-00000007", "Uniqueid1": "0f00dcaa884f-1509353018.11", "Privilege": "call,all", "Bridgestate": "Unlink", "content": "", "Uniqueid2": "0f00dcaa884f-1509353018.12", "CallerID1": "202", "Event": "Bridge", "CallerID2": "202"}, - {"Event": "VarSet", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "6", "content": ""}, - {"Event": "VarSet", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "8", "content": ""}, - {"Cause": "16", "Privilege": "call,all", "ConnectedLineNum": "", "ConnectedLineName": "", "Channel": "SIP/150010002-00000007", "content": "", "Cause-txt": "Normal Clearing", "AccountCode": "150010002", "CallerIDName": "David Meadows", "Uniqueid": "0f00dcaa884f-1509353018.12", "Event": "Hangup", "CallerIDNum": "202"}, - {"Event": "VarSet", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Value": "ANSWER", "content": ""}, - {"Event": "Dial", "SubEvent": "End", "Privilege": "call,all", "UniqueID": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "DialStatus": "ANSWER", "content": ""}, - {"Event": "SoftHangupRequest", "Cause": "16", "Privilege": "call,all", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "handlers", "Privilege": "dialplan,all", "AppData": "0?nosip", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "onhangup", "Priority": "1", "content": ""}, - {"Event": "Newexten", "Application": "NoOp", "Context": "handlers", "Privilege": "dialplan,all", "AppData": "LOG: rtpqos: caller=(null);asterisk=0.0.0.0:14812;ssrc=964607268;themssrc=0;lp=0;rxjitter=0.000000;rxcount=0;txjitter=0.000000;txcount=0;rlp=0;rtt=0.000000;billsec=0", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "onhangup", "Priority": "2", "content": ""}, - {"Event": "Newexten", "Application": "GosubIf", "Context": "handlers", "Privilege": "dialplan,all", "AppData": "0?osvpi_proc_httptouch,s,1()", "Uniqueid": "0f00dcaa884f-1509353018.11", "Channel": "SIP/150010002-00000005", "Extension": "onhangup", "Priority": "3", "content": ""}, - {"Cause": "16", "Privilege": "call,all", "ConnectedLineNum": "", "ConnectedLineName": "", "Channel": "SIP/150010002-00000005", "content": "", "Cause-txt": "Normal Clearing", "AccountCode": "150010002", "CallerIDName": "David Meadows", "Uniqueid": "0f00dcaa884f-1509353018.11", "Event": "Hangup", "CallerIDNum": "202"}, - {"FractionLost": "0", "SentPackets": "414", "IAJitter": "0.0001", "Privilege": "reporting,all", "SentNTP": "1509353030.2122031104", "SentOctets": "66240", "content": "", "TheirLastSR": "0", "SentRTP": "66240", "OurSSRC": "1729067815", "To": "172.20.0.254:59803", "Event": "RTCPSent", "CumulativeLoss": "84", "DLSR": "58950.5180 (sec)"}, - {"Event": "Newstate", "ConnectedLineName": "", "Privilege": "call,all", "ConnectedLineNum": "", "CallerIDName": "", "content": "", "Channel": "SIP/150010001-00000008", "ChannelState": "6", "ChannelStateDesc": "Up", "CallerIDNum": "403", "Uniqueid": "0f00dcaa884f-1509353024.20"}, - {"Event": "VarSet", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "ANSWER", "content": ""}, - {"Event": "VarSet", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "SIP/150010001-00000008", "content": ""}, - {"Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "150010001/150010001/172.20.0.13!!202", "content": ""}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "SIP/150010001-00000008", "content": ""}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.20", "Channel": "SIP/150010001-00000008", "Value": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "content": ""}, - {"Event": "Newstate", "ConnectedLineName": "", "Privilege": "call,all", "ConnectedLineNum": "403", "CallerIDName": "David Meadows", "content": "", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "ChannelState": "6", "ChannelStateDesc": "Up", "CallerIDNum": "202", "Uniqueid": "0f00dcaa884f-1509353024.17"}, - {"Event": "Newstate", "ConnectedLineName": "", "Privilege": "call,all", "ConnectedLineNum": "", "CallerIDName": "", "content": "", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;1", "ChannelState": "6", "ChannelStateDesc": "Up", "CallerIDNum": "403", "Uniqueid": "0f00dcaa884f-1509353024.16"}, - {"OldAccountCode": "150010002", "AccountCode": "150010002", "Privilege": "call,all", "Uniqueid": "0f00dcaa884f-1509353024.20", "Channel": "SIP/150010001-00000008", "content": "", "Event": "NewAccountCode"}, - {"Bridgetype": "core", "Channel1": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Channel2": "SIP/150010001-00000008", "Uniqueid1": "0f00dcaa884f-1509353024.17", "Privilege": "call,all", "Bridgestate": "Link", "content": "", "Uniqueid2": "0f00dcaa884f-1509353024.20", "CallerID1": "202", "Event": "Bridge", "CallerID2": "403"}, - {"Event": "VarSet", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010004-00000006", "Value": "ANSWER", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "content": "", "Privilege": "call,all", "Event": "HangupRequest"}, - {"Cause": "26", "Privilege": "call,all", "ConnectedLineNum": "", "ConnectedLineName": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;1", "content": "", "Cause-txt": "Answered elsewhere", "AccountCode": "150010002", "CallerIDName": "", "Uniqueid": "0f00dcaa884f-1509353024.18", "Event": "Hangup", "CallerIDNum": "403"}, - {"Event": "VarSet", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010004-00000006", "Value": "Local/ID690150@osvpi_route_phoneaccount-00000004;1", "content": ""}, - {"Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010004-00000006", "Value": "ID690150@osvpi_route_phoneaccount", "content": ""}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010004-00000006", "Value": "Local/ID690150@osvpi_route_phoneaccount-00000004;1", "content": ""}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.16", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;1", "Value": "SIP/150010004-00000006", "content": ""}, - {"OldAccountCode": "150010002", "AccountCode": "150010002", "Privilege": "call,all", "Uniqueid": "0f00dcaa884f-1509353024.16", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;1", "content": "", "Event": "NewAccountCode"}, - {"Cause": "26", "Privilege": "call,all", "ConnectedLineNum": "", "ConnectedLineName": "", "Channel": "SIP/150010003-00000009", "content": "", "Cause-txt": "Answered elsewhere", "AccountCode": "150010002", "CallerIDName": "", "Uniqueid": "0f00dcaa884f-1509353024.21", "Event": "Hangup", "CallerIDNum": "403"}, - {"Event": "VarSet", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Value": "CANCEL", "content": ""}, - {"Event": "Dial", "SubEvent": "End", "Privilege": "call,all", "UniqueID": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "DialStatus": "CANCEL", "content": ""}, - {"Bridgetype": "core", "Channel1": "SIP/150010004-00000006", "Channel2": "Local/ID690150@osvpi_route_phoneaccount-00000004;1", "Uniqueid1": "0f00dcaa884f-1509353024.15", "Privilege": "call,all", "Bridgestate": "Link", "content": "", "Uniqueid2": "0f00dcaa884f-1509353024.16", "CallerID1": "204", "Event": "Bridge", "CallerID2": "403"}, - {"Event": "SoftHangupRequest", "Cause": "16", "Privilege": "call,all", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "content": ""}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "SIP/150010001-00000008", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "handlers", "Privilege": "dialplan,all", "AppData": "1?nosip", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Extension": "onhangup", "Priority": "1", "content": ""}, - {"Event": "Newexten", "Application": "GosubIf", "Context": "handlers", "Privilege": "dialplan,all", "AppData": "0?osvpi_proc_httptouch,s,1()", "Uniqueid": "0f00dcaa884f-1509353024.19", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "Extension": "onhangup", "Priority": "3", "content": ""}, - {"Cause": "26", "Privilege": "call,all", "ConnectedLineNum": "403", "ConnectedLineName": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000005;2", "content": "", "Cause-txt": "Answered elsewhere", "AccountCode": "150010002", "CallerIDName": "David Meadows", "Uniqueid": "0f00dcaa884f-1509353024.19", "Event": "Hangup", "CallerIDNum": "202"}, - {"Event": "VarSet", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "403f05cd3e154021031c94fe4d90e142@test.voipgrid.nl", "content": ""}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.20", "Channel": "SIP/150010001-00000008", "Value": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "content": ""}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010004-00000006", "Value": "Local/ID690150@osvpi_route_phoneaccount-00000004;1", "content": ""}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.16", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;1", "Value": "SIP/150010004-00000006", "content": ""}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "SIP/150010001-00000008", "content": ""}, - {"Event": "VarSet", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.16", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;1", "Value": "7e01a0a0696fcc1a03ef17b249a9c55b@test.voipgrid.nl", "content": ""}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010004-00000006", "Value": "Local/ID690150@osvpi_route_phoneaccount-00000004;1", "content": ""}, - {"Event": "VarSet", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "403f05cd3e154021031c94fe4d90e142@test.voipgrid.nl", "content": ""}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.16", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;1", "Value": "SIP/150010004-00000006", "content": ""}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.20", "Channel": "SIP/150010001-00000008", "Value": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "content": ""}, - {"Event": "VarSet", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.16", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;1", "Value": "7e01a0a0696fcc1a03ef17b249a9c55b@test.voipgrid.nl", "content": ""}, - {"CloneState": "Up", "Privilege": "call,all", "Event": "Masquerade", "content": "", "OriginalState": "Up", "Clone": "SIP/150010001-00000008", "Original": "Local/ID690150@osvpi_route_phoneaccount-00000004;1"}, - {"Event": "Rename", "Privilege": "call,all", "Newname": "SIP/150010001-00000008", "Uniqueid": "0f00dcaa884f-1509353024.20", "Channel": "SIP/150010001-00000008", "content": ""}, - {"Event": "Rename", "Privilege": "call,all", "Newname": "SIP/150010001-00000008", "Uniqueid": "0f00dcaa884f-1509353024.16", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;1", "content": ""}, - {"Event": "Rename", "Privilege": "call,all", "Newname": "Local/ID690150@osvpi_route_phoneaccount-00000004;1", "Uniqueid": "0f00dcaa884f-1509353024.20", "Channel": "SIP/150010001-00000008", "content": ""}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Privilege": "call,all", "CallerIDName": "", "Uniqueid": "0f00dcaa884f-1509353024.16", "Channel": "SIP/150010001-00000008", "Event": "NewCallerid", "CallerIDNum": "403", "content": ""}, - {"Bridgetype": "core", "Channel1": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Channel2": "Local/ID690150@osvpi_route_phoneaccount-00000004;1", "Uniqueid1": "0f00dcaa884f-1509353024.17", "Privilege": "call,all", "Bridgestate": "Unlink", "content": "", "Uniqueid2": "0f00dcaa884f-1509353024.20", "CallerID1": "202", "Event": "Bridge", "CallerID2": "403"}, - {"Event": "VarSet", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "0", "content": ""}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010004-00000006", "Value": "SIP/150010001-00000008", "content": ""}, - {"Event": "VarSet", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "8", "content": ""}, - {"Event": "VarSet", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010004-00000006", "Value": "403f05cd3e154021031c94fe4d90e142@test.voipgrid.nl", "content": ""}, - {"Event": "VarSet", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.16", "Channel": "SIP/150010001-00000008", "Value": "SIP/150010004-00000006", "content": ""}, - {"Event": "VarSet", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.16", "Channel": "SIP/150010001-00000008", "Value": "7e01a0a0696fcc1a03ef17b249a9c55b@test.voipgrid.nl", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "content": "", "Privilege": "call,all", "Event": "HangupRequest"}, - {"Cause": "16", "Privilege": "call,all", "ConnectedLineNum": "", "ConnectedLineName": "", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;1", "content": "", "Cause-txt": "Normal Clearing", "AccountCode": "150010002", "CallerIDName": "", "Uniqueid": "0f00dcaa884f-1509353024.20", "Event": "Hangup", "CallerIDNum": "403"}, - {"Event": "VarSet", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Value": "ANSWER", "content": ""}, - {"Event": "Dial", "SubEvent": "End", "Privilege": "call,all", "UniqueID": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "DialStatus": "ANSWER", "content": ""}, - {"Event": "SoftHangupRequest", "Cause": "16", "Privilege": "call,all", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "handlers", "Privilege": "dialplan,all", "AppData": "1?nosip", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Extension": "onhangup", "Priority": "1", "content": ""}, - {"Event": "Newexten", "Application": "GosubIf", "Context": "handlers", "Privilege": "dialplan,all", "AppData": "0?osvpi_proc_httptouch,s,1()", "Uniqueid": "0f00dcaa884f-1509353024.17", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "Extension": "onhangup", "Priority": "3", "content": ""}, - {"Cause": "16", "Privilege": "call,all", "ConnectedLineNum": "403", "ConnectedLineName": "", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000004;2", "content": "", "Cause-txt": "Normal Clearing", "AccountCode": "150010002", "CallerIDName": "David Meadows", "Uniqueid": "0f00dcaa884f-1509353024.17", "Event": "Hangup", "CallerIDNum": "202"}, - {"ReceptionReports": "1", "PT": "200(Sender Report)", "FractionLost": "0", "HighestSequence": "5394", "IAJitter": "20", "Privilege": "reporting,all", "DLSR": "32768.0000(sec)", "From": "172.20.0.254:55721", "content": "", "SequenceNumberCycles": "0", "LastSR": "0.0000000000", "SenderSSRC": "0", "PacketsLost": "0", "Event": "RTCPReceived"}, - {"FractionLost": "0", "SentPackets": "491", "IAJitter": "0.0001", "Privilege": "reporting,all", "SentNTP": "1509353035.2120212480", "SentOctets": "78560", "content": "", "TheirLastSR": "0", "SentRTP": "78560", "OurSSRC": "391681630", "To": "172.20.0.254:59803", "Event": "RTCPSent", "CumulativeLoss": "84", "DLSR": "58955.5170 (sec)"}, - {"FractionLost": "0", "SentPackets": "17", "IAJitter": "0.0000", "Privilege": "reporting,all", "SentNTP": "1509353037.0320839680", "SentOctets": "2720", "content": "", "TheirLastSR": "3863681761", "SentRTP": "380271560", "OurSSRC": "2105175709", "To": "172.20.0.254:55721", "Event": "RTCPSent", "CumulativeLoss": "0", "DLSR": "1.9340 (sec)"}, - {"Event": "VarSet", "Variable": "RTPAUDIOQOS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.16", "Channel": "SIP/150010001-00000008", "Value": "ssrc=2105175709;themssrc=3426670946;lp=0;rxjitter=0.000000;rxcount=1;txjitter=0.000000;txcount=17;rlp=0;rtt=0.000000", "content": ""}, - {"Event": "VarSet", "Variable": "RTPAUDIOQOSBRIDGED", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010004-00000006", "Value": "ssrc=2105175709;themssrc=3426670946;lp=0;rxjitter=0.000000;rxcount=1;txjitter=0.000000;txcount=17;rlp=0;rtt=0.000000", "content": ""}, - {"Event": "VarSet", "Variable": "RTPAUDIOQOSJITTER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.16", "Channel": "SIP/150010001-00000008", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "content": ""}, - {"Event": "VarSet", "Variable": "RTPAUDIOQOSJITTERBRIDGED", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010004-00000006", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "content": ""}, - {"Event": "VarSet", "Variable": "RTPAUDIOQOSLOSS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.16", "Channel": "SIP/150010001-00000008", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "content": ""}, - {"Event": "VarSet", "Variable": "RTPAUDIOQOSLOSSBRIDGED", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010004-00000006", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "content": ""}, - {"Event": "VarSet", "Variable": "RTPAUDIOQOSRTT", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.16", "Channel": "SIP/150010001-00000008", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "content": ""}, - {"Event": "VarSet", "Variable": "RTPAUDIOQOSRTTBRIDGED", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010004-00000006", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "content": ""}, - {"Event": "VarSet", "Variable": "RTPAUDIOQOS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010004-00000006", "Value": "ssrc=391681630;themssrc=305978812;lp=84;rxjitter=0.000000;rxcount=511;txjitter=0.000087;txcount=491;rlp=0;rtt=0.000000", "content": ""}, - {"Event": "VarSet", "Variable": "RTPAUDIOQOSBRIDGED", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.16", "Channel": "SIP/150010001-00000008", "Value": "ssrc=391681630;themssrc=305978812;lp=84;rxjitter=0.000000;rxcount=511;txjitter=0.000087;txcount=491;rlp=0;rtt=0.000000", "content": ""}, - {"Event": "VarSet", "Variable": "RTPAUDIOQOSJITTER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010004-00000006", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "content": ""}, - {"Event": "VarSet", "Variable": "RTPAUDIOQOSJITTERBRIDGED", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.16", "Channel": "SIP/150010001-00000008", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "content": ""}, - {"Event": "VarSet", "Variable": "RTPAUDIOQOSLOSS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010004-00000006", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "content": ""}, - {"Event": "VarSet", "Variable": "RTPAUDIOQOSLOSSBRIDGED", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.16", "Channel": "SIP/150010001-00000008", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "content": ""}, - {"Event": "VarSet", "Variable": "RTPAUDIOQOSRTT", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010004-00000006", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "content": ""}, - {"Event": "VarSet", "Variable": "RTPAUDIOQOSRTTBRIDGED", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.16", "Channel": "SIP/150010001-00000008", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "content": ""}, - {"Uniqueid": "0f00dcaa884f-1509353024.16", "Channel": "SIP/150010001-00000008", "content": "", "Privilege": "call,all", "Event": "HangupRequest"}, - {"Bridgetype": "core", "Channel1": "SIP/150010004-00000006", "Channel2": "SIP/150010001-00000008", "Uniqueid1": "0f00dcaa884f-1509353024.15", "Privilege": "call,all", "Bridgestate": "Unlink", "content": "", "Uniqueid2": "0f00dcaa884f-1509353024.16", "CallerID1": "204", "Event": "Bridge", "CallerID2": "403"}, - {"Event": "VarSet", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010004-00000006", "Value": "6", "content": ""}, - {"Event": "VarSet", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010004-00000006", "Value": "20", "content": ""}, - {"Cause": "16", "Privilege": "call,all", "ConnectedLineNum": "", "ConnectedLineName": "", "Channel": "SIP/150010001-00000008", "content": "", "Cause-txt": "Normal Clearing", "AccountCode": "150010002", "CallerIDName": "", "Uniqueid": "0f00dcaa884f-1509353024.16", "Event": "Hangup", "CallerIDNum": "403"}, - {"Event": "VarSet", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010004-00000006", "Value": "ANSWER", "content": ""}, - {"Event": "Dial", "SubEvent": "End", "Privilege": "call,all", "UniqueID": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010004-00000006", "DialStatus": "ANSWER", "content": ""}, - {"Event": "SoftHangupRequest", "Cause": "16", "Privilege": "call,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010004-00000006", "content": ""}, - {"Event": "Newexten", "Application": "GotoIf", "Context": "handlers", "Privilege": "dialplan,all", "AppData": "0?nosip", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010004-00000006", "Extension": "onhangup", "Priority": "1", "content": ""}, - {"Event": "Newexten", "Application": "NoOp", "Context": "handlers", "Privilege": "dialplan,all", "AppData": "LOG: rtpqos: caller=172.20.0.254:59802;asterisk=0.0.0.0:11388;ssrc=391681630;themssrc=305978812;lp=84;rxjitter=0.000000;rxcount=511;txjitter=0.000087;txcount=491;rlp=0;rtt=0.000000;billsec=0", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010004-00000006", "Extension": "onhangup", "Priority": "2", "content": ""}, - {"Event": "Newexten", "Application": "GosubIf", "Context": "handlers", "Privilege": "dialplan,all", "AppData": "0?osvpi_proc_httptouch,s,1()", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010004-00000006", "Extension": "onhangup", "Priority": "3", "content": ""}, - {"Event": "VarSet", "Variable": "RTPAUDIOQOS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010004-00000006", "Value": "ssrc=391681630;themssrc=305978812;lp=84;rxjitter=0.000000;rxcount=511;txjitter=0.000087;txcount=491;rlp=0;rtt=0.000000", "content": ""}, - {"Event": "VarSet", "Variable": "RTPAUDIOQOSJITTER", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010004-00000006", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "content": ""}, - {"Event": "VarSet", "Variable": "RTPAUDIOQOSLOSS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010004-00000006", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "content": ""}, - {"Event": "VarSet", "Variable": "RTPAUDIOQOSRTT", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010004-00000006", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "content": ""}, - {"Event": "VarSet", "Variable": "RTPAUDIOQOS", "Privilege": "dialplan,all", "Uniqueid": "0f00dcaa884f-1509353024.15", "Channel": "SIP/150010004-00000006", "Value": "ssrc=391681630;themssrc=305978812;lp=84;rxjitter=0.000000;rxcount=511;txjitter=0.000087;txcount=491;rlp=0;rtt=0.000000", "content": ""}, - {"Cause": "16", "Privilege": "call,all", "ConnectedLineNum": "", "ConnectedLineName": "", "Channel": "SIP/150010004-00000006", "content": "", "Cause-txt": "Normal Clearing", "AccountCode": "150010002", "CallerIDName": "", "Uniqueid": "0f00dcaa884f-1509353024.15", "Event": "Hangup", "CallerIDNum": "204"} + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-000000ac", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "0260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3102", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-000000ac", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newstate", "Exten": "0260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3102", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "150010001", "Channel": "SIP/150010001-000000ac", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "5", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3102", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-000000ac", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "6", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3102", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-000000ac", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world_call", "Event": "NewCallerid", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "7", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3102", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31260010001@world_out-0000006d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "world_out", "Event": "Newchannel", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3105", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/+31260010001@world_out-0000006d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "world_out", "Event": "Newchannel", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3107", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-0000006d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewCallerid", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3105", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-0000006d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewAccountCode", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3105", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-0000006d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "NewConnectedLine", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3105", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-0000006d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "NewCallerid", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3107", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-0000006d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "NewAccountCode", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3107", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-0000006d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "world_out", "Event": "NewConnectedLine", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3107", "content": ""}, + {"Context": "world_out", "Event": "LocalBridge", "Exten": "+31260010001", "LocalOneAccountCode": "150010001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31260010001", "LocalOneChannel": "Local/+31260010001@world_out-0000006d;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31150010001", "LocalOneContext": "world_out", "LocalOneExten": "+31260010001", "LocalOneLanguage": "en", "LocalOneLinkedid": "f29ea68048f6-1530026204.3102", "LocalOnePriority": "1", "LocalOneUniqueid": "f29ea68048f6-1530026204.3105", "LocalOptimization": "Yes", "LocalTwoAccountCode": "150010001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31150010001", "LocalTwoChannel": "Local/+31260010001@world_out-0000006d;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31260010001", "LocalTwoContext": "world_out", "LocalTwoExten": "+31260010001", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "f29ea68048f6-1530026204.3102", "LocalTwoPriority": "1", "LocalTwoUniqueid": "f29ea68048f6-1530026204.3107", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-000000ac", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world_call", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "Local/+31260010001@world_out-0000006d;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "world_out", "DestExten": "+31260010001", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530026204.3102", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530026204.3105", "DialString": "+31260010001@world_out", "Event": "DialBegin", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "15", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3102", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/voipgrid-siproute-docker-000000ad", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3110", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000ad", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "NewCallerid", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3110", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000ad", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "NewAccountCode", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3110", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000ad", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "NewConnectedLine", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3110", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-0000006d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "SIP/voipgrid-siproute-docker-000000ad", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "voipgrid_in", "DestExten": "+31260010001", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530026204.3102", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530026204.3110", "DialString": "+31260010001@voipgrid-siproute-docker", "Event": "DialBegin", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3107", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000ad", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3110", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-0000006d;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "Newstate", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3105", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "297df4d9-011b-49cb-8ee6-3e58972a724a", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2dd685ce-adfd-4f0c-b9a9-d27475ceb5c2", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000ad", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3110", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-0000006d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "SIP/voipgrid-siproute-docker-000000ad", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "voipgrid_in", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530026204.3102", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530026204.3110", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3107", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-0000006d;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_out", "Event": "Newstate", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3107", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "3e1bca58-4ee1-4d56-b0c7-9689837e5e25", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-0000006d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "Newstate", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3105", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-000000ac", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world_call", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "+31260010001", "DestChannel": "Local/+31260010001@world_out-0000006d;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31150010001", "DestContext": "world_out", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530026204.3102", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530026204.3105", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "15", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3102", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-000000ac", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world_call", "Event": "Newstate", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "15", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3102", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1c77ca88-6fe6-4335-8812-16e419221b43", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "3e1bca58-4ee1-4d56-b0c7-9689837e5e25", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000ad", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3110", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "3e1bca58-4ee1-4d56-b0c7-9689837e5e25", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-0000006d;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_out", "Event": "BridgeEnter", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3107", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1c77ca88-6fe6-4335-8812-16e419221b43", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-0000006d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3105", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1c77ca88-6fe6-4335-8812-16e419221b43", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-000000ac", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world_call", "Event": "BridgeEnter", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "15", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3102", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1c77ca88-6fe6-4335-8812-16e419221b43", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-000000ac", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world_call", "Event": "BridgeLeave", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "15", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3102", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "3e1bca58-4ee1-4d56-b0c7-9689837e5e25", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/+31260010001@world_out-0000006d;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "voipgrid_out", "Event": "BridgeLeave", "Exten": "+31260010001", "Language": "en", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3107", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "3e1bca58-4ee1-4d56-b0c7-9689837e5e25", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-000000ac", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world_call", "Event": "BridgeEnter", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "15", "Privilege": "call,all", "SwapUniqueid": "f29ea68048f6-1530026204.3107", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3102", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1c77ca88-6fe6-4335-8812-16e419221b43", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/+31260010001@world_out-0000006d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3105", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1c77ca88-6fe6-4335-8812-16e419221b43", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/+31260010001@world_out-0000006d;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3107", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/+31260010001@world_out-0000006d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "world_out", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3105", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "2dd685ce-adfd-4f0c-b9a9-d27475ceb5c2", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-000000b0", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3156", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-000000b0", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newstate", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3156", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "150010001", "Channel": "SIP/150010001-000000b0", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "5", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3156", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-000000b0", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "6", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3156", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000006f;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3159", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000006f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3161", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000006f;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3159", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000006f;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3159", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000006f;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3159", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000070;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730152", "Language": "en", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3163", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000070;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730152", "Language": "en", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3165", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000070;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3163", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000070;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3163", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000070;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3163", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000006f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730151", "Language": "en", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3161", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000006f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730151", "Language": "en", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3161", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000006f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730151", "Language": "en", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3161", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730151", "LocalOneAccountCode": "150010001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "401", "LocalOneChannel": "Local/ID730151@osvpi_route_phoneaccount-0000006f;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Andrew Garza", "LocalOneConnectedLineNum": "201", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "401", "LocalOneLanguage": "en", "LocalOneLinkedid": "f29ea68048f6-1530026216.3156", "LocalOnePriority": "1", "LocalOneUniqueid": "f29ea68048f6-1530026216.3159", "LocalOptimization": "Yes", "LocalTwoAccountCode": "150010001", "LocalTwoCallerIDName": "Andrew Garza", "LocalTwoCallerIDNum": "201", "LocalTwoChannel": "Local/ID730151@osvpi_route_phoneaccount-0000006f;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "401", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730151", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "f29ea68048f6-1530026216.3156", "LocalTwoPriority": "1", "LocalTwoUniqueid": "f29ea68048f6-1530026216.3161", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-000000b0", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-0000006f;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "401", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530026216.3156", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530026216.3159", "DialString": "ID730151@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3156", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000070;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730152", "Language": "en", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3165", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000070;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730152", "Language": "en", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3165", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000070;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730152", "Language": "en", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3165", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730152", "LocalOneAccountCode": "150010001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "401", "LocalOneChannel": "Local/ID730152@osvpi_route_phoneaccount-00000070;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Andrew Garza", "LocalOneConnectedLineNum": "201", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "401", "LocalOneLanguage": "en", "LocalOneLinkedid": "f29ea68048f6-1530026216.3156", "LocalOnePriority": "1", "LocalOneUniqueid": "f29ea68048f6-1530026216.3163", "LocalOptimization": "Yes", "LocalTwoAccountCode": "150010001", "LocalTwoCallerIDName": "Andrew Garza", "LocalTwoCallerIDNum": "201", "LocalTwoChannel": "Local/ID730152@osvpi_route_phoneaccount-00000070;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "401", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730152", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "f29ea68048f6-1530026216.3156", "LocalTwoPriority": "1", "LocalTwoUniqueid": "f29ea68048f6-1530026216.3165", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-000000b0", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-00000070;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "401", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530026216.3156", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530026216.3163", "DialString": "ID730152@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3156", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010002-000000b1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3168", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010002-000000b1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3168", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010002-000000b1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026216.3156", "OldAccountCode": "150010002", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3168", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010002-000000b1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3168", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000006f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "SIP/150010002-000000b1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "401", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530026216.3156", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530026216.3168", "DialString": "150010002/150010002/172.20.0.13!!201", "Event": "DialBegin", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3161", "content": ""}, + {"AccountCode": "150010003", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010003-000000b2", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3171", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010003-000000b2", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3171", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010003-000000b2", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026216.3156", "OldAccountCode": "150010003", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3171", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010003-000000b2", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3171", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000070;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "SIP/150010003-000000b2", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "401", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530026216.3156", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530026216.3171", "DialString": "150010003/150010003/172.20.0.13!!201", "Event": "DialBegin", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3165", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010002-000000b1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3168", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000006f;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3159", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010003-000000b2", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3171", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000070;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3163", "content": ""}, + {"DestApp": "Dial", "DestType": "App", "Event": "AttendedTransfer", "IsExternal": "No", "OrigBridgeCreator": "", "OrigBridgeName": "", "OrigBridgeNumChannels": "2", "OrigBridgeTechnology": "simple_bridge", "OrigBridgeType": "basic", "OrigBridgeUniqueid": "3e1bca58-4ee1-4d56-b0c7-9689837e5e25", "OrigBridgeVideoSourceMode": "none", "OrigTransfererAccountCode": "150010001", "OrigTransfererCallerIDName": "", "OrigTransfererCallerIDNum": "+31150010001", "OrigTransfererChannel": "SIP/150010001-000000ac", "OrigTransfererChannelState": "6", "OrigTransfererChannelStateDesc": "Up", "OrigTransfererConnectedLineName": "", "OrigTransfererConnectedLineNum": "", "OrigTransfererContext": "osvpi_world_call", "OrigTransfererExten": "+31260010001", "OrigTransfererLanguage": "nl", "OrigTransfererLinkedid": "f29ea68048f6-1530026204.3102", "OrigTransfererPriority": "15", "OrigTransfererUniqueid": "f29ea68048f6-1530026204.3102", "Privilege": "call,all", "Result": "Success", "SecondTransfererAccountCode": "150010001", "SecondTransfererCallerIDName": "Andrew Garza", "SecondTransfererCallerIDNum": "201", "SecondTransfererChannel": "SIP/150010001-000000b0", "SecondTransfererChannelState": "4", "SecondTransfererChannelStateDesc": "Ring", "SecondTransfererConnectedLineName": "", "SecondTransfererConnectedLineNum": "", "SecondTransfererContext": "osvpi_account_call_int", "SecondTransfererExten": "401", "SecondTransfererLanguage": "nl", "SecondTransfererLinkedid": "f29ea68048f6-1530026216.3156", "SecondTransfererPriority": "12", "SecondTransfererUniqueid": "f29ea68048f6-1530026216.3156", "SystemName": "f29ea68048f6", "TransfereeAccountCode": "150010001", "TransfereeCallerIDName": "", "TransfereeCallerIDNum": "+31260010001", "TransfereeChannel": "SIP/voipgrid-siproute-docker-000000ad", "TransfereeChannelState": "6", "TransfereeChannelStateDesc": "Up", "TransfereeConnectedLineName": "", "TransfereeConnectedLineNum": "+31150010001", "TransfereeContext": "voipgrid_in", "TransfereeExten": "", "TransfereeLanguage": "nl", "TransfereeLinkedid": "f29ea68048f6-1530026204.3102", "TransfereePriority": "1", "TransfereeUniqueid": "f29ea68048f6-1530026204.3110", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "3e1bca58-4ee1-4d56-b0c7-9689837e5e25", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-000000ac", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world_call", "Event": "BridgeLeave", "Exten": "+31260010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "15", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3102", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "3e1bca58-4ee1-4d56-b0c7-9689837e5e25", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000ad", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3110", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "3e1bca58-4ee1-4d56-b0c7-9689837e5e25", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/150010001-000000b0", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-00000070;1", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "401", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530026216.3156", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530026216.3163", "DialStatus": "NOANSWER", "Event": "DialEnd", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3156", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000ad", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-00000070;1", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "401", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530026216.3156", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530026216.3163", "DialString": "ID730152@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3110", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/150010001-000000b0", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-0000006f;1", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "401", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530026216.3156", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530026216.3159", "DialStatus": "NOANSWER", "Event": "DialEnd", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3156", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000ad", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "voipgrid_in", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-0000006f;1", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "401", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530026216.3156", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530026216.3159", "DialString": "ID730151@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3110", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000ad", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "NewConnectedLine", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3110", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000006f;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3159", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010001-000000b0", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3156", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000070;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3163", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010001-000000ac", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3102", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010002-000000b1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3168", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010003-000000b2", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3171", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010002-000000b1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3168", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000006f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "Event": "NewCallerid", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3161", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000006f;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "SIP/150010002-000000b1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530026216.3156", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530026216.3168", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3161", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000006f;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3161", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000006f;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3159", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000ad", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-00000070;1", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "401", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530026216.3156", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530026216.3163", "DialStatus": "CANCEL", "Event": "DialEnd", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3110", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "e7f492e5-9768-429c-a2ce-a676e2cad08c", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Cause": "26", "Cause-txt": "Answered elsewhere", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000070;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3163", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000070;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "SIP/150010003-000000b2", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "401", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530026216.3156", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530026216.3171", "DialStatus": "CANCEL", "Event": "DialEnd", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3165", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Cause": "26", "Cause-txt": "Answered elsewhere", "Channel": "SIP/150010003-000000b2", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Hangup", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3171", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "e7f492e5-9768-429c-a2ce-a676e2cad08c", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010002-000000b1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3168", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000070;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "handlers", "Event": "NewCallerid", "Exten": "onhangup", "Language": "en", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3165", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "e7f492e5-9768-429c-a2ce-a676e2cad08c", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000006f;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3161", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "26", "Cause-txt": "Answered elsewhere", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000070;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3165", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000ad", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-0000006f;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530026216.3156", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530026216.3159", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3110", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "9f9ee378-5ef8-470e-b861-51ba171fb600", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "9f9ee378-5ef8-470e-b861-51ba171fb600", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000006f;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3159", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "9f9ee378-5ef8-470e-b861-51ba171fb600", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000ad", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3110", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "9f9ee378-5ef8-470e-b861-51ba171fb600", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000ad", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3110", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "e7f492e5-9768-429c-a2ce-a676e2cad08c", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000006f;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3161", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "e7f492e5-9768-429c-a2ce-a676e2cad08c", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000ad", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "12", "Privilege": "call,all", "SwapUniqueid": "f29ea68048f6-1530026216.3161", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3110", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "9f9ee378-5ef8-470e-b861-51ba171fb600", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000006f;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3159", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "9f9ee378-5ef8-470e-b861-51ba171fb600", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000006f;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3159", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000006f;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "f29ea68048f6-1530026216.3156", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3161", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "e7f492e5-9768-429c-a2ce-a676e2cad08c", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010002-000000b1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3168", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "e7f492e5-9768-429c-a2ce-a676e2cad08c", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000ad", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3110", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "e7f492e5-9768-429c-a2ce-a676e2cad08c", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010002-000000b1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026216.3168", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/voipgrid-siproute-docker-000000ad", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "f29ea68048f6-1530026204.3102", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026204.3110", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "297df4d9-011b-49cb-8ee6-3e58972a724a", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""} ] diff --git a/tests/fixtures/xfer_blonde/xfer_blonde_group_b.json b/tests/fixtures/xfer_blonde/xfer_blonde_group_b.json index 440fe4d..88b8e8c 100644 --- a/tests/fixtures/xfer_blonde/xfer_blonde_group_b.json +++ b/tests/fixtures/xfer_blonde/xfer_blonde_group_b.json @@ -1,797 +1,132 @@ [ - {"Event": "FullyBooted", "Status": "Fully Booted", "Privilege": "system,all", "content": ""}, - {"ChannelStateDesc": "Down", "Channel": "SIP/150010002-0000001f", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Event": "Newchannel", "AccountCode": "150010002", "Exten": "204", "Privilege": "call,all", "CallerIDName": "Bob", "ChannelState": "0", "CallerIDNum": "150010002", "Context": "osvpi_account"}, - {"Variable": "SIPURI", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "sip:150010002@10.13.36.116:5061", "Event": "VarSet"}, - {"Variable": "SIPDOMAIN", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "10.13.37.110", "Event": "VarSet"}, - {"Variable": "SIPCALLID", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "8b29a9a2-fa0dbfb4@10.13.36.116", "Event": "VarSet"}, - {"Variable": "__client_id", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "15001", "Event": "VarSet"}, - {"Variable": "__account_id", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "150010002", "Event": "VarSet"}, - {"Variable": "__record_call", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "no", "Event": "VarSet"}, - {"Variable": "__intprefix", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "31", "Event": "VarSet"}, - {"Variable": "__limit_account", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "4", "Event": "VarSet"}, - {"Variable": "__limit_client", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "0", "Event": "VarSet"}, - {"Variable": "__hide_ext_cliname", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "1", "Event": "VarSet"}, - {"Variable": "__TRANSFER_CONTEXT", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "osvpi_account_transfer", "Event": "VarSet"}, - {"ConnectedLineNum": "", "Event": "Newstate", "ChannelStateDesc": "Ring", "Channel": "SIP/150010002-0000001f", "Privilege": "call,all", "content": "", "ChannelState": "4", "CallerIDName": "Bob", "CallerIDNum": "150010002", "Uniqueid": "0f00dcaa884f-1509120252.74", "ConnectedLineName": ""}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account", "AppData": "0?GotoIf(0?osvpi_proc_hangup_insecure,204,1)", "Application": "ExecIf"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "2", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account", "AppData": "osvpi_proc_check_forwards,s,1", "Application": "Gosub"}, - {"Variable": "LOCAL(ARGC)", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "s", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_check_forwards", "AppData": "0?check,1", "Application": "GotoIf"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "s", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "2", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_check_forwards", "AppData": "LOCAL(tmp)=70", "Application": "Set"}, - {"Variable": "LOCAL(tmp)", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "70", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "s", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "3", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_check_forwards", "AppData": "0?Goto(init,1)", "Application": "ExecIf"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "s", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "4", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_check_forwards", "AppData": "1?Goto(init,1)", "Application": "ExecIf"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "init", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_check_forwards", "AppData": "MASTER_CHANNEL(SIP_MAX_FORWARDS)=16", "Application": "Set"}, - {"Variable": "SIP_MAX_FORWARDS", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "16", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "init", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "2", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_check_forwards", "AppData": "DEBUG: MaxForwards: initialized to: 16", "Application": "NoOp"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "init", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "3", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_check_forwards", "AppData": "", "Application": "Return"}, - {"Variable": "GOSUB_RETVAL", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "3", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account", "AppData": "0?osvpi_account_transfer,204,1", "Application": "GotoIf"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "4", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account", "AppData": "ENTRY POINT username=150010002,ip=172.20.0.13/172.20.0.13,from=sip:150010002@10.13.37.110,contact=sip:150010002@10.13.36.116:5061,ua=Cisco/SPA504G-7.5.3,name=Bob,num=150010002,pres=allowed_not_screened", "Application": "NoOp"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "5", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account", "AppData": "is_transfer=0", "Application": "Set"}, - {"Variable": "is_transfer", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "6", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account", "AppData": "CDR(amaflags)=BILLING", "Application": "Set"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "7", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account", "AppData": "user_privacy=0", "Application": "Set"}, - {"Variable": "user_privacy", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "8", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account", "AppData": "1?Set(__supports_progress=1)", "Application": "ExecIf"}, - {"Variable": "__supports_progress", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "1", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "9", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account", "AppData": "osvpi_proc_record_call,s-no,1(out,15001,150010002)", "Application": "Gosub"}, - {"Variable": "LOCAL(ARG1)", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "out", "Event": "VarSet"}, - {"Variable": "LOCAL(ARG2)", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "15001", "Event": "VarSet"}, - {"Variable": "LOCAL(ARG3)", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "150010002", "Event": "VarSet"}, - {"Variable": "LOCAL(ARGC)", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "3", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "s-no", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_record_call", "AppData": "", "Application": "Return"}, - {"Variable": "GOSUB_RETVAL", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "10", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account", "AppData": "l_tmp=", "Application": "Set"}, - {"Variable": "l_tmp", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "11", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account", "AppData": "1?Set(l_tmp=)", "Application": "ExecIf"}, - {"Variable": "l_tmp", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "12", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account", "AppData": "1?checkprivacy", "Application": "GotoIf"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "16", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account", "AppData": "0?Set(CALLERID(pres)=allowed_passed_screen)", "Application": "ExecIf"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "17", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account", "AppData": "0?Set(CALLERID(pres)=prohib_passed_screen)", "Application": "ExecIf"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "18", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account", "AppData": "0?Set(CHANNEL(musicclass)=)", "Application": "ExecIf"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "19", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account", "AppData": "1?continue", "Application": "GotoIf"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "22", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account", "AppData": "osvpi_proc_set_i18n_region,31,1", "Application": "Gosub"}, - {"Variable": "LOCAL(ARGC)", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "31", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_set_i18n_region", "AppData": "i18n_region=NL", "Application": "Set"}, - {"Variable": "i18n_region", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "NL", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "31", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "2", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_set_i18n_region", "AppData": "", "Application": "Return"}, - {"Variable": "GOSUB_RETVAL", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "23", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account", "AppData": "osvpi_account_emergency_NL,204,1", "Application": "Goto"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account_emergency_NL", "AppData": "osvpi_account_no_emergency,204,1", "Application": "Goto"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account_no_emergency", "AppData": "osvpi_account,204,no-emergency", "Application": "Goto"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "24", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account", "AppData": "osvpi_account_clean,204,1", "Application": "Goto"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account_clean", "AppData": "return=osvpi_account_clean", "Application": "Set"}, - {"Variable": "return", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "osvpi_account_clean", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "2", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account_clean", "AppData": "osvpi_return_to_canonical,31i204,1", "Application": "Goto"}, - {"Variable": "INVALID_EXTEN", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "31i204", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "i", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_return_to_canonical", "AppData": "osvpi_account_clean,204,local", "Application": "Goto"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "3", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account_clean", "AppData": "0?extern", "Application": "GotoIf"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "4", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account_clean", "AppData": "osvpi_proc_set_callerid,204,1(150010002,0,0)", "Application": "Gosub"}, - {"Variable": "LOCAL(ARG1)", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "150010002", "Event": "VarSet"}, - {"Variable": "LOCAL(ARG2)", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "0", "Event": "VarSet"}, - {"Variable": "LOCAL(ARG3)", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "0", "Event": "VarSet"}, - {"Variable": "LOCAL(ARGC)", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "3", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_set_callerid", "AppData": "0?done", "Application": "GotoIf"}, - {"Variable": "ODBCROWS", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "1", "Event": "VarSet"}, - {"Variable": "ODBCSTATUS", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "SUCCESS", "Event": "VarSet"}, - {"Variable": "~ODBCFIELDS~", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "set,privacy,name,number_int,number_ext", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "2", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_set_callerid", "AppData": "ARRAY(LOCAL(set),LOCAL(privacy),LOCAL(name),LOCAL(number_int),LOCAL(number_ext))=1,0,David Meadows,202,+31150010002", "Application": "Set"}, - {"Variable": "LOCAL(set)", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "1", "Event": "VarSet"}, - {"Variable": "LOCAL(privacy)", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "0", "Event": "VarSet"}, - {"Variable": "LOCAL(name)", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "David Meadows", "Event": "VarSet"}, - {"Variable": "LOCAL(number_int)", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "202", "Event": "VarSet"}, - {"Variable": "LOCAL(number_ext)", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "+31150010002", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "3", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_set_callerid", "AppData": "0?presentation", "Application": "GotoIf"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "4", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_set_callerid", "AppData": "CALLERID(pres)=allowed_passed_screen", "Application": "Set"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "5", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_set_callerid", "AppData": "CALLERID(name)=David Meadows", "Application": "Set"}, - {"CallerIDName": "David Meadows", "Channel": "SIP/150010002-0000001f", "Privilege": "call,all", "content": "", "CallerIDNum": "150010002", "Uniqueid": "0f00dcaa884f-1509120252.74", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "Event": "NewCallerid"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "6", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_set_callerid", "AppData": "CALLERID(num)=202", "Application": "Set"}, - {"CallerIDName": "David Meadows", "Channel": "SIP/150010002-0000001f", "Privilege": "call,all", "content": "", "CallerIDNum": "202", "Uniqueid": "0f00dcaa884f-1509120252.74", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "Event": "NewCallerid"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "7", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_set_callerid", "AppData": "0?Set(CALLERID(pres)=prohib_passed_screen)", "Application": "ExecIf"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "8", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_set_callerid", "AppData": "CALLERID(ANI)=202", "Application": "Set"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "9", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_set_callerid", "AppData": "osvpi_proc_set_callerid_internal,204,1", "Application": "Gosub"}, - {"Variable": "LOCAL(ARG1)", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "", "Event": "VarSet"}, - {"Variable": "LOCAL(ARG2)", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "", "Event": "VarSet"}, - {"Variable": "LOCAL(ARG3)", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "", "Event": "VarSet"}, - {"Variable": "LOCAL(ARGC)", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_set_callerid_internal", "AppData": "1?nop", "Application": "GotoIf"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "5", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_set_callerid_internal", "AppData": "0?Set(CALLERID(ANI)=20)", "Application": "ExecIf"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "6", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_set_callerid_internal", "AppData": "", "Application": "Return"}, - {"Variable": "GOSUB_RETVAL", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "10", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_set_callerid", "AppData": "", "Application": "Return"}, - {"Variable": "GOSUB_RETVAL", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "5", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account_clean", "AppData": "3?osvpi_account_call_int,204,1:i,1", "Application": "GotoIf"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account_call_int", "AppData": "osvpi_proc_check_limits,204,1", "Application": "Gosub"}, - {"Variable": "LOCAL(ARGC)", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_check_limits", "AppData": "DEBUG: call_limit: client 0/0 and account 0/4", "Application": "NoOp"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "2", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_check_limits", "AppData": "0?osvpi_handle_limit,204,client", "Application": "GotoIf"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "3", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_check_limits", "AppData": "0?osvpi_handle_limit,204,account", "Application": "GotoIf"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "4", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_check_limits", "AppData": "GROUP(account_lim)=150010002", "Application": "Set"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "5", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_check_limits", "AppData": "GROUP(client_lim)=15001", "Application": "Set"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "6", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_check_limits", "AppData": "", "Application": "Return"}, - {"Variable": "GOSUB_RETVAL", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "2", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account_call_int", "AppData": "osvpi_proc_check_recurse,204,1(15001)", "Application": "Gosub"}, - {"Variable": "LOCAL(ARG1)", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "15001", "Event": "VarSet"}, - {"Variable": "LOCAL(ARGC)", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "1", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_check_recurse", "AppData": "LOCAL(exten)=15001:204", "Application": "Set"}, - {"Variable": "LOCAL(exten)", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "15001:204", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "2", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_check_recurse", "AppData": "Recursion checking 15001:204 against ", "Application": "NoOp"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "3", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_check_recurse", "AppData": "LOCAL(n)=0", "Application": "Set"}, - {"Variable": "LOCAL(n)", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "4", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_check_recurse", "AppData": "LOCAL(i)=1", "Application": "Set"}, - {"Variable": "LOCAL(i)", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "1", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "5", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_check_recurse", "AppData": "1?add", "Application": "GotoIf"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "9", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_check_recurse", "AppData": "__EXTEN_LIST=15001:204 ", "Application": "Set"}, - {"Variable": "__EXTEN_LIST", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "15001:204 ", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "10", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_check_recurse", "AppData": "__EXTEN_LIST_LAST_EDIT_TIME=1509120252", "Application": "Set"}, - {"Variable": "__EXTEN_LIST_LAST_EDIT_TIME", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "1509120252", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "11", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_check_recurse", "AppData": "", "Application": "Return"}, - {"Variable": "GOSUB_RETVAL", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "3", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account_call_int", "AppData": "__ORIG_EXTEN=204", "Application": "Set"}, - {"Variable": "__ORIG_EXTEN", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "204", "Event": "VarSet"}, - {"Variable": "ODBCROWS", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "0", "Event": "VarSet"}, - {"Variable": "ODBCSTATUS", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "NODATA", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "4", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account_call_int", "AppData": "ARRAY(conference_id,user_password,admin_password,conference_language)=", "Application": "Set"}, - {"Variable": "conference_id", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "", "Event": "VarSet"}, - {"Variable": "user_password", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "", "Event": "VarSet"}, - {"Variable": "admin_password", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "", "Event": "VarSet"}, - {"Variable": "conference_language", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "5", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account_call_int", "AppData": "0?osvpi_route_conference,ID,1", "Application": "GotoIf"}, - {"Variable": "ODBCROWS", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "0", "Event": "VarSet"}, - {"Variable": "ODBCSTATUS", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "NODATA", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "6", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account_call_int", "AppData": "ARRAY(route_id,client_timezone)=", "Application": "Set"}, - {"Variable": "route_id", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "", "Event": "VarSet"}, - {"Variable": "client_timezone", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "7", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account_call_int", "AppData": "0?osvpi_route_root,204,restart", "Application": "GotoIf"}, - {"Variable": "ODBCROWS", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "0", "Event": "VarSet"}, - {"Variable": "ODBCSTATUS", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "NODATA", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "8", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account_call_int", "AppData": "ARRAY(all_extensions,limited_extensions,password,account_spy_language)=", "Application": "Set"}, - {"Variable": "all_extensions", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "", "Event": "VarSet"}, - {"Variable": "limited_extensions", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "", "Event": "VarSet"}, - {"Variable": "password", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "", "Event": "VarSet"}, - {"Variable": "account_spy_language", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "9", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account_call_int", "AppData": "0?osvpi_account_spy,204,1", "Application": "GotoIf"}, - {"Variable": "ODBCROWS", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "1", "Event": "VarSet"}, - {"Variable": "ODBCSTATUS", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "SUCCESS", "Event": "VarSet"}, - {"Variable": "~ODBCFIELDS~", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "interfaces", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "10", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account_call_int", "AppData": "ARRAY(interfaces)=Local/ID690153@osvpi_route_phoneaccount", "Application": "Set"}, - {"Variable": "interfaces", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "Local/ID690153@osvpi_route_phoneaccount", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "11", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account_call_int", "AppData": "0?osvpi_handle_unallocated,204,1", "Application": "GotoIf"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "12", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account_call_int", "AppData": "Local/ID690153@osvpi_route_phoneaccount", "Application": "Dial"}, - {"Variable": "DIALSTATUS", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "", "Event": "VarSet"}, - {"Variable": "DIALEDPEERNUMBER", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "", "Event": "VarSet"}, - {"Variable": "DIALEDPEERNAME", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "", "Event": "VarSet"}, - {"Variable": "ANSWEREDTIME", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "", "Event": "VarSet"}, - {"Variable": "DIALEDTIME", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "", "Event": "VarSet"}, - {"ChannelStateDesc": "Down", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;1", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.75", "Event": "Newchannel", "AccountCode": "", "Exten": "ID690153", "Privilege": "call,all", "CallerIDName": "", "ChannelState": "0", "CallerIDNum": "", "Context": "osvpi_route_phoneaccount"}, - {"ChannelStateDesc": "Ring", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Event": "Newchannel", "AccountCode": "", "Exten": "ID690153", "Privilege": "call,all", "CallerIDName": "", "ChannelState": "4", "CallerIDNum": "", "Context": "osvpi_route_phoneaccount"}, - {"Variable": "DIALEDPEERNUMBER", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;1", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.75", "Value": "ID690153@osvpi_route_phoneaccount", "Event": "VarSet"}, - {"CallerIDName": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;1", "Privilege": "call,all", "content": "", "CallerIDNum": "204", "Uniqueid": "0f00dcaa884f-1509120252.75", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Event": "NewCallerid"}, - {"Uniqueid2": "0f00dcaa884f-1509120252.76", "Exten": "ID690153", "Uniqueid1": "0f00dcaa884f-1509120252.75", "Privilege": "call,all", "content": "", "Channel1": "Local/ID690153@osvpi_route_phoneaccount-00000015;1", "Channel2": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Event": "LocalBridge", "LocalOptimization": "Yes", "Context": "osvpi_route_phoneaccount"}, - {"ConnectedLineNum": "", "CallerIDName": "David Meadows", "Channel": "SIP/150010002-0000001f", "content": "", "UniqueID": "0f00dcaa884f-1509120252.74", "DestUniqueID": "0f00dcaa884f-1509120252.75", "ConnectedLineName": "", "Privilege": "call,all", "Destination": "Local/ID690153@osvpi_route_phoneaccount-00000015;1", "CallerIDNum": "202", "Event": "Dial", "SubEvent": "Begin", "Dialstring": "ID690153@osvpi_route_phoneaccount"}, - {"Variable": "ODBCROWS", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "1", "Event": "VarSet"}, - {"Variable": "ODBCSTATUS", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "SUCCESS", "Event": "VarSet"}, - {"Variable": "~ODBCFIELDS~", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Extension": "ID690153", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.76", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_phoneaccount", "AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=150010004,accountid,dutch,from,,0", "Application": "Set"}, - {"Variable": "__dst_account_id", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "150010004", "Event": "VarSet"}, - {"Variable": "l_mangle_did", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "accountid", "Event": "VarSet"}, - {"Variable": "l_mangle_cli", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "dutch", "Event": "VarSet"}, - {"Variable": "l_cli_header", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "from", "Event": "VarSet"}, - {"Variable": "l_primary_pickupgroup", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "", "Event": "VarSet"}, - {"Variable": "app_account", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "0", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Extension": "ID690153", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.76", "Priority": "2", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_phoneaccount", "AppData": "0?vialer", "Application": "GotoIf"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Extension": "ID690153", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.76", "Priority": "3", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_phoneaccount", "AppData": "_PICKUPMARK=", "Application": "Set"}, - {"Variable": "_PICKUPMARK", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Extension": "ID690153", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.76", "Priority": "4", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_phoneaccount", "AppData": "l_trunk=0", "Application": "Set"}, - {"Variable": "l_trunk", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "0", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Extension": "ID690153", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.76", "Priority": "5", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_phoneaccount", "AppData": "osvpi_route_account,ID690153,1", "Application": "Goto"}, - {"Variable": "ODBCROWS", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "1", "Event": "VarSet"}, - {"Variable": "ODBCSTATUS", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "SUCCESS", "Event": "VarSet"}, - {"Variable": "~ODBCFIELDS~", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "proxy", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Extension": "ID690153", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.76", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_account", "AppData": "ARRAY(l_proxy)=172.20.0.13", "Application": "Set"}, - {"Variable": "l_proxy", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "172.20.0.13", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Extension": "ID690153", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.76", "Priority": "2", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_account", "AppData": "osvpi_proc_mangle_number,accountid,1(150010004,204)", "Application": "Gosub"}, - {"Variable": "LOCAL(ARG1)", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "150010004", "Event": "VarSet"}, - {"Variable": "LOCAL(ARG2)", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "204", "Event": "VarSet"}, - {"Variable": "LOCAL(ARGC)", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "2", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Extension": "accountid", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.76", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_mangle_number", "AppData": "MANGLED_EXTEN=150010004", "Application": "Set"}, - {"Variable": "MANGLED_EXTEN", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "150010004", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Extension": "accountid", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.76", "Priority": "2", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_mangle_number", "AppData": "", "Application": "Return"}, - {"Variable": "GOSUB_RETVAL", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Extension": "ID690153", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.76", "Priority": "3", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_account", "AppData": "l_did=150010004", "Application": "Set"}, - {"Variable": "l_did", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "150010004", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Extension": "ID690153", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.76", "Priority": "4", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_account", "AppData": "osvpi_proc_mangle_number,dutch,1(150010004,202)", "Application": "Gosub"}, - {"Variable": "LOCAL(ARG1)", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "150010004", "Event": "VarSet"}, - {"Variable": "LOCAL(ARG2)", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "202", "Event": "VarSet"}, - {"Variable": "LOCAL(ARGC)", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "2", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Extension": "dutch", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.76", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_mangle_number", "AppData": "1?fullzero,1", "Application": "GotoIf"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Extension": "fullzero", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.76", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_mangle_number", "AppData": "MANGLED_EXTEN=202", "Application": "Set"}, - {"Variable": "MANGLED_EXTEN", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "202", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Extension": "fullzero", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.76", "Priority": "2", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_mangle_number", "AppData": "", "Application": "Return"}, - {"Variable": "GOSUB_RETVAL", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Extension": "ID690153", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.76", "Priority": "5", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_account", "AppData": "l_mangle_cli_hdr=from-dutch", "Application": "Set"}, - {"Variable": "l_mangle_cli_hdr", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "from-dutch", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Extension": "ID690153", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.76", "Priority": "6", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_account", "AppData": "l_fromuser=", "Application": "Set"}, - {"Variable": "l_fromuser", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Extension": "ID690153", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.76", "Priority": "7", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_account", "AppData": "1?Set(l_fromuser=202)", "Application": "ExecIf"}, - {"Variable": "l_fromuser", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "202", "Event": "VarSet"}, - {"Variable": "ODBCROWS", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "1", "Event": "VarSet"}, - {"Variable": "ODBCSTATUS", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "SUCCESS", "Event": "VarSet"}, - {"Variable": "~ODBCFIELDS~", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "IF((SELECT 1 FROM baseaccount_account ba INNER JOIN userdestination_selecteduserdestination udsud ON udsud.phoneaccount_id = ba.id INNER JOIN userdestination_userdestination udud ON udud.id = udsud.userdestination_id INNER JOIN crm_cloudctiuser cccu O", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Extension": "ID690153", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.76", "Priority": "8", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_account", "AppData": "ARRAY(cloudcti)=0", "Application": "Set"}, - {"Variable": "cloudcti", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "0", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Extension": "ID690153", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.76", "Priority": "9", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_account", "AppData": "1?skipcloudcti", "Application": "GotoIf"}, - {"Variable": "ODBCROWS", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "1", "Event": "VarSet"}, - {"Variable": "ODBCSTATUS", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "SUCCESS", "Event": "VarSet"}, - {"Variable": "~ODBCFIELDS~", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "GROUP_CONCAT(DISTINCT(csw.url) SEPARATOR ' '),internal_number,GROUP_CONCAT(DISTINCT(ud.internal_number) SEPARATOR ' ')", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Extension": "ID690153", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.76", "Priority": "11", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_account", "AppData": "ARRAY(webhooks,accountinternalnumber,userinternalnumbers)=,204,", "Application": "Set"}, - {"Variable": "webhooks", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "", "Event": "VarSet"}, - {"Variable": "accountinternalnumber", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "204", "Event": "VarSet"}, - {"Variable": "userinternalnumbers", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Extension": "ID690153", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.76", "Priority": "13", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_account", "AppData": "osvpi_proc_proxy_out,204,1", "Application": "Goto"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.76", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_proxy_out", "AppData": "X-Accountcode: 150010004", "Application": "SIPAddHeader"}, - {"Variable": "__SIPADDHEADER01", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "X-Accountcode: 150010004", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.76", "Priority": "2", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_proxy_out", "AppData": "X-Insecure-Protection: geheim", "Application": "SIPAddHeader"}, - {"Variable": "__SIPADDHEADER02", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "X-Insecure-Protection: geheim", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.76", "Priority": "3", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_proxy_out", "AppData": "X-Mangle-Cli: from-dutch", "Application": "SIPAddHeader"}, - {"Variable": "__SIPADDHEADER03", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "X-Mangle-Cli: from-dutch", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.76", "Priority": "4", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_proxy_out", "AppData": "_dial_options_callaccept=", "Application": "Set"}, - {"Variable": "_dial_options_callaccept", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.76", "Priority": "5", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_proxy_out", "AppData": "_dial_options_callnotify=", "Application": "Set"}, - {"Variable": "_dial_options_callnotify", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.76", "Priority": "6", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_proxy_out", "AppData": "0?Set(l_proxy=opensipsfg)", "Application": "ExecIf"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.76", "Priority": "7", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_proxy_out", "AppData": "l_extra_options=", "Application": "Set"}, - {"Variable": "l_extra_options", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Extension": "204", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.76", "Priority": "8", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_proxy_out", "AppData": "SIP/150010004/150010004/172.20.0.13!!202,,", "Application": "Dial"}, - {"Variable": "DIALSTATUS", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "", "Event": "VarSet"}, - {"Variable": "DIALEDPEERNUMBER", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "", "Event": "VarSet"}, - {"Variable": "DIALEDPEERNAME", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "", "Event": "VarSet"}, - {"Variable": "ANSWEREDTIME", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "", "Event": "VarSet"}, - {"Variable": "DIALEDTIME", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "", "Event": "VarSet"}, - {"ChannelStateDesc": "Down", "Channel": "SIP/150010004-00000020", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.77", "Event": "Newchannel", "AccountCode": "150010004", "Exten": "", "Privilege": "call,all", "CallerIDName": "", "ChannelState": "0", "CallerIDNum": "", "Context": "osvpi_account"}, - {"Variable": "SIPCALLID", "Channel": "SIP/150010004-00000020", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.77", "Value": "7920378857bf67d854b3c3b238106a69@test.voipgrid.nl", "Event": "VarSet"}, - {"Variable": "__client_id", "Channel": "SIP/150010004-00000020", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.77", "Value": "15001", "Event": "VarSet"}, - {"Variable": "__account_id", "Channel": "SIP/150010004-00000020", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.77", "Value": "150010004", "Event": "VarSet"}, - {"Variable": "__record_call", "Channel": "SIP/150010004-00000020", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.77", "Value": "no", "Event": "VarSet"}, - {"Variable": "__intprefix", "Channel": "SIP/150010004-00000020", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.77", "Value": "31", "Event": "VarSet"}, - {"Variable": "__limit_account", "Channel": "SIP/150010004-00000020", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.77", "Value": "4", "Event": "VarSet"}, - {"Variable": "__limit_client", "Channel": "SIP/150010004-00000020", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.77", "Value": "0", "Event": "VarSet"}, - {"Variable": "__hide_ext_cliname", "Channel": "SIP/150010004-00000020", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.77", "Value": "1", "Event": "VarSet"}, - {"Variable": "__TRANSFER_CONTEXT", "Channel": "SIP/150010004-00000020", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.77", "Value": "osvpi_account_transfer", "Event": "VarSet"}, - {"Variable": "DIALEDPEERNUMBER", "Channel": "SIP/150010004-00000020", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.77", "Value": "150010004/150010004/172.20.0.13!!202", "Event": "VarSet"}, - {"CallerIDName": "", "Channel": "SIP/150010004-00000020", "Privilege": "call,all", "content": "", "CallerIDNum": "204", "Uniqueid": "0f00dcaa884f-1509120252.77", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Event": "NewCallerid"}, - {"ConnectedLineNum": "204", "CallerIDName": "David Meadows", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "content": "", "UniqueID": "0f00dcaa884f-1509120252.76", "DestUniqueID": "0f00dcaa884f-1509120252.77", "ConnectedLineName": "", "Privilege": "call,all", "Destination": "SIP/150010004-00000020", "CallerIDNum": "202", "Event": "Dial", "SubEvent": "Begin", "Dialstring": "150010004/150010004/172.20.0.13!!202"}, - {"ConnectedLineNum": "202", "Event": "Newstate", "ChannelStateDesc": "Ringing", "Channel": "SIP/150010004-00000020", "Privilege": "call,all", "content": "", "ChannelState": "5", "CallerIDName": "", "CallerIDNum": "204", "Uniqueid": "0f00dcaa884f-1509120252.77", "ConnectedLineName": "David Meadows"}, - {"ConnectedLineNum": "202", "Event": "Newstate", "ChannelStateDesc": "Ringing", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;1", "Privilege": "call,all", "content": "", "ChannelState": "5", "CallerIDName": "", "CallerIDNum": "204", "Uniqueid": "0f00dcaa884f-1509120252.75", "ConnectedLineName": "David Meadows"}, - {"ConnectedLineNum": "202", "Event": "Newstate", "ChannelStateDesc": "Up", "Channel": "SIP/150010004-00000020", "Privilege": "call,all", "content": "", "ChannelState": "6", "CallerIDName": "", "CallerIDNum": "204", "Uniqueid": "0f00dcaa884f-1509120252.77", "ConnectedLineName": "David Meadows"}, - {"Variable": "DIALSTATUS", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "ANSWER", "Event": "VarSet"}, - {"Variable": "DIALEDPEERNAME", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "SIP/150010004-00000020", "Event": "VarSet"}, - {"Variable": "DIALEDPEERNUMBER", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "150010004/150010004/172.20.0.13!!202", "Event": "VarSet"}, - {"Variable": "BRIDGEPEER", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "SIP/150010004-00000020", "Event": "VarSet"}, - {"Variable": "BRIDGEPEER", "Channel": "SIP/150010004-00000020", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.77", "Value": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Event": "VarSet"}, - {"ConnectedLineNum": "204", "Event": "Newstate", "ChannelStateDesc": "Up", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "call,all", "content": "", "ChannelState": "6", "CallerIDName": "David Meadows", "CallerIDNum": "202", "Uniqueid": "0f00dcaa884f-1509120252.76", "ConnectedLineName": ""}, - {"AccountCode": "150010002", "Channel": "SIP/150010004-00000020", "Privilege": "call,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.77", "OldAccountCode": "150010002", "Event": "NewAccountCode"}, - {"Uniqueid1": "0f00dcaa884f-1509120252.76", "Uniqueid2": "0f00dcaa884f-1509120252.77", "CallerID2": "204", "Privilege": "call,all", "content": "", "Channel1": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Channel2": "SIP/150010004-00000020", "CallerID1": "202", "Bridgestate": "Link", "Bridgetype": "core", "Event": "Bridge"}, - {"Variable": "BRIDGEPEER", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "SIP/150010004-00000020", "Event": "VarSet"}, - {"Variable": "BRIDGEPVTCALLID", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "7920378857bf67d854b3c3b238106a69@test.voipgrid.nl", "Event": "VarSet"}, - {"Variable": "BRIDGEPEER", "Channel": "SIP/150010004-00000020", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.77", "Value": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Event": "VarSet"}, - {"Variable": "BRIDGEPEER", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "SIP/150010004-00000020", "Event": "VarSet"}, - {"Variable": "BRIDGEPVTCALLID", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "7920378857bf67d854b3c3b238106a69@test.voipgrid.nl", "Event": "VarSet"}, - {"Variable": "BRIDGEPEER", "Channel": "SIP/150010004-00000020", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.77", "Value": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Event": "VarSet"}, - {"ConnectedLineNum": "202", "Event": "Newstate", "ChannelStateDesc": "Up", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;1", "Privilege": "call,all", "content": "", "ChannelState": "6", "CallerIDName": "", "CallerIDNum": "204", "Uniqueid": "0f00dcaa884f-1509120252.75", "ConnectedLineName": "David Meadows"}, - {"Variable": "DIALSTATUS", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "ANSWER", "Event": "VarSet"}, - {"Variable": "DIALEDPEERNAME", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "Local/ID690153@osvpi_route_phoneaccount-00000015;1", "Event": "VarSet"}, - {"Variable": "DIALEDPEERNUMBER", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "ID690153@osvpi_route_phoneaccount", "Event": "VarSet"}, - {"Variable": "BRIDGEPEER", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "Local/ID690153@osvpi_route_phoneaccount-00000015;1", "Event": "VarSet"}, - {"Variable": "BRIDGEPEER", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;1", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.75", "Value": "SIP/150010002-0000001f", "Event": "VarSet"}, - {"ConnectedLineNum": "", "Event": "Newstate", "ChannelStateDesc": "Up", "Channel": "SIP/150010002-0000001f", "Privilege": "call,all", "content": "", "ChannelState": "6", "CallerIDName": "David Meadows", "CallerIDNum": "202", "Uniqueid": "0f00dcaa884f-1509120252.74", "ConnectedLineName": ""}, - {"AccountCode": "150010002", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;1", "Privilege": "call,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.75", "OldAccountCode": "150010002", "Event": "NewAccountCode"}, - {"Uniqueid1": "0f00dcaa884f-1509120252.74", "Uniqueid2": "0f00dcaa884f-1509120252.75", "CallerID2": "204", "Privilege": "call,all", "content": "", "Channel1": "SIP/150010002-0000001f", "Channel2": "Local/ID690153@osvpi_route_phoneaccount-00000015;1", "CallerID1": "202", "Bridgestate": "Link", "Bridgetype": "core", "Event": "Bridge"}, - {"Variable": "BRIDGEPEER", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "Local/ID690153@osvpi_route_phoneaccount-00000015;1", "Event": "VarSet"}, - {"Variable": "BRIDGEPEER", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;1", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.75", "Value": "SIP/150010002-0000001f", "Event": "VarSet"}, - {"Variable": "BRIDGEPVTCALLID", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;1", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.75", "Value": "8b29a9a2-fa0dbfb4@10.13.36.116", "Event": "VarSet"}, - {"Variable": "BRIDGEPEER", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "Local/ID690153@osvpi_route_phoneaccount-00000015;1", "Event": "VarSet"}, - {"Variable": "BRIDGEPEER", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;1", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.75", "Value": "SIP/150010002-0000001f", "Event": "VarSet"}, - {"Variable": "BRIDGEPVTCALLID", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;1", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.75", "Value": "8b29a9a2-fa0dbfb4@10.13.36.116", "Event": "VarSet"}, - {"CloneState": "Up", "Privilege": "call,all", "content": "", "Original": "Local/ID690153@osvpi_route_phoneaccount-00000015;1", "Clone": "SIP/150010004-00000020", "OriginalState": "Up", "Event": "Masquerade"}, - {"Channel": "SIP/150010004-00000020", "Privilege": "call,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.77", "Newname": "SIP/150010004-00000020", "Event": "Rename"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;1", "Privilege": "call,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.75", "Newname": "SIP/150010004-00000020", "Event": "Rename"}, - {"Channel": "SIP/150010004-00000020", "Privilege": "call,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.77", "Newname": "Local/ID690153@osvpi_route_phoneaccount-00000015;1", "Event": "Rename"}, - {"CallerIDName": "", "Channel": "SIP/150010004-00000020", "Privilege": "call,all", "content": "", "CallerIDNum": "204", "Uniqueid": "0f00dcaa884f-1509120252.75", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Event": "NewCallerid"}, - {"Uniqueid1": "0f00dcaa884f-1509120252.76", "Uniqueid2": "0f00dcaa884f-1509120252.77", "CallerID2": "204", "Privilege": "call,all", "content": "", "Channel1": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Channel2": "Local/ID690153@osvpi_route_phoneaccount-00000015;1", "CallerID1": "202", "Bridgestate": "Unlink", "Bridgetype": "core", "Event": "Bridge"}, - {"Variable": "BRIDGEPEER", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "SIP/150010004-00000020", "Event": "VarSet"}, - {"Variable": "ANSWEREDTIME", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "0", "Event": "VarSet"}, - {"Variable": "BRIDGEPVTCALLID", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "7920378857bf67d854b3c3b238106a69@test.voipgrid.nl", "Event": "VarSet"}, - {"Variable": "DIALEDTIME", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "2", "Event": "VarSet"}, - {"Variable": "BRIDGEPEER", "Channel": "SIP/150010004-00000020", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.75", "Value": "SIP/150010002-0000001f", "Event": "VarSet"}, - {"Variable": "BRIDGEPVTCALLID", "Channel": "SIP/150010004-00000020", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.75", "Value": "8b29a9a2-fa0dbfb4@10.13.36.116", "Event": "VarSet"}, - {"Event": "HangupRequest", "Uniqueid": "0f00dcaa884f-1509120252.76", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "call,all", "content": ""}, - {"ConnectedLineNum": "202", "CallerIDName": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;1", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.77", "Event": "Hangup", "Cause": "16", "AccountCode": "150010002", "Privilege": "call,all", "Cause-txt": "Normal Clearing", "CallerIDNum": "204", "ConnectedLineName": "David Meadows"}, - {"Variable": "DIALSTATUS", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Value": "ANSWER", "Event": "VarSet"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "DialStatus": "ANSWER", "Privilege": "call,all", "content": "", "UniqueID": "0f00dcaa884f-1509120252.76", "SubEvent": "End", "Event": "Dial"}, - {"Cause": "16", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Privilege": "call,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Event": "SoftHangupRequest"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Extension": "onhangup", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.76", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "handlers", "AppData": "1?nosip", "Application": "GotoIf"}, - {"Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "Extension": "onhangup", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.76", "Priority": "3", "Privilege": "dialplan,all", "content": "", "Context": "handlers", "AppData": "0?osvpi_proc_httptouch,s,1()", "Application": "GosubIf"}, - {"ConnectedLineNum": "204", "CallerIDName": "David Meadows", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000015;2", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.76", "Event": "Hangup", "Cause": "16", "AccountCode": "150010002", "Privilege": "call,all", "Cause-txt": "Normal Clearing", "CallerIDNum": "202", "ConnectedLineName": ""}, - {"Class": "default", "Channel": "SIP/150010002-0000001f", "Privilege": "call,all", "content": "", "State": "Start", "UniqueID": "0f00dcaa884f-1509120252.74", "Event": "MusicOnHold"}, - {"ChannelStateDesc": "Down", "Channel": "SIP/150010004-00000021", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Event": "Newchannel", "AccountCode": "150010004", "Exten": "403", "Privilege": "call,all", "CallerIDName": "Dave", "ChannelState": "0", "CallerIDNum": "150010004", "Context": "osvpi_account"}, - {"Variable": "SIPURI", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "sip:150010004@10.13.36.208:5061", "Event": "VarSet"}, - {"Variable": "SIPDOMAIN", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "10.13.37.110", "Event": "VarSet"}, - {"Variable": "SIPCALLID", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "6baae92e-67ad43ee@10.13.36.208", "Event": "VarSet"}, - {"Variable": "__client_id", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "15001", "Event": "VarSet"}, - {"Variable": "__account_id", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "150010004", "Event": "VarSet"}, - {"Variable": "__record_call", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "no", "Event": "VarSet"}, - {"Variable": "__intprefix", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "31", "Event": "VarSet"}, - {"Variable": "__limit_account", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "4", "Event": "VarSet"}, - {"Variable": "__limit_client", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "0", "Event": "VarSet"}, - {"Variable": "__hide_ext_cliname", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "1", "Event": "VarSet"}, - {"Variable": "__TRANSFER_CONTEXT", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "osvpi_account_transfer", "Event": "VarSet"}, - {"ConnectedLineNum": "", "Event": "Newstate", "ChannelStateDesc": "Ring", "Channel": "SIP/150010004-00000021", "Privilege": "call,all", "content": "", "ChannelState": "4", "CallerIDName": "Dave", "CallerIDNum": "150010004", "Uniqueid": "0f00dcaa884f-1509120257.78", "ConnectedLineName": ""}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account", "AppData": "0?GotoIf(0?osvpi_proc_hangup_insecure,403,1)", "Application": "ExecIf"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "2", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account", "AppData": "osvpi_proc_check_forwards,s,1", "Application": "Gosub"}, - {"Variable": "LOCAL(ARGC)", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000021", "Extension": "s", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_check_forwards", "AppData": "0?check,1", "Application": "GotoIf"}, - {"Channel": "SIP/150010004-00000021", "Extension": "s", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "2", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_check_forwards", "AppData": "LOCAL(tmp)=70", "Application": "Set"}, - {"Variable": "LOCAL(tmp)", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "70", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000021", "Extension": "s", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "3", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_check_forwards", "AppData": "0?Goto(init,1)", "Application": "ExecIf"}, - {"Channel": "SIP/150010004-00000021", "Extension": "s", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "4", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_check_forwards", "AppData": "1?Goto(init,1)", "Application": "ExecIf"}, - {"Channel": "SIP/150010004-00000021", "Extension": "init", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_check_forwards", "AppData": "MASTER_CHANNEL(SIP_MAX_FORWARDS)=16", "Application": "Set"}, - {"Variable": "SIP_MAX_FORWARDS", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "16", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000021", "Extension": "init", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "2", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_check_forwards", "AppData": "DEBUG: MaxForwards: initialized to: 16", "Application": "NoOp"}, - {"Channel": "SIP/150010004-00000021", "Extension": "init", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "3", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_check_forwards", "AppData": "", "Application": "Return"}, - {"Variable": "GOSUB_RETVAL", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "3", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account", "AppData": "0?osvpi_account_transfer,403,1", "Application": "GotoIf"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "4", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account", "AppData": "ENTRY POINT username=150010004,ip=172.20.0.13/172.20.0.13,from=sip:150010004@10.13.37.110,contact=sip:150010004@10.13.36.208:5061,ua=Cisco/SPA504G-7.5.3,name=Dave,num=150010004,pres=allowed_not_screened", "Application": "NoOp"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "5", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account", "AppData": "is_transfer=0", "Application": "Set"}, - {"Variable": "is_transfer", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "6", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account", "AppData": "CDR(amaflags)=BILLING", "Application": "Set"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "7", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account", "AppData": "user_privacy=0", "Application": "Set"}, - {"Variable": "user_privacy", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "8", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account", "AppData": "1?Set(__supports_progress=1)", "Application": "ExecIf"}, - {"Variable": "__supports_progress", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "1", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "9", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account", "AppData": "osvpi_proc_record_call,s-no,1(out,15001,150010004)", "Application": "Gosub"}, - {"Variable": "LOCAL(ARG1)", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "out", "Event": "VarSet"}, - {"Variable": "LOCAL(ARG2)", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "15001", "Event": "VarSet"}, - {"Variable": "LOCAL(ARG3)", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "150010004", "Event": "VarSet"}, - {"Variable": "LOCAL(ARGC)", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "3", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000021", "Extension": "s-no", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_record_call", "AppData": "", "Application": "Return"}, - {"Variable": "GOSUB_RETVAL", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "10", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account", "AppData": "l_tmp=", "Application": "Set"}, - {"Variable": "l_tmp", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "11", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account", "AppData": "1?Set(l_tmp=)", "Application": "ExecIf"}, - {"Variable": "l_tmp", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "12", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account", "AppData": "1?checkprivacy", "Application": "GotoIf"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "16", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account", "AppData": "0?Set(CALLERID(pres)=allowed_passed_screen)", "Application": "ExecIf"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "17", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account", "AppData": "0?Set(CALLERID(pres)=prohib_passed_screen)", "Application": "ExecIf"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "18", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account", "AppData": "0?Set(CHANNEL(musicclass)=)", "Application": "ExecIf"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "19", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account", "AppData": "1?continue", "Application": "GotoIf"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "22", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account", "AppData": "osvpi_proc_set_i18n_region,31,1", "Application": "Gosub"}, - {"Variable": "LOCAL(ARGC)", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000021", "Extension": "31", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_set_i18n_region", "AppData": "i18n_region=NL", "Application": "Set"}, - {"Variable": "i18n_region", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "NL", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000021", "Extension": "31", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "2", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_set_i18n_region", "AppData": "", "Application": "Return"}, - {"Variable": "GOSUB_RETVAL", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "23", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account", "AppData": "osvpi_account_emergency_NL,403,1", "Application": "Goto"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account_emergency_NL", "AppData": "osvpi_account_no_emergency,403,1", "Application": "Goto"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account_no_emergency", "AppData": "osvpi_account,403,no-emergency", "Application": "Goto"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "24", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account", "AppData": "osvpi_account_clean,403,1", "Application": "Goto"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account_clean", "AppData": "return=osvpi_account_clean", "Application": "Set"}, - {"Variable": "return", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "osvpi_account_clean", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "2", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account_clean", "AppData": "osvpi_return_to_canonical,31i403,1", "Application": "Goto"}, - {"Variable": "INVALID_EXTEN", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "31i403", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000021", "Extension": "i", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_return_to_canonical", "AppData": "osvpi_account_clean,403,local", "Application": "Goto"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "3", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account_clean", "AppData": "0?extern", "Application": "GotoIf"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "4", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account_clean", "AppData": "osvpi_proc_set_callerid,403,1(150010004,0,0)", "Application": "Gosub"}, - {"Variable": "LOCAL(ARG1)", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "150010004", "Event": "VarSet"}, - {"Variable": "LOCAL(ARG2)", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "0", "Event": "VarSet"}, - {"Variable": "LOCAL(ARG3)", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "0", "Event": "VarSet"}, - {"Variable": "LOCAL(ARGC)", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "3", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_set_callerid", "AppData": "0?done", "Application": "GotoIf"}, - {"Variable": "ODBCROWS", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "1", "Event": "VarSet"}, - {"Variable": "ODBCSTATUS", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "SUCCESS", "Event": "VarSet"}, - {"Variable": "~ODBCFIELDS~", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "set,privacy,name,number_int,number_ext", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "2", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_set_callerid", "AppData": "ARRAY(LOCAL(set),LOCAL(privacy),LOCAL(name),LOCAL(number_int),LOCAL(number_ext))=1,0,Jonathan Carey,204,+31150010001", "Application": "Set"}, - {"Variable": "LOCAL(set)", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "1", "Event": "VarSet"}, - {"Variable": "LOCAL(privacy)", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "0", "Event": "VarSet"}, - {"Variable": "LOCAL(name)", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "Jonathan Carey", "Event": "VarSet"}, - {"Variable": "LOCAL(number_int)", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "204", "Event": "VarSet"}, - {"Variable": "LOCAL(number_ext)", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "+31150010001", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "3", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_set_callerid", "AppData": "0?presentation", "Application": "GotoIf"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "4", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_set_callerid", "AppData": "CALLERID(pres)=allowed_passed_screen", "Application": "Set"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "5", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_set_callerid", "AppData": "CALLERID(name)=Jonathan Carey", "Application": "Set"}, - {"CallerIDName": "Jonathan Carey", "Channel": "SIP/150010004-00000021", "Privilege": "call,all", "content": "", "CallerIDNum": "150010004", "Uniqueid": "0f00dcaa884f-1509120257.78", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "Event": "NewCallerid"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "6", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_set_callerid", "AppData": "CALLERID(num)=204", "Application": "Set"}, - {"CallerIDName": "Jonathan Carey", "Channel": "SIP/150010004-00000021", "Privilege": "call,all", "content": "", "CallerIDNum": "204", "Uniqueid": "0f00dcaa884f-1509120257.78", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "Event": "NewCallerid"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "7", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_set_callerid", "AppData": "0?Set(CALLERID(pres)=prohib_passed_screen)", "Application": "ExecIf"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "8", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_set_callerid", "AppData": "CALLERID(ANI)=204", "Application": "Set"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "9", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_set_callerid", "AppData": "osvpi_proc_set_callerid_internal,403,1", "Application": "Gosub"}, - {"Variable": "LOCAL(ARG1)", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "", "Event": "VarSet"}, - {"Variable": "LOCAL(ARG2)", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "", "Event": "VarSet"}, - {"Variable": "LOCAL(ARG3)", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "", "Event": "VarSet"}, - {"Variable": "LOCAL(ARGC)", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_set_callerid_internal", "AppData": "1?nop", "Application": "GotoIf"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "5", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_set_callerid_internal", "AppData": "0?Set(CALLERID(ANI)=20)", "Application": "ExecIf"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "6", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_set_callerid_internal", "AppData": "", "Application": "Return"}, - {"Variable": "GOSUB_RETVAL", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "10", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_set_callerid", "AppData": "", "Application": "Return"}, - {"Variable": "GOSUB_RETVAL", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "5", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account_clean", "AppData": "3?osvpi_account_call_int,403,1:i,1", "Application": "GotoIf"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account_call_int", "AppData": "osvpi_proc_check_limits,403,1", "Application": "Gosub"}, - {"Variable": "LOCAL(ARGC)", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_check_limits", "AppData": "DEBUG: call_limit: client 1/0 and account 0/4", "Application": "NoOp"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "2", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_check_limits", "AppData": "0?osvpi_handle_limit,403,client", "Application": "GotoIf"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "3", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_check_limits", "AppData": "0?osvpi_handle_limit,403,account", "Application": "GotoIf"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "4", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_check_limits", "AppData": "GROUP(account_lim)=150010004", "Application": "Set"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "5", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_check_limits", "AppData": "GROUP(client_lim)=15001", "Application": "Set"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "6", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_check_limits", "AppData": "", "Application": "Return"}, - {"Variable": "GOSUB_RETVAL", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "2", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account_call_int", "AppData": "osvpi_proc_check_recurse,403,1(15001)", "Application": "Gosub"}, - {"Variable": "LOCAL(ARG1)", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "15001", "Event": "VarSet"}, - {"Variable": "LOCAL(ARGC)", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "1", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_check_recurse", "AppData": "LOCAL(exten)=15001:403", "Application": "Set"}, - {"Variable": "LOCAL(exten)", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "15001:403", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "2", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_check_recurse", "AppData": "Recursion checking 15001:403 against ", "Application": "NoOp"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "3", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_check_recurse", "AppData": "LOCAL(n)=0", "Application": "Set"}, - {"Variable": "LOCAL(n)", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "0", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "4", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_check_recurse", "AppData": "LOCAL(i)=1", "Application": "Set"}, - {"Variable": "LOCAL(i)", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "1", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "5", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_check_recurse", "AppData": "1?add", "Application": "GotoIf"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "9", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_check_recurse", "AppData": "__EXTEN_LIST=15001:403 ", "Application": "Set"}, - {"Variable": "__EXTEN_LIST", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "15001:403 ", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "10", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_check_recurse", "AppData": "__EXTEN_LIST_LAST_EDIT_TIME=1509120257", "Application": "Set"}, - {"Variable": "__EXTEN_LIST_LAST_EDIT_TIME", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "1509120257", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "11", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_check_recurse", "AppData": "", "Application": "Return"}, - {"Variable": "GOSUB_RETVAL", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "3", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account_call_int", "AppData": "__ORIG_EXTEN=403", "Application": "Set"}, - {"Variable": "__ORIG_EXTEN", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "403", "Event": "VarSet"}, - {"Variable": "ODBCROWS", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "0", "Event": "VarSet"}, - {"Variable": "ODBCSTATUS", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "NODATA", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "4", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account_call_int", "AppData": "ARRAY(conference_id,user_password,admin_password,conference_language)=", "Application": "Set"}, - {"Variable": "conference_id", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "", "Event": "VarSet"}, - {"Variable": "user_password", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "", "Event": "VarSet"}, - {"Variable": "admin_password", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "", "Event": "VarSet"}, - {"Variable": "conference_language", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "5", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account_call_int", "AppData": "0?osvpi_route_conference,ID,1", "Application": "GotoIf"}, - {"Variable": "ODBCROWS", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "0", "Event": "VarSet"}, - {"Variable": "ODBCSTATUS", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "NODATA", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "6", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account_call_int", "AppData": "ARRAY(route_id,client_timezone)=", "Application": "Set"}, - {"Variable": "route_id", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "", "Event": "VarSet"}, - {"Variable": "client_timezone", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "7", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account_call_int", "AppData": "0?osvpi_route_root,403,restart", "Application": "GotoIf"}, - {"Variable": "ODBCROWS", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "0", "Event": "VarSet"}, - {"Variable": "ODBCSTATUS", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "NODATA", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "8", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account_call_int", "AppData": "ARRAY(all_extensions,limited_extensions,password,account_spy_language)=", "Application": "Set"}, - {"Variable": "all_extensions", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "", "Event": "VarSet"}, - {"Variable": "limited_extensions", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "", "Event": "VarSet"}, - {"Variable": "password", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "", "Event": "VarSet"}, - {"Variable": "account_spy_language", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "9", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account_call_int", "AppData": "0?osvpi_account_spy,403,1", "Application": "GotoIf"}, - {"Variable": "ODBCROWS", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "1", "Event": "VarSet"}, - {"Variable": "ODBCSTATUS", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "SUCCESS", "Event": "VarSet"}, - {"Variable": "~ODBCFIELDS~", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "interfaces", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "10", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account_call_int", "AppData": "ARRAY(interfaces)=Local/ID690150@osvpi_route_phoneaccount&Local/ID690152@osvpi_route_phoneaccount", "Application": "Set"}, - {"Variable": "interfaces", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "Local/ID690150@osvpi_route_phoneaccount&Local/ID690152@osvpi_route_phoneaccount", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "11", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account_call_int", "AppData": "0?osvpi_handle_unallocated,403,1", "Application": "GotoIf"}, - {"Channel": "SIP/150010004-00000021", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "12", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_account_call_int", "AppData": "Local/ID690150@osvpi_route_phoneaccount&Local/ID690152@osvpi_route_phoneaccount", "Application": "Dial"}, - {"Variable": "DIALSTATUS", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "", "Event": "VarSet"}, - {"Variable": "DIALEDPEERNUMBER", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "", "Event": "VarSet"}, - {"Variable": "DIALEDPEERNAME", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "", "Event": "VarSet"}, - {"Variable": "ANSWEREDTIME", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "", "Event": "VarSet"}, - {"Variable": "DIALEDTIME", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "", "Event": "VarSet"}, - {"ChannelStateDesc": "Down", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;1", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.79", "Event": "Newchannel", "AccountCode": "", "Exten": "ID690150", "Privilege": "call,all", "CallerIDName": "", "ChannelState": "0", "CallerIDNum": "", "Context": "osvpi_route_phoneaccount"}, - {"ChannelStateDesc": "Ring", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Event": "Newchannel", "AccountCode": "", "Exten": "ID690150", "Privilege": "call,all", "CallerIDName": "", "ChannelState": "4", "CallerIDNum": "", "Context": "osvpi_route_phoneaccount"}, - {"Variable": "DIALEDPEERNUMBER", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;1", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.79", "Value": "ID690150@osvpi_route_phoneaccount", "Event": "VarSet"}, - {"CallerIDName": "", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;1", "Privilege": "call,all", "content": "", "CallerIDNum": "403", "Uniqueid": "0f00dcaa884f-1509120257.79", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Event": "NewCallerid"}, - {"ChannelStateDesc": "Down", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;1", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.81", "Event": "Newchannel", "AccountCode": "", "Exten": "ID690152", "Privilege": "call,all", "CallerIDName": "", "ChannelState": "0", "CallerIDNum": "", "Context": "osvpi_route_phoneaccount"}, - {"ChannelStateDesc": "Ring", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Event": "Newchannel", "AccountCode": "", "Exten": "ID690152", "Privilege": "call,all", "CallerIDName": "", "ChannelState": "4", "CallerIDNum": "", "Context": "osvpi_route_phoneaccount"}, - {"Variable": "DIALEDPEERNUMBER", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;1", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.81", "Value": "ID690152@osvpi_route_phoneaccount", "Event": "VarSet"}, - {"CallerIDName": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;1", "Privilege": "call,all", "content": "", "CallerIDNum": "403", "Uniqueid": "0f00dcaa884f-1509120257.81", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Event": "NewCallerid"}, - {"Uniqueid2": "0f00dcaa884f-1509120257.80", "Exten": "ID690150", "Uniqueid1": "0f00dcaa884f-1509120257.79", "Privilege": "call,all", "content": "", "Channel1": "Local/ID690150@osvpi_route_phoneaccount-00000016;1", "Channel2": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Event": "LocalBridge", "LocalOptimization": "Yes", "Context": "osvpi_route_phoneaccount"}, - {"ConnectedLineNum": "", "CallerIDName": "Jonathan Carey", "Channel": "SIP/150010004-00000021", "content": "", "UniqueID": "0f00dcaa884f-1509120257.78", "DestUniqueID": "0f00dcaa884f-1509120257.79", "ConnectedLineName": "", "Privilege": "call,all", "Destination": "Local/ID690150@osvpi_route_phoneaccount-00000016;1", "CallerIDNum": "204", "Event": "Dial", "SubEvent": "Begin", "Dialstring": "ID690150@osvpi_route_phoneaccount"}, - {"Uniqueid2": "0f00dcaa884f-1509120257.82", "Exten": "ID690152", "Uniqueid1": "0f00dcaa884f-1509120257.81", "Privilege": "call,all", "content": "", "Channel1": "Local/ID690152@osvpi_route_phoneaccount-00000017;1", "Channel2": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Event": "LocalBridge", "LocalOptimization": "Yes", "Context": "osvpi_route_phoneaccount"}, - {"ConnectedLineNum": "", "CallerIDName": "Jonathan Carey", "Channel": "SIP/150010004-00000021", "content": "", "UniqueID": "0f00dcaa884f-1509120257.78", "DestUniqueID": "0f00dcaa884f-1509120257.81", "ConnectedLineName": "", "Privilege": "call,all", "Destination": "Local/ID690152@osvpi_route_phoneaccount-00000017;1", "CallerIDNum": "204", "Event": "Dial", "SubEvent": "Begin", "Dialstring": "ID690152@osvpi_route_phoneaccount"}, - {"Variable": "ODBCROWS", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "1", "Event": "VarSet"}, - {"Variable": "ODBCSTATUS", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "SUCCESS", "Event": "VarSet"}, - {"Variable": "~ODBCFIELDS~", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account", "Event": "VarSet"}, - {"Variable": "ODBCROWS", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "1", "Event": "VarSet"}, - {"Variable": "ODBCSTATUS", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "SUCCESS", "Event": "VarSet"}, - {"Variable": "~ODBCFIELDS~", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account", "Event": "VarSet"}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Extension": "ID690150", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.80", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_phoneaccount", "AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=150010001,accountid,dutch,from,,0", "Application": "Set"}, - {"Variable": "__dst_account_id", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "150010001", "Event": "VarSet"}, - {"Variable": "l_mangle_did", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "accountid", "Event": "VarSet"}, - {"Variable": "l_mangle_cli", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "dutch", "Event": "VarSet"}, - {"Variable": "l_cli_header", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "from", "Event": "VarSet"}, - {"Variable": "l_primary_pickupgroup", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "", "Event": "VarSet"}, - {"Variable": "app_account", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "0", "Event": "VarSet"}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Extension": "ID690150", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.80", "Priority": "2", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_phoneaccount", "AppData": "0?vialer", "Application": "GotoIf"}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Extension": "ID690150", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.80", "Priority": "3", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_phoneaccount", "AppData": "_PICKUPMARK=", "Application": "Set"}, - {"Variable": "_PICKUPMARK", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Extension": "ID690150", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.80", "Priority": "4", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_phoneaccount", "AppData": "l_trunk=0", "Application": "Set"}, - {"Variable": "l_trunk", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "0", "Event": "VarSet"}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Extension": "ID690150", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.80", "Priority": "5", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_phoneaccount", "AppData": "osvpi_route_account,ID690150,1", "Application": "Goto"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Extension": "ID690152", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.82", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_phoneaccount", "AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=150010003,accountid,dutch,from,,0", "Application": "Set"}, - {"Variable": "__dst_account_id", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "150010003", "Event": "VarSet"}, - {"Variable": "l_mangle_did", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "accountid", "Event": "VarSet"}, - {"Variable": "l_mangle_cli", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "dutch", "Event": "VarSet"}, - {"Variable": "l_cli_header", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "from", "Event": "VarSet"}, - {"Variable": "l_primary_pickupgroup", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "", "Event": "VarSet"}, - {"Variable": "app_account", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "0", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Extension": "ID690152", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.82", "Priority": "2", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_phoneaccount", "AppData": "0?vialer", "Application": "GotoIf"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Extension": "ID690152", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.82", "Priority": "3", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_phoneaccount", "AppData": "_PICKUPMARK=", "Application": "Set"}, - {"Variable": "_PICKUPMARK", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Extension": "ID690152", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.82", "Priority": "4", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_phoneaccount", "AppData": "l_trunk=0", "Application": "Set"}, - {"Variable": "l_trunk", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "0", "Event": "VarSet"}, - {"Variable": "ODBCROWS", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "1", "Event": "VarSet"}, - {"Variable": "ODBCSTATUS", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "SUCCESS", "Event": "VarSet"}, - {"Variable": "~ODBCFIELDS~", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "proxy", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Extension": "ID690152", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.82", "Priority": "5", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_phoneaccount", "AppData": "osvpi_route_account,ID690152,1", "Application": "Goto"}, - {"Variable": "ODBCROWS", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "1", "Event": "VarSet"}, - {"Variable": "ODBCSTATUS", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "SUCCESS", "Event": "VarSet"}, - {"Variable": "~ODBCFIELDS~", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "proxy", "Event": "VarSet"}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Extension": "ID690150", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.80", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_account", "AppData": "ARRAY(l_proxy)=172.20.0.13", "Application": "Set"}, - {"Variable": "l_proxy", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "172.20.0.13", "Event": "VarSet"}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Extension": "ID690150", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.80", "Priority": "2", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_account", "AppData": "osvpi_proc_mangle_number,accountid,1(150010001,403)", "Application": "Gosub"}, - {"Variable": "LOCAL(ARG1)", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "150010001", "Event": "VarSet"}, - {"Variable": "LOCAL(ARG2)", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "403", "Event": "VarSet"}, - {"Variable": "LOCAL(ARGC)", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "2", "Event": "VarSet"}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Extension": "accountid", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.80", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_mangle_number", "AppData": "MANGLED_EXTEN=150010001", "Application": "Set"}, - {"Variable": "MANGLED_EXTEN", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "150010001", "Event": "VarSet"}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Extension": "accountid", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.80", "Priority": "2", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_mangle_number", "AppData": "", "Application": "Return"}, - {"Variable": "GOSUB_RETVAL", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Extension": "ID690150", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.80", "Priority": "3", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_account", "AppData": "l_did=150010001", "Application": "Set"}, - {"Variable": "l_did", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "150010001", "Event": "VarSet"}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Extension": "ID690150", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.80", "Priority": "4", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_account", "AppData": "osvpi_proc_mangle_number,dutch,1(150010001,204)", "Application": "Gosub"}, - {"Variable": "LOCAL(ARG1)", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "150010001", "Event": "VarSet"}, - {"Variable": "LOCAL(ARG2)", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "204", "Event": "VarSet"}, - {"Variable": "LOCAL(ARGC)", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "2", "Event": "VarSet"}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Extension": "dutch", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.80", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_mangle_number", "AppData": "1?fullzero,1", "Application": "GotoIf"}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Extension": "fullzero", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.80", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_mangle_number", "AppData": "MANGLED_EXTEN=204", "Application": "Set"}, - {"Variable": "MANGLED_EXTEN", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "204", "Event": "VarSet"}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Extension": "fullzero", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.80", "Priority": "2", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_mangle_number", "AppData": "", "Application": "Return"}, - {"Variable": "GOSUB_RETVAL", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Extension": "ID690152", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.82", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_account", "AppData": "ARRAY(l_proxy)=172.20.0.13", "Application": "Set"}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Extension": "ID690150", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.80", "Priority": "5", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_account", "AppData": "l_mangle_cli_hdr=from-dutch", "Application": "Set"}, - {"Variable": "l_proxy", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "172.20.0.13", "Event": "VarSet"}, - {"Variable": "l_mangle_cli_hdr", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "from-dutch", "Event": "VarSet"}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Extension": "ID690150", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.80", "Priority": "6", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_account", "AppData": "l_fromuser=", "Application": "Set"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Extension": "ID690152", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.82", "Priority": "2", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_account", "AppData": "osvpi_proc_mangle_number,accountid,1(150010003,403)", "Application": "Gosub"}, - {"Variable": "l_fromuser", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "", "Event": "VarSet"}, - {"Variable": "LOCAL(ARG1)", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "150010003", "Event": "VarSet"}, - {"Variable": "LOCAL(ARG2)", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "403", "Event": "VarSet"}, - {"Variable": "LOCAL(ARGC)", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "2", "Event": "VarSet"}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Extension": "ID690150", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.80", "Priority": "7", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_account", "AppData": "1?Set(l_fromuser=204)", "Application": "ExecIf"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Extension": "accountid", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.82", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_mangle_number", "AppData": "MANGLED_EXTEN=150010003", "Application": "Set"}, - {"Variable": "MANGLED_EXTEN", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "150010003", "Event": "VarSet"}, - {"Variable": "l_fromuser", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "204", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Extension": "accountid", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.82", "Priority": "2", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_mangle_number", "AppData": "", "Application": "Return"}, - {"Variable": "GOSUB_RETVAL", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Extension": "ID690152", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.82", "Priority": "3", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_account", "AppData": "l_did=150010003", "Application": "Set"}, - {"Variable": "l_did", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "150010003", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Extension": "ID690152", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.82", "Priority": "4", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_account", "AppData": "osvpi_proc_mangle_number,dutch,1(150010003,204)", "Application": "Gosub"}, - {"Variable": "LOCAL(ARG1)", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "150010003", "Event": "VarSet"}, - {"Variable": "LOCAL(ARG2)", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "204", "Event": "VarSet"}, - {"Variable": "LOCAL(ARGC)", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "2", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Extension": "dutch", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.82", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_mangle_number", "AppData": "1?fullzero,1", "Application": "GotoIf"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Extension": "fullzero", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.82", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_mangle_number", "AppData": "MANGLED_EXTEN=204", "Application": "Set"}, - {"Variable": "MANGLED_EXTEN", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "204", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Extension": "fullzero", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.82", "Priority": "2", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_mangle_number", "AppData": "", "Application": "Return"}, - {"Variable": "GOSUB_RETVAL", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Extension": "ID690152", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.82", "Priority": "5", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_account", "AppData": "l_mangle_cli_hdr=from-dutch", "Application": "Set"}, - {"Variable": "l_mangle_cli_hdr", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "from-dutch", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Extension": "ID690152", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.82", "Priority": "6", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_account", "AppData": "l_fromuser=", "Application": "Set"}, - {"Variable": "l_fromuser", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Extension": "ID690152", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.82", "Priority": "7", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_account", "AppData": "1?Set(l_fromuser=204)", "Application": "ExecIf"}, - {"Variable": "l_fromuser", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "204", "Event": "VarSet"}, - {"Variable": "ODBCROWS", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "1", "Event": "VarSet"}, - {"Variable": "ODBCSTATUS", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "SUCCESS", "Event": "VarSet"}, - {"Variable": "~ODBCFIELDS~", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "IF((SELECT 1 FROM baseaccount_account ba INNER JOIN userdestination_selecteduserdestination udsud ON udsud.phoneaccount_id = ba.id INNER JOIN userdestination_userdestination udud ON udud.id = udsud.userdestination_id INNER JOIN crm_cloudctiuser cccu O", "Event": "VarSet"}, - {"Variable": "ODBCROWS", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "1", "Event": "VarSet"}, - {"Variable": "ODBCSTATUS", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "SUCCESS", "Event": "VarSet"}, - {"Variable": "~ODBCFIELDS~", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "IF((SELECT 1 FROM baseaccount_account ba INNER JOIN userdestination_selecteduserdestination udsud ON udsud.phoneaccount_id = ba.id INNER JOIN userdestination_userdestination udud ON udud.id = udsud.userdestination_id INNER JOIN crm_cloudctiuser cccu O", "Event": "VarSet"}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Extension": "ID690150", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.80", "Priority": "8", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_account", "AppData": "ARRAY(cloudcti)=0", "Application": "Set"}, - {"Variable": "cloudcti", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "0", "Event": "VarSet"}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Extension": "ID690150", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.80", "Priority": "9", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_account", "AppData": "1?skipcloudcti", "Application": "GotoIf"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Extension": "ID690152", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.82", "Priority": "8", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_account", "AppData": "ARRAY(cloudcti)=0", "Application": "Set"}, - {"Variable": "cloudcti", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "0", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Extension": "ID690152", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.82", "Priority": "9", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_account", "AppData": "1?skipcloudcti", "Application": "GotoIf"}, - {"Variable": "ODBCROWS", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "1", "Event": "VarSet"}, - {"Variable": "ODBCSTATUS", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "SUCCESS", "Event": "VarSet"}, - {"Variable": "~ODBCFIELDS~", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "GROUP_CONCAT(DISTINCT(csw.url) SEPARATOR ' '),internal_number,GROUP_CONCAT(DISTINCT(ud.internal_number) SEPARATOR ' ')", "Event": "VarSet"}, - {"Variable": "ODBCROWS", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "1", "Event": "VarSet"}, - {"Variable": "ODBCSTATUS", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "SUCCESS", "Event": "VarSet"}, - {"Variable": "~ODBCFIELDS~", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "GROUP_CONCAT(DISTINCT(csw.url) SEPARATOR ' '),internal_number,GROUP_CONCAT(DISTINCT(ud.internal_number) SEPARATOR ' ')", "Event": "VarSet"}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Extension": "ID690150", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.80", "Priority": "11", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_account", "AppData": "ARRAY(webhooks,accountinternalnumber,userinternalnumbers)=,201,", "Application": "Set"}, - {"Variable": "webhooks", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "", "Event": "VarSet"}, - {"Variable": "accountinternalnumber", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "201", "Event": "VarSet"}, - {"Variable": "userinternalnumbers", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Extension": "ID690150", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.80", "Priority": "13", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_account", "AppData": "osvpi_proc_proxy_out,403,1", "Application": "Goto"}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.80", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_proxy_out", "AppData": "X-Accountcode: 150010001", "Application": "SIPAddHeader"}, - {"Variable": "__SIPADDHEADER01", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "X-Accountcode: 150010001", "Event": "VarSet"}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.80", "Priority": "2", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_proxy_out", "AppData": "X-Insecure-Protection: geheim", "Application": "SIPAddHeader"}, - {"Variable": "__SIPADDHEADER02", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "X-Insecure-Protection: geheim", "Event": "VarSet"}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.80", "Priority": "3", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_proxy_out", "AppData": "X-Mangle-Cli: from-dutch", "Application": "SIPAddHeader"}, - {"Variable": "__SIPADDHEADER03", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "X-Mangle-Cli: from-dutch", "Event": "VarSet"}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.80", "Priority": "4", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_proxy_out", "AppData": "_dial_options_callaccept=", "Application": "Set"}, - {"Variable": "_dial_options_callaccept", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.80", "Priority": "5", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_proxy_out", "AppData": "_dial_options_callnotify=", "Application": "Set"}, - {"Variable": "_dial_options_callnotify", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.80", "Priority": "6", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_proxy_out", "AppData": "0?Set(l_proxy=opensipsfg)", "Application": "ExecIf"}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.80", "Priority": "7", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_proxy_out", "AppData": "l_extra_options=", "Application": "Set"}, - {"Variable": "l_extra_options", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.80", "Priority": "8", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_proxy_out", "AppData": "SIP/150010001/150010001/172.20.0.13!!204,,", "Application": "Dial"}, - {"Variable": "DIALSTATUS", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Extension": "ID690152", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.82", "Priority": "11", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_account", "AppData": "ARRAY(webhooks,accountinternalnumber,userinternalnumbers)=,203,", "Application": "Set"}, - {"Variable": "DIALEDPEERNUMBER", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "", "Event": "VarSet"}, - {"Variable": "DIALEDPEERNAME", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "", "Event": "VarSet"}, - {"Variable": "ANSWEREDTIME", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "", "Event": "VarSet"}, - {"Variable": "webhooks", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "", "Event": "VarSet"}, - {"Variable": "DIALEDTIME", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "", "Event": "VarSet"}, - {"Variable": "accountinternalnumber", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "203", "Event": "VarSet"}, - {"Variable": "userinternalnumbers", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Extension": "ID690152", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.82", "Priority": "13", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_route_account", "AppData": "osvpi_proc_proxy_out,403,1", "Application": "Goto"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.82", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_proxy_out", "AppData": "X-Accountcode: 150010003", "Application": "SIPAddHeader"}, - {"Variable": "__SIPADDHEADER01", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "X-Accountcode: 150010003", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.82", "Priority": "2", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_proxy_out", "AppData": "X-Insecure-Protection: geheim", "Application": "SIPAddHeader"}, - {"Variable": "__SIPADDHEADER02", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "X-Insecure-Protection: geheim", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.82", "Priority": "3", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_proxy_out", "AppData": "X-Mangle-Cli: from-dutch", "Application": "SIPAddHeader"}, - {"Variable": "__SIPADDHEADER03", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "X-Mangle-Cli: from-dutch", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.82", "Priority": "4", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_proxy_out", "AppData": "_dial_options_callaccept=", "Application": "Set"}, - {"Variable": "_dial_options_callaccept", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.82", "Priority": "5", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_proxy_out", "AppData": "_dial_options_callnotify=", "Application": "Set"}, - {"Variable": "_dial_options_callnotify", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.82", "Priority": "6", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_proxy_out", "AppData": "0?Set(l_proxy=opensipsfg)", "Application": "ExecIf"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.82", "Priority": "7", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_proxy_out", "AppData": "l_extra_options=", "Application": "Set"}, - {"Variable": "l_extra_options", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Extension": "403", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.82", "Priority": "8", "Privilege": "dialplan,all", "content": "", "Context": "osvpi_proc_proxy_out", "AppData": "SIP/150010003/150010003/172.20.0.13!!204,,", "Application": "Dial"}, - {"Variable": "DIALSTATUS", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "", "Event": "VarSet"}, - {"Variable": "DIALEDPEERNUMBER", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "", "Event": "VarSet"}, - {"Variable": "DIALEDPEERNAME", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "", "Event": "VarSet"}, - {"Variable": "ANSWEREDTIME", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "", "Event": "VarSet"}, - {"Variable": "DIALEDTIME", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "", "Event": "VarSet"}, - {"ChannelStateDesc": "Down", "Channel": "SIP/150010001-00000022", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.83", "Event": "Newchannel", "AccountCode": "150010001", "Exten": "", "Privilege": "call,all", "CallerIDName": "", "ChannelState": "0", "CallerIDNum": "", "Context": "osvpi_account"}, - {"Variable": "SIPCALLID", "Channel": "SIP/150010001-00000022", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.83", "Value": "79b6babf715b5b10020149710380ba3c@test.voipgrid.nl", "Event": "VarSet"}, - {"Variable": "__client_id", "Channel": "SIP/150010001-00000022", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.83", "Value": "15001", "Event": "VarSet"}, - {"Variable": "__account_id", "Channel": "SIP/150010001-00000022", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.83", "Value": "150010001", "Event": "VarSet"}, - {"ChannelStateDesc": "Down", "Channel": "SIP/150010003-00000023", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.84", "Event": "Newchannel", "AccountCode": "150010003", "Exten": "", "Privilege": "call,all", "CallerIDName": "", "ChannelState": "0", "CallerIDNum": "", "Context": "osvpi_account"}, - {"Variable": "__record_call", "Channel": "SIP/150010001-00000022", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.83", "Value": "no", "Event": "VarSet"}, - {"Variable": "__intprefix", "Channel": "SIP/150010001-00000022", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.83", "Value": "31", "Event": "VarSet"}, - {"Variable": "SIPCALLID", "Channel": "SIP/150010003-00000023", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.84", "Value": "183fb187355120401298ba885cac90d1@test.voipgrid.nl", "Event": "VarSet"}, - {"Variable": "__limit_account", "Channel": "SIP/150010001-00000022", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.83", "Value": "4", "Event": "VarSet"}, - {"Variable": "__client_id", "Channel": "SIP/150010003-00000023", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.84", "Value": "15001", "Event": "VarSet"}, - {"Variable": "__limit_client", "Channel": "SIP/150010001-00000022", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.83", "Value": "0", "Event": "VarSet"}, - {"Variable": "__account_id", "Channel": "SIP/150010003-00000023", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.84", "Value": "150010003", "Event": "VarSet"}, - {"Variable": "__hide_ext_cliname", "Channel": "SIP/150010001-00000022", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.83", "Value": "1", "Event": "VarSet"}, - {"Variable": "__record_call", "Channel": "SIP/150010003-00000023", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.84", "Value": "no", "Event": "VarSet"}, - {"Variable": "__TRANSFER_CONTEXT", "Channel": "SIP/150010001-00000022", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.83", "Value": "osvpi_account_transfer", "Event": "VarSet"}, - {"Variable": "__intprefix", "Channel": "SIP/150010003-00000023", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.84", "Value": "31", "Event": "VarSet"}, - {"Variable": "__limit_account", "Channel": "SIP/150010003-00000023", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.84", "Value": "4", "Event": "VarSet"}, - {"Variable": "DIALEDPEERNUMBER", "Channel": "SIP/150010001-00000022", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.83", "Value": "150010001/150010001/172.20.0.13!!204", "Event": "VarSet"}, - {"Variable": "__limit_client", "Channel": "SIP/150010003-00000023", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.84", "Value": "0", "Event": "VarSet"}, - {"Variable": "__hide_ext_cliname", "Channel": "SIP/150010003-00000023", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.84", "Value": "1", "Event": "VarSet"}, - {"Variable": "__TRANSFER_CONTEXT", "Channel": "SIP/150010003-00000023", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.84", "Value": "osvpi_account_transfer", "Event": "VarSet"}, - {"CallerIDName": "", "Channel": "SIP/150010001-00000022", "Privilege": "call,all", "content": "", "CallerIDNum": "403", "Uniqueid": "0f00dcaa884f-1509120257.83", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Event": "NewCallerid"}, - {"Variable": "DIALEDPEERNUMBER", "Channel": "SIP/150010003-00000023", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.84", "Value": "150010003/150010003/172.20.0.13!!204", "Event": "VarSet"}, - {"CallerIDName": "", "Channel": "SIP/150010003-00000023", "Privilege": "call,all", "content": "", "CallerIDNum": "403", "Uniqueid": "0f00dcaa884f-1509120257.84", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Event": "NewCallerid"}, - {"ConnectedLineNum": "403", "CallerIDName": "Jonathan Carey", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "content": "", "UniqueID": "0f00dcaa884f-1509120257.82", "DestUniqueID": "0f00dcaa884f-1509120257.84", "ConnectedLineName": "", "Privilege": "call,all", "Destination": "SIP/150010003-00000023", "CallerIDNum": "204", "Event": "Dial", "SubEvent": "Begin", "Dialstring": "150010003/150010003/172.20.0.13!!204"}, - {"ConnectedLineNum": "403", "CallerIDName": "Jonathan Carey", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "content": "", "UniqueID": "0f00dcaa884f-1509120257.80", "DestUniqueID": "0f00dcaa884f-1509120257.83", "ConnectedLineName": "", "Privilege": "call,all", "Destination": "SIP/150010001-00000022", "CallerIDNum": "204", "Event": "Dial", "SubEvent": "Begin", "Dialstring": "150010001/150010001/172.20.0.13!!204"}, - {"ConnectedLineNum": "204", "Event": "Newstate", "ChannelStateDesc": "Ringing", "Channel": "SIP/150010003-00000023", "Privilege": "call,all", "content": "", "ChannelState": "5", "CallerIDName": "", "CallerIDNum": "403", "Uniqueid": "0f00dcaa884f-1509120257.84", "ConnectedLineName": "Jonathan Carey"}, - {"ConnectedLineNum": "204", "Event": "Newstate", "ChannelStateDesc": "Ringing", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;1", "Privilege": "call,all", "content": "", "ChannelState": "5", "CallerIDName": "", "CallerIDNum": "403", "Uniqueid": "0f00dcaa884f-1509120257.81", "ConnectedLineName": "Jonathan Carey"}, - {"ConnectedLineNum": "204", "Event": "Newstate", "ChannelStateDesc": "Ringing", "Channel": "SIP/150010001-00000022", "Privilege": "call,all", "content": "", "ChannelState": "5", "CallerIDName": "", "CallerIDNum": "403", "Uniqueid": "0f00dcaa884f-1509120257.83", "ConnectedLineName": "Jonathan Carey"}, - {"ConnectedLineNum": "204", "Event": "Newstate", "ChannelStateDesc": "Ringing", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;1", "Privilege": "call,all", "content": "", "ChannelState": "5", "CallerIDName": "", "CallerIDNum": "403", "Uniqueid": "0f00dcaa884f-1509120257.79", "ConnectedLineName": "Jonathan Carey"}, - {"SentRTP": "40000", "FractionLost": "0", "SentPackets": "250", "content": "", "Privilege": "reporting,all", "DLSR": "22788.6890 (sec)", "SentNTP": "1509120260.2822529024", "SentOctets": "40000", "CumulativeLoss": "0", "TheirLastSR": "0", "OurSSRC": "985040646", "Event": "RTCPSent", "To": "172.20.0.254:54603", "IAJitter": "0.0000"}, - {"Variable": "SIPREFERRINGCONTEXT", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "osvpi_account", "Event": "VarSet"}, - {"Variable": "SIPREFERREDBYHDR", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "\"Dave\" ", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000020", "Privilege": "call,all", "TargetUniqueid": "0f00dcaa884f-1509120257.78", "SIP-Callid": "7920378857bf67d854b3c3b238106a69@test.voipgrid.nl", "TargetChannel": "SIP/150010004-00000021", "Uniqueid": "0f00dcaa884f-1509120252.75", "content": "", "TransferMethod": "SIP", "TransferType": "Attended", "Event": "Transfer"}, - {"Channel": "SIP/150010002-0000001f", "Privilege": "call,all", "content": "", "State": "Stop", "UniqueID": "0f00dcaa884f-1509120252.74", "Event": "MusicOnHold"}, - {"CloneState": "Up", "Privilege": "call,all", "content": "", "Original": "SIP/150010004-00000021", "Clone": "SIP/150010002-0000001f", "OriginalState": "Ring", "Event": "Masquerade"}, - {"Channel": "SIP/150010002-0000001f", "Privilege": "call,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Newname": "SIP/150010002-0000001f", "Event": "Rename"}, - {"Channel": "SIP/150010004-00000021", "Privilege": "call,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Newname": "SIP/150010002-0000001f", "Event": "Rename"}, - {"Channel": "SIP/150010002-0000001f", "Privilege": "call,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Newname": "SIP/150010004-00000021", "Event": "Rename"}, - {"CallerIDName": "David Meadows", "Channel": "SIP/150010002-0000001f", "Privilege": "call,all", "content": "", "CallerIDNum": "202", "Uniqueid": "0f00dcaa884f-1509120257.78", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "Event": "NewCallerid"}, - {"Uniqueid1": "0f00dcaa884f-1509120252.74", "Uniqueid2": "0f00dcaa884f-1509120252.75", "CallerID2": "204", "Privilege": "call,all", "content": "", "Channel1": "SIP/150010004-00000021", "Channel2": "SIP/150010004-00000020", "CallerID1": "204", "Bridgestate": "Unlink", "Bridgetype": "core", "Event": "Bridge"}, - {"Variable": "DIALEDTIME", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "6", "Event": "VarSet"}, - {"ConnectedLineNum": "202", "CallerIDName": "", "Channel": "SIP/150010004-00000020", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.75", "Event": "Hangup", "Cause": "16", "AccountCode": "150010002", "Privilege": "call,all", "Cause-txt": "Normal Clearing", "CallerIDNum": "204", "ConnectedLineName": "David Meadows"}, - {"Variable": "DIALSTATUS", "Channel": "SIP/150010004-00000021", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Value": "ANSWER", "Event": "VarSet"}, - {"Channel": "SIP/150010004-00000021", "DialStatus": "ANSWER", "Privilege": "call,all", "content": "", "UniqueID": "0f00dcaa884f-1509120252.74", "SubEvent": "End", "Event": "Dial"}, - {"Cause": "16", "Channel": "SIP/150010004-00000021", "Privilege": "call,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Event": "SoftHangupRequest"}, - {"Channel": "SIP/150010004-00000021", "Extension": "onhangup", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "handlers", "AppData": "0?nosip", "Application": "GotoIf"}, - {"Channel": "SIP/150010004-00000021", "Extension": "onhangup", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "2", "Privilege": "dialplan,all", "content": "", "Context": "handlers", "AppData": "LOG: rtpqos: caller=172.20.0.254:37448;asterisk=0.0.0.0:10374;ssrc=205469358;themssrc=0;lp=0;rxjitter=0.000000;rxcount=0;txjitter=0.000000;txcount=0;rlp=0;rtt=0.000000;billsec=0", "Application": "NoOp"}, - {"Channel": "SIP/150010004-00000021", "Extension": "onhangup", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120252.74", "Priority": "3", "Privilege": "dialplan,all", "content": "", "Context": "handlers", "AppData": "0?osvpi_proc_httptouch,s,1()", "Application": "GosubIf"}, - {"ConnectedLineNum": "", "CallerIDName": "Jonathan Carey", "Channel": "SIP/150010004-00000021", "content": "", "Uniqueid": "0f00dcaa884f-1509120252.74", "Event": "Hangup", "Cause": "16", "AccountCode": "150010002", "Privilege": "call,all", "Cause-txt": "Normal Clearing", "CallerIDNum": "204", "ConnectedLineName": ""}, - {"SentRTP": "80000", "FractionLost": "0", "SentPackets": "500", "content": "", "Privilege": "reporting,all", "DLSR": "22793.6890 (sec)", "SentNTP": "1509120265.2822938624", "SentOctets": "80000", "CumulativeLoss": "0", "TheirLastSR": "0", "OurSSRC": "37664790", "Event": "RTCPSent", "To": "172.20.0.254:54603", "IAJitter": "0.0001"}, - {"ConnectedLineNum": "202", "Event": "Newstate", "ChannelStateDesc": "Up", "Channel": "SIP/150010001-00000022", "Privilege": "call,all", "content": "", "ChannelState": "6", "CallerIDName": "", "CallerIDNum": "403", "Uniqueid": "0f00dcaa884f-1509120257.83", "ConnectedLineName": "David Meadows"}, - {"Variable": "DIALSTATUS", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "ANSWER", "Event": "VarSet"}, - {"Variable": "DIALEDPEERNAME", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "SIP/150010001-00000022", "Event": "VarSet"}, - {"Variable": "DIALEDPEERNUMBER", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "150010001/150010001/172.20.0.13!!204", "Event": "VarSet"}, - {"Variable": "BRIDGEPEER", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "SIP/150010001-00000022", "Event": "VarSet"}, - {"Variable": "BRIDGEPEER", "Channel": "SIP/150010001-00000022", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.83", "Value": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Event": "VarSet"}, - {"ConnectedLineNum": "403", "Event": "Newstate", "ChannelStateDesc": "Up", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "call,all", "content": "", "ChannelState": "6", "CallerIDName": "Jonathan Carey", "CallerIDNum": "204", "Uniqueid": "0f00dcaa884f-1509120257.80", "ConnectedLineName": ""}, - {"ConnectedLineNum": "202", "Event": "Newstate", "ChannelStateDesc": "Up", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;1", "Privilege": "call,all", "content": "", "ChannelState": "6", "CallerIDName": "", "CallerIDNum": "403", "Uniqueid": "0f00dcaa884f-1509120257.79", "ConnectedLineName": "David Meadows"}, - {"AccountCode": "150010004", "Channel": "SIP/150010001-00000022", "Privilege": "call,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.83", "OldAccountCode": "150010004", "Event": "NewAccountCode"}, - {"Uniqueid1": "0f00dcaa884f-1509120257.80", "Uniqueid2": "0f00dcaa884f-1509120257.83", "CallerID2": "403", "Privilege": "call,all", "content": "", "Channel1": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Channel2": "SIP/150010001-00000022", "CallerID1": "204", "Bridgestate": "Link", "Bridgetype": "core", "Event": "Bridge"}, - {"Variable": "BRIDGEPEER", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "SIP/150010001-00000022", "Event": "VarSet"}, - {"Variable": "BRIDGEPVTCALLID", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "79b6babf715b5b10020149710380ba3c@test.voipgrid.nl", "Event": "VarSet"}, - {"Variable": "BRIDGEPEER", "Channel": "SIP/150010001-00000022", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.83", "Value": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Event": "VarSet"}, - {"Variable": "BRIDGEPEER", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "SIP/150010001-00000022", "Event": "VarSet"}, - {"Variable": "DIALSTATUS", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "ANSWER", "Event": "VarSet"}, - {"Variable": "BRIDGEPVTCALLID", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "79b6babf715b5b10020149710380ba3c@test.voipgrid.nl", "Event": "VarSet"}, - {"Variable": "BRIDGEPEER", "Channel": "SIP/150010001-00000022", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.83", "Value": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Event": "VarSet"}, - {"Event": "HangupRequest", "Uniqueid": "0f00dcaa884f-1509120257.82", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "call,all", "content": ""}, - {"ConnectedLineNum": "202", "CallerIDName": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;1", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.81", "Event": "Hangup", "Cause": "26", "AccountCode": "150010004", "Privilege": "call,all", "Cause-txt": "Answered elsewhere", "CallerIDNum": "403", "ConnectedLineName": "David Meadows"}, - {"Variable": "DIALEDPEERNAME", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "Local/ID690150@osvpi_route_phoneaccount-00000016;1", "Event": "VarSet"}, - {"ConnectedLineNum": "202", "CallerIDName": "", "Channel": "SIP/150010003-00000023", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.84", "Event": "Hangup", "Cause": "26", "AccountCode": "150010004", "Privilege": "call,all", "Cause-txt": "Answered elsewhere", "CallerIDNum": "403", "ConnectedLineName": "David Meadows"}, - {"Variable": "DIALSTATUS", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Value": "CANCEL", "Event": "VarSet"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "DialStatus": "CANCEL", "Privilege": "call,all", "content": "", "UniqueID": "0f00dcaa884f-1509120257.82", "SubEvent": "End", "Event": "Dial"}, - {"Cause": "16", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Privilege": "call,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Event": "SoftHangupRequest"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Extension": "onhangup", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.82", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "handlers", "AppData": "1?nosip", "Application": "GotoIf"}, - {"Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "Extension": "onhangup", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.82", "Priority": "3", "Privilege": "dialplan,all", "content": "", "Context": "handlers", "AppData": "0?osvpi_proc_httptouch,s,1()", "Application": "GosubIf"}, - {"ConnectedLineNum": "403", "CallerIDName": "Jonathan Carey", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000017;2", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.82", "Event": "Hangup", "Cause": "26", "AccountCode": "150010004", "Privilege": "call,all", "Cause-txt": "Answered elsewhere", "CallerIDNum": "204", "ConnectedLineName": ""}, - {"Variable": "DIALEDPEERNUMBER", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "ID690150@osvpi_route_phoneaccount", "Event": "VarSet"}, - {"Variable": "BRIDGEPEER", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "Local/ID690150@osvpi_route_phoneaccount-00000016;1", "Event": "VarSet"}, - {"Variable": "BRIDGEPEER", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;1", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.79", "Value": "SIP/150010002-0000001f", "Event": "VarSet"}, - {"AccountCode": "150010002", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;1", "Privilege": "call,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.79", "OldAccountCode": "150010004", "Event": "NewAccountCode"}, - {"Uniqueid1": "0f00dcaa884f-1509120257.78", "Uniqueid2": "0f00dcaa884f-1509120257.79", "CallerID2": "403", "Privilege": "call,all", "content": "", "Channel1": "SIP/150010002-0000001f", "Channel2": "Local/ID690150@osvpi_route_phoneaccount-00000016;1", "CallerID1": "202", "Bridgestate": "Link", "Bridgetype": "core", "Event": "Bridge"}, - {"Variable": "BRIDGEPEER", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "Local/ID690150@osvpi_route_phoneaccount-00000016;1", "Event": "VarSet"}, - {"Variable": "BRIDGEPEER", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;1", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.79", "Value": "SIP/150010002-0000001f", "Event": "VarSet"}, - {"Variable": "BRIDGEPVTCALLID", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;1", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.79", "Value": "8b29a9a2-fa0dbfb4@10.13.36.116", "Event": "VarSet"}, - {"Variable": "BRIDGEPEER", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "Local/ID690150@osvpi_route_phoneaccount-00000016;1", "Event": "VarSet"}, - {"Variable": "BRIDGEPEER", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;1", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.79", "Value": "SIP/150010002-0000001f", "Event": "VarSet"}, - {"Variable": "BRIDGEPVTCALLID", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;1", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.79", "Value": "8b29a9a2-fa0dbfb4@10.13.36.116", "Event": "VarSet"}, - {"CloneState": "Up", "Privilege": "call,all", "content": "", "Original": "Local/ID690150@osvpi_route_phoneaccount-00000016;1", "Clone": "SIP/150010001-00000022", "OriginalState": "Up", "Event": "Masquerade"}, - {"Channel": "SIP/150010001-00000022", "Privilege": "call,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.83", "Newname": "SIP/150010001-00000022", "Event": "Rename"}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;1", "Privilege": "call,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.79", "Newname": "SIP/150010001-00000022", "Event": "Rename"}, - {"Channel": "SIP/150010001-00000022", "Privilege": "call,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.83", "Newname": "Local/ID690150@osvpi_route_phoneaccount-00000016;1", "Event": "Rename"}, - {"CallerIDName": "", "Channel": "SIP/150010001-00000022", "Privilege": "call,all", "content": "", "CallerIDNum": "403", "Uniqueid": "0f00dcaa884f-1509120257.79", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Event": "NewCallerid"}, - {"Uniqueid1": "0f00dcaa884f-1509120257.80", "Uniqueid2": "0f00dcaa884f-1509120257.83", "CallerID2": "403", "Privilege": "call,all", "content": "", "Channel1": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Channel2": "Local/ID690150@osvpi_route_phoneaccount-00000016;1", "CallerID1": "204", "Bridgestate": "Unlink", "Bridgetype": "core", "Event": "Bridge"}, - {"Variable": "BRIDGEPEER", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "SIP/150010001-00000022", "Event": "VarSet"}, - {"Variable": "BRIDGEPVTCALLID", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "79b6babf715b5b10020149710380ba3c@test.voipgrid.nl", "Event": "VarSet"}, - {"Variable": "BRIDGEPEER", "Channel": "SIP/150010001-00000022", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.79", "Value": "SIP/150010002-0000001f", "Event": "VarSet"}, - {"Variable": "ANSWEREDTIME", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "0", "Event": "VarSet"}, - {"Variable": "BRIDGEPVTCALLID", "Channel": "SIP/150010001-00000022", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.79", "Value": "8b29a9a2-fa0dbfb4@10.13.36.116", "Event": "VarSet"}, - {"Variable": "DIALEDTIME", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "11", "Event": "VarSet"}, - {"Event": "HangupRequest", "Uniqueid": "0f00dcaa884f-1509120257.80", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "call,all", "content": ""}, - {"ConnectedLineNum": "202", "CallerIDName": "", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;1", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.83", "Event": "Hangup", "Cause": "16", "AccountCode": "150010004", "Privilege": "call,all", "Cause-txt": "Normal Clearing", "CallerIDNum": "403", "ConnectedLineName": "David Meadows"}, - {"Variable": "DIALSTATUS", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Value": "ANSWER", "Event": "VarSet"}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "DialStatus": "ANSWER", "Privilege": "call,all", "content": "", "UniqueID": "0f00dcaa884f-1509120257.80", "SubEvent": "End", "Event": "Dial"}, - {"Cause": "16", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Privilege": "call,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Event": "SoftHangupRequest"}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Extension": "onhangup", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.80", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "handlers", "AppData": "1?nosip", "Application": "GotoIf"}, - {"Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "Extension": "onhangup", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.80", "Priority": "3", "Privilege": "dialplan,all", "content": "", "Context": "handlers", "AppData": "0?osvpi_proc_httptouch,s,1()", "Application": "GosubIf"}, - {"ConnectedLineNum": "403", "CallerIDName": "Jonathan Carey", "Channel": "Local/ID690150@osvpi_route_phoneaccount-00000016;2", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.80", "Event": "Hangup", "Cause": "16", "AccountCode": "150010004", "Privilege": "call,all", "Cause-txt": "Normal Clearing", "CallerIDNum": "204", "ConnectedLineName": ""}, - {"SentRTP": "101920", "FractionLost": "0", "SentPackets": "637", "content": "", "Privilege": "reporting,all", "DLSR": "22798.6890 (sec)", "SentNTP": "1509120270.2823155712", "SentOctets": "101920", "CumulativeLoss": "0", "TheirLastSR": "0", "OurSSRC": "198903939", "Event": "RTCPSent", "To": "172.20.0.254:54603", "IAJitter": "0.0002"}, - {"LastSR": "0.0000000000", "ReceptionReports": "1", "SequenceNumberCycles": "0", "FractionLost": "0", "content": "", "PacketsLost": "0", "Event": "RTCPReceived", "HighestSequence": "15321", "DLSR": "32768.0000(sec)", "Privilege": "reporting,all", "PT": "200(Sender Report)", "From": "172.20.0.254:60295", "IAJitter": "31", "SenderSSRC": "0"}, - {"SentRTP": "269745032", "FractionLost": "0", "SentPackets": "28", "content": "", "Privilege": "reporting,all", "DLSR": "1.4700 (sec)", "SentNTP": "1509120273.1845284864", "SentOctets": "4480", "CumulativeLoss": "0", "TheirLastSR": "1494188031", "OurSSRC": "32392956", "Event": "RTCPSent", "To": "172.20.0.254:60295", "IAJitter": "0.0000"}, - {"Variable": "RTPAUDIOQOS", "Channel": "SIP/150010001-00000022", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.79", "Value": "ssrc=32392956;themssrc=3088998033;lp=0;rxjitter=0.000000;rxcount=1;txjitter=0.000000;txcount=28;rlp=0;rtt=0.000000", "Event": "VarSet"}, - {"Variable": "RTPAUDIOQOSBRIDGED", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "ssrc=32392956;themssrc=3088998033;lp=0;rxjitter=0.000000;rxcount=1;txjitter=0.000000;txcount=28;rlp=0;rtt=0.000000", "Event": "VarSet"}, - {"Variable": "RTPAUDIOQOSJITTER", "Channel": "SIP/150010001-00000022", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.79", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Event": "VarSet"}, - {"Variable": "RTPAUDIOQOSJITTERBRIDGED", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Event": "VarSet"}, - {"Variable": "RTPAUDIOQOSLOSS", "Channel": "SIP/150010001-00000022", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.79", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Event": "VarSet"}, - {"Variable": "RTPAUDIOQOSLOSSBRIDGED", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Event": "VarSet"}, - {"Variable": "RTPAUDIOQOSRTT", "Channel": "SIP/150010001-00000022", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.79", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Event": "VarSet"}, - {"Variable": "RTPAUDIOQOSRTTBRIDGED", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Event": "VarSet"}, - {"Variable": "RTPAUDIOQOS", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "ssrc=198903939;themssrc=3727502898;lp=0;rxjitter=0.000000;rxcount=666;txjitter=0.000201;txcount=637;rlp=0;rtt=0.000000", "Event": "VarSet"}, - {"Variable": "RTPAUDIOQOSBRIDGED", "Channel": "SIP/150010001-00000022", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.79", "Value": "ssrc=198903939;themssrc=3727502898;lp=0;rxjitter=0.000000;rxcount=666;txjitter=0.000201;txcount=637;rlp=0;rtt=0.000000", "Event": "VarSet"}, - {"Variable": "RTPAUDIOQOSJITTER", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Event": "VarSet"}, - {"Variable": "RTPAUDIOQOSJITTERBRIDGED", "Channel": "SIP/150010001-00000022", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.79", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Event": "VarSet"}, - {"Variable": "RTPAUDIOQOSLOSS", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Event": "VarSet"}, - {"Variable": "RTPAUDIOQOSLOSSBRIDGED", "Channel": "SIP/150010001-00000022", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.79", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Event": "VarSet"}, - {"Variable": "RTPAUDIOQOSRTT", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Event": "VarSet"}, - {"Variable": "RTPAUDIOQOSRTTBRIDGED", "Channel": "SIP/150010001-00000022", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.79", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Event": "VarSet"}, - {"Event": "HangupRequest", "Uniqueid": "0f00dcaa884f-1509120257.79", "Channel": "SIP/150010001-00000022", "Privilege": "call,all", "content": ""}, - {"Uniqueid1": "0f00dcaa884f-1509120257.78", "Uniqueid2": "0f00dcaa884f-1509120257.79", "CallerID2": "403", "Privilege": "call,all", "content": "", "Channel1": "SIP/150010002-0000001f", "Channel2": "SIP/150010001-00000022", "CallerID1": "202", "Bridgestate": "Unlink", "Bridgetype": "core", "Event": "Bridge"}, - {"Variable": "ANSWEREDTIME", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "6", "Event": "VarSet"}, - {"Variable": "DIALEDTIME", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "11", "Event": "VarSet"}, - {"ConnectedLineNum": "202", "CallerIDName": "", "Channel": "SIP/150010001-00000022", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.79", "Event": "Hangup", "Cause": "16", "AccountCode": "150010004", "Privilege": "call,all", "Cause-txt": "Normal Clearing", "CallerIDNum": "403", "ConnectedLineName": "David Meadows"}, - {"Variable": "DIALSTATUS", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "ANSWER", "Event": "VarSet"}, - {"Channel": "SIP/150010002-0000001f", "DialStatus": "ANSWER", "Privilege": "call,all", "content": "", "UniqueID": "0f00dcaa884f-1509120257.78", "SubEvent": "End", "Event": "Dial"}, - {"Cause": "16", "Channel": "SIP/150010002-0000001f", "Privilege": "call,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Event": "SoftHangupRequest"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "onhangup", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "1", "Privilege": "dialplan,all", "content": "", "Context": "handlers", "AppData": "0?nosip", "Application": "GotoIf"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "onhangup", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "2", "Privilege": "dialplan,all", "content": "", "Context": "handlers", "AppData": "LOG: rtpqos: caller=172.20.0.254:54602;asterisk=0.0.0.0:16226;ssrc=198903939;themssrc=3727502898;lp=0;rxjitter=0.000000;rxcount=667;txjitter=0.001341;txcount=637;rlp=0;rtt=0.000000;billsec=0", "Application": "NoOp"}, - {"Channel": "SIP/150010002-0000001f", "Extension": "onhangup", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509120257.78", "Priority": "3", "Privilege": "dialplan,all", "content": "", "Context": "handlers", "AppData": "0?osvpi_proc_httptouch,s,1()", "Application": "GosubIf"}, - {"Variable": "RTPAUDIOQOS", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "ssrc=198903939;themssrc=3727502898;lp=0;rxjitter=0.000000;rxcount=667;txjitter=0.001341;txcount=637;rlp=0;rtt=0.000000", "Event": "VarSet"}, - {"Variable": "RTPAUDIOQOSJITTER", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Event": "VarSet"}, - {"Variable": "RTPAUDIOQOSLOSS", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Event": "VarSet"}, - {"Variable": "RTPAUDIOQOSRTT", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Event": "VarSet"}, - {"Variable": "RTPAUDIOQOS", "Channel": "SIP/150010002-0000001f", "Privilege": "dialplan,all", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Value": "ssrc=198903939;themssrc=3727502898;lp=0;rxjitter=0.000000;rxcount=667;txjitter=0.001341;txcount=637;rlp=0;rtt=0.000000", "Event": "VarSet"}, - {"ConnectedLineNum": "", "CallerIDName": "David Meadows", "Channel": "SIP/150010002-0000001f", "content": "", "Uniqueid": "0f00dcaa884f-1509120257.78", "Event": "Hangup", "Cause": "16", "AccountCode": "150010002", "Privilege": "call,all", "Cause-txt": "Normal Clearing", "CallerIDNum": "202", "ConnectedLineName": ""} + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000a7", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newchannel", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.2993", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000a7", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.2993", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000a7", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "10", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.2993", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000006a;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730150", "Language": "en", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.2996", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000006a;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730150", "Language": "en", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.2998", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000006a;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.2996", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000006a;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.2996", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000006a;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.2996", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000006a;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730150", "Language": "en", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.2998", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000006a;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730150", "Language": "en", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.2998", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000006a;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730150", "Language": "en", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.2998", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730150", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31150010001", "LocalOneChannel": "Local/ID730150@osvpi_route_phoneaccount-0000006a;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31260010001", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "+31150010001", "LocalOneLanguage": "en", "LocalOneLinkedid": "f29ea68048f6-1530026019.2993", "LocalOnePriority": "1", "LocalOneUniqueid": "f29ea68048f6-1530026019.2996", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31260010001", "LocalTwoChannel": "Local/ID730150@osvpi_route_phoneaccount-0000006a;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31150010001", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730150", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "f29ea68048f6-1530026019.2993", "LocalTwoPriority": "1", "LocalTwoUniqueid": "f29ea68048f6-1530026019.2998", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000a7", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/ID730150@osvpi_route_phoneaccount-0000006a;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "+31150010001", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530026019.2993", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530026019.2996", "DialString": "ID730150@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.2993", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010001-000000a8", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.3001", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-000000a8", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.3001", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-000000a8", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530026019.2993", "OldAccountCode": "150010001", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.3001", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-000000a8", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.3001", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000006a;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "SIP/150010001-000000a8", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "+31150010001", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530026019.2993", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530026019.3001", "DialString": "150010001/150010001/172.20.0.13!!0260010001", "Event": "DialBegin", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.2998", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-000000a8", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.3001", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000006a;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.2996", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-000000a8", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.3001", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000006a;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "SIP/150010001-000000a8", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530026019.2993", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530026019.3001", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.2998", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000006a;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.2998", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000006a;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.2996", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "82d9715d-b36b-4254-a2a6-eb15113e7c7b", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "82d9715d-b36b-4254-a2a6-eb15113e7c7b", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-000000a8", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.3001", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000a7", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/ID730150@osvpi_route_phoneaccount-0000006a;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530026019.2993", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530026019.2996", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.2993", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "82d9715d-b36b-4254-a2a6-eb15113e7c7b", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000006a;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.2998", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000a7", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.2993", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4733bb1d-cdf4-4178-9850-f9168f917cba", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "e026058d-ccd3-448f-a1bc-72152265a959", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "38d2bcc3-4251-402c-8149-e531605722e1", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4733bb1d-cdf4-4178-9850-f9168f917cba", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000006a;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.2996", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4733bb1d-cdf4-4178-9850-f9168f917cba", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000a7", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.2993", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "82d9715d-b36b-4254-a2a6-eb15113e7c7b", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-000000a8", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.3001", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4733bb1d-cdf4-4178-9850-f9168f917cba", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000006a;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.2996", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4733bb1d-cdf4-4178-9850-f9168f917cba", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-000000a8", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "f29ea68048f6-1530026019.2996", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.3001", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "82d9715d-b36b-4254-a2a6-eb15113e7c7b", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000006a;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.2998", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "82d9715d-b36b-4254-a2a6-eb15113e7c7b", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000006a;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.2996", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000006a;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.2998", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "e026058d-ccd3-448f-a1bc-72152265a959", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-000000a9", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3037", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-000000a9", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newstate", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3037", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "150010001", "Channel": "SIP/150010001-000000a9", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "5", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3037", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-000000a9", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "6", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3037", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000006b;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3040", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000006b;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3042", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000006b;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3040", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000006b;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3040", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000006b;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3040", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000006c;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730152", "Language": "en", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3044", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000006c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730152", "Language": "en", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3046", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000006c;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3044", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000006c;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3044", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000006c;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3044", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000006b;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730151", "Language": "en", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3042", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000006b;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730151", "Language": "en", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3042", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000006b;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730151", "Language": "en", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3042", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730151", "LocalOneAccountCode": "150010001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "401", "LocalOneChannel": "Local/ID730151@osvpi_route_phoneaccount-0000006b;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Andrew Garza", "LocalOneConnectedLineNum": "201", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "401", "LocalOneLanguage": "en", "LocalOneLinkedid": "f29ea68048f6-1530026028.3037", "LocalOnePriority": "1", "LocalOneUniqueid": "f29ea68048f6-1530026028.3040", "LocalOptimization": "Yes", "LocalTwoAccountCode": "150010001", "LocalTwoCallerIDName": "Andrew Garza", "LocalTwoCallerIDNum": "201", "LocalTwoChannel": "Local/ID730151@osvpi_route_phoneaccount-0000006b;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "401", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730151", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "f29ea68048f6-1530026028.3037", "LocalTwoPriority": "1", "LocalTwoUniqueid": "f29ea68048f6-1530026028.3042", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-000000a9", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-0000006b;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "401", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530026028.3037", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530026028.3040", "DialString": "ID730151@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3037", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000006c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730152", "Language": "en", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3046", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000006c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730152", "Language": "en", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3046", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000006c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730152", "Language": "en", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3046", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730152", "LocalOneAccountCode": "150010001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "401", "LocalOneChannel": "Local/ID730152@osvpi_route_phoneaccount-0000006c;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Andrew Garza", "LocalOneConnectedLineNum": "201", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "401", "LocalOneLanguage": "en", "LocalOneLinkedid": "f29ea68048f6-1530026028.3037", "LocalOnePriority": "1", "LocalOneUniqueid": "f29ea68048f6-1530026028.3044", "LocalOptimization": "Yes", "LocalTwoAccountCode": "150010001", "LocalTwoCallerIDName": "Andrew Garza", "LocalTwoCallerIDNum": "201", "LocalTwoChannel": "Local/ID730152@osvpi_route_phoneaccount-0000006c;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "401", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730152", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "f29ea68048f6-1530026028.3037", "LocalTwoPriority": "1", "LocalTwoUniqueid": "f29ea68048f6-1530026028.3046", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-000000a9", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-0000006c;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "401", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530026028.3037", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530026028.3044", "DialString": "ID730152@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3037", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010002-000000aa", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3050", "content": ""}, + {"AccountCode": "150010003", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010003-000000ab", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3052", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010002-000000aa", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3050", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010002-000000aa", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026028.3037", "OldAccountCode": "150010002", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3050", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010002-000000aa", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3050", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000006b;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "SIP/150010002-000000aa", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "401", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530026028.3037", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530026028.3050", "DialString": "150010002/150010002/172.20.0.13!!201", "Event": "DialBegin", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3042", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010003-000000ab", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3052", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010003-000000ab", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026028.3037", "OldAccountCode": "150010003", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3052", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010003-000000ab", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3052", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000006c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "SIP/150010003-000000ab", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "401", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530026028.3037", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530026028.3052", "DialString": "150010003/150010003/172.20.0.13!!201", "Event": "DialBegin", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3046", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010002-000000aa", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3050", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000006b;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3040", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010003-000000ab", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3052", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000006c;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3044", "content": ""}, + {"DestApp": "Dial", "DestType": "App", "Event": "AttendedTransfer", "IsExternal": "No", "OrigBridgeCreator": "", "OrigBridgeName": "", "OrigBridgeNumChannels": "2", "OrigBridgeTechnology": "simple_bridge", "OrigBridgeType": "basic", "OrigBridgeUniqueid": "4733bb1d-cdf4-4178-9850-f9168f917cba", "OrigBridgeVideoSourceMode": "none", "OrigTransfererAccountCode": "15001", "OrigTransfererCallerIDName": "", "OrigTransfererCallerIDNum": "+31150010001", "OrigTransfererChannel": "SIP/150010001-000000a8", "OrigTransfererChannelState": "6", "OrigTransfererChannelStateDesc": "Up", "OrigTransfererConnectedLineName": "", "OrigTransfererConnectedLineNum": "+31260010001", "OrigTransfererContext": "osvpi_account", "OrigTransfererExten": "", "OrigTransfererLanguage": "nl", "OrigTransfererLinkedid": "f29ea68048f6-1530026019.2993", "OrigTransfererPriority": "1", "OrigTransfererUniqueid": "f29ea68048f6-1530026019.3001", "Privilege": "call,all", "Result": "Success", "SecondTransfererAccountCode": "150010001", "SecondTransfererCallerIDName": "Andrew Garza", "SecondTransfererCallerIDNum": "201", "SecondTransfererChannel": "SIP/150010001-000000a9", "SecondTransfererChannelState": "4", "SecondTransfererChannelStateDesc": "Ring", "SecondTransfererConnectedLineName": "", "SecondTransfererConnectedLineNum": "", "SecondTransfererContext": "osvpi_account_call_int", "SecondTransfererExten": "401", "SecondTransfererLanguage": "nl", "SecondTransfererLinkedid": "f29ea68048f6-1530026028.3037", "SecondTransfererPriority": "12", "SecondTransfererUniqueid": "f29ea68048f6-1530026028.3037", "SystemName": "f29ea68048f6", "TransfereeAccountCode": "15001", "TransfereeCallerIDName": "", "TransfereeCallerIDNum": "+31260010001", "TransfereeChannel": "SIP/voipgrid-siproute-docker-000000a7", "TransfereeChannelState": "6", "TransfereeChannelStateDesc": "Up", "TransfereeConnectedLineName": "", "TransfereeConnectedLineNum": "", "TransfereeContext": "osvpi_route_phoneaccount_step", "TransfereeExten": "+31150010001", "TransfereeLanguage": "nl", "TransfereeLinkedid": "f29ea68048f6-1530026019.2993", "TransfereePriority": "1", "TransfereeUniqueid": "f29ea68048f6-1530026019.2993", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4733bb1d-cdf4-4178-9850-f9168f917cba", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-000000a8", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.3001", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010001-000000a8", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.3001", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4733bb1d-cdf4-4178-9850-f9168f917cba", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000a7", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.2993", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "4733bb1d-cdf4-4178-9850-f9168f917cba", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/150010001-000000a9", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-0000006c;1", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "401", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530026028.3037", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530026028.3044", "DialStatus": "NOANSWER", "Event": "DialEnd", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3037", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000a7", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-0000006c;1", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "401", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530026028.3037", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530026028.3044", "DialString": "ID730152@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.2993", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/150010001-000000a9", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-0000006b;1", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "401", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530026028.3037", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530026028.3040", "DialStatus": "NOANSWER", "Event": "DialEnd", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3037", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000a7", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-0000006b;1", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "401", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530026028.3037", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530026028.3040", "DialString": "ID730151@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.2993", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000a7", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "NewAccountCode", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026019.2993", "OldAccountCode": "15001", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.2993", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000a7", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "NewAccountCode", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026019.2993", "OldAccountCode": "150010001", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.2993", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-000000a9", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530026028.3037", "OldAccountCode": "150010001", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3037", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000006b;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3040", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000006c;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3044", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010002-000000aa", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3050", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010003-000000ab", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3052", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010001-000000a9", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3037", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010002-000000aa", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3050", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000006b;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "Event": "NewCallerid", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3042", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000006b;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "SIP/150010002-000000aa", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530026028.3037", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530026028.3050", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3042", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000006b;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3042", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000006b;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3040", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000a7", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-0000006c;1", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "401", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530026028.3037", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530026028.3044", "DialStatus": "CANCEL", "Event": "DialEnd", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.2993", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "a0915fca-7f0b-4ba0-8df8-6f3b3f359071", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Cause": "26", "Cause-txt": "Answered elsewhere", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000006c;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3044", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "a0915fca-7f0b-4ba0-8df8-6f3b3f359071", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010002-000000aa", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3050", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000a7", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-0000006b;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530026028.3037", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530026028.3040", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.2993", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000006c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "SIP/150010003-000000ab", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "401", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530026028.3037", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530026028.3052", "DialStatus": "CANCEL", "Event": "DialEnd", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3046", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "a0915fca-7f0b-4ba0-8df8-6f3b3f359071", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000006b;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3042", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Cause": "26", "Cause-txt": "Answered elsewhere", "Channel": "SIP/150010003-000000ab", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Hangup", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3052", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "e8668144-fe99-4390-93a6-c832546a7cb0", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000006c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "handlers", "Event": "NewCallerid", "Exten": "onhangup", "Language": "en", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3046", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "e8668144-fe99-4390-93a6-c832546a7cb0", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000006b;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3040", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "26", "Cause-txt": "Answered elsewhere", "Channel": "Local/ID730152@osvpi_route_phoneaccount-0000006c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3046", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "e8668144-fe99-4390-93a6-c832546a7cb0", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000a7", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.2993", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "e8668144-fe99-4390-93a6-c832546a7cb0", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000a7", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.2993", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "a0915fca-7f0b-4ba0-8df8-6f3b3f359071", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000006b;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "401", "Language": "en", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3042", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "a0915fca-7f0b-4ba0-8df8-6f3b3f359071", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000a7", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "12", "Privilege": "call,all", "SwapUniqueid": "f29ea68048f6-1530026028.3042", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.2993", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "e8668144-fe99-4390-93a6-c832546a7cb0", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000006b;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3040", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "e8668144-fe99-4390-93a6-c832546a7cb0", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000006b;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3040", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000006b;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "f29ea68048f6-1530026028.3037", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3042", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "a0915fca-7f0b-4ba0-8df8-6f3b3f359071", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010002-000000aa", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3050", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "a0915fca-7f0b-4ba0-8df8-6f3b3f359071", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000a7", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "401", "Language": "nl", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.2993", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "a0915fca-7f0b-4ba0-8df8-6f3b3f359071", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "401", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010002-000000aa", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026028.3050", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/voipgrid-siproute-docker-000000a7", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "f29ea68048f6-1530026019.2993", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530026019.2993", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "38d2bcc3-4251-402c-8149-e531605722e1", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""} ] diff --git a/tests/fixtures/xfer_blonde/xfer_blonde_reject.json b/tests/fixtures/xfer_blonde/xfer_blonde_reject.json index c2a8541..d931a45 100644 --- a/tests/fixtures/xfer_blonde/xfer_blonde_reject.json +++ b/tests/fixtures/xfer_blonde/xfer_blonde_reject.json @@ -1,640 +1,88 @@ [ - {"Status": "Fully Booted", "Privilege": "system,all", "content": "", "Event": "FullyBooted"}, - {"CallerIDNum": "150010002", "Context": "osvpi_account", "content": "", "Privilege": "call,all", "ChannelState": "0", "Event": "Newchannel", "Exten": "204", "AccountCode": "150010002", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "CallerIDName": "Bob", "ChannelStateDesc": "Down"}, - {"Variable": "SIPURI", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "sip:150010002@10.13.36.116:5061", "content": ""}, - {"Variable": "SIPDOMAIN", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "10.13.37.110", "content": ""}, - {"Variable": "SIPCALLID", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "72eedca9-f6029be4@10.13.36.116", "content": ""}, - {"Variable": "__client_id", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "15001", "content": ""}, - {"Variable": "__account_id", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "150010002", "content": ""}, - {"Variable": "__record_call", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "no", "content": ""}, - {"Variable": "__intprefix", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "31", "content": ""}, - {"Variable": "__limit_account", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "4", "content": ""}, - {"Variable": "__limit_client", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "0", "content": ""}, - {"Variable": "__hide_ext_cliname", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "1", "content": ""}, - {"Variable": "__TRANSFER_CONTEXT", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "osvpi_account_transfer", "content": ""}, - {"CallerIDNum": "150010002", "ConnectedLineNum": "", "content": "", "Channel": "SIP/150010002-0000001b", "Event": "Newstate", "CallerIDName": "Bob", "Uniqueid": "0f00dcaa884f-1509119790.66", "ChannelState": "4", "Privilege": "call,all", "ConnectedLineName": "", "ChannelStateDesc": "Ring"}, - {"Priority": "1", "AppData": "0?GotoIf(0?osvpi_proc_hangup_insecure,204,1)", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_account", "Application": "ExecIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Priority": "2", "AppData": "osvpi_proc_check_forwards,s,1", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_account", "Application": "Gosub", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Variable": "LOCAL(ARGC)", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "0", "content": ""}, - {"Priority": "1", "AppData": "0?check,1", "Extension": "s", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Priority": "2", "AppData": "LOCAL(tmp)=70", "Extension": "s", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Variable": "LOCAL(tmp)", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "70", "content": ""}, - {"Priority": "3", "AppData": "0?Goto(init,1)", "Extension": "s", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Application": "ExecIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Priority": "4", "AppData": "1?Goto(init,1)", "Extension": "s", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Application": "ExecIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Priority": "1", "AppData": "MASTER_CHANNEL(SIP_MAX_FORWARDS)=16", "Extension": "init", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Variable": "SIP_MAX_FORWARDS", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "16", "content": ""}, - {"Priority": "2", "AppData": "DEBUG: MaxForwards: initialized to: 16", "Extension": "init", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Application": "NoOp", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Priority": "3", "AppData": "", "Extension": "init", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Application": "Return", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Variable": "GOSUB_RETVAL", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Priority": "3", "AppData": "0?osvpi_account_transfer,204,1", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_account", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Priority": "4", "AppData": "ENTRY POINT username=150010002,ip=172.20.0.13/172.20.0.13,from=sip:150010002@10.13.37.110,contact=sip:150010002@10.13.36.116:5061,ua=Cisco/SPA504G-7.5.3,name=Bob,num=150010002,pres=allowed_not_screened", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_account", "Application": "NoOp", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Priority": "5", "AppData": "is_transfer=0", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_account", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Variable": "is_transfer", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "0", "content": ""}, - {"Priority": "6", "AppData": "CDR(amaflags)=BILLING", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_account", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Priority": "7", "AppData": "user_privacy=0", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_account", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Variable": "user_privacy", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "0", "content": ""}, - {"Priority": "8", "AppData": "1?Set(__supports_progress=1)", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_account", "Application": "ExecIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Variable": "__supports_progress", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "1", "content": ""}, - {"Priority": "9", "AppData": "osvpi_proc_record_call,s-no,1(out,15001,150010002)", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_account", "Application": "Gosub", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Variable": "LOCAL(ARG1)", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "out", "content": ""}, - {"Variable": "LOCAL(ARG2)", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "15001", "content": ""}, - {"Variable": "LOCAL(ARG3)", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "150010002", "content": ""}, - {"Variable": "LOCAL(ARGC)", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "3", "content": ""}, - {"Priority": "1", "AppData": "", "Extension": "s-no", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_proc_record_call", "Application": "Return", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Variable": "GOSUB_RETVAL", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Priority": "10", "AppData": "l_tmp=", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_account", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Variable": "l_tmp", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Priority": "11", "AppData": "1?Set(l_tmp=)", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_account", "Application": "ExecIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Variable": "l_tmp", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Priority": "12", "AppData": "1?checkprivacy", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_account", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Priority": "16", "AppData": "0?Set(CALLERID(pres)=allowed_passed_screen)", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_account", "Application": "ExecIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Priority": "17", "AppData": "0?Set(CALLERID(pres)=prohib_passed_screen)", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_account", "Application": "ExecIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Priority": "18", "AppData": "0?Set(CHANNEL(musicclass)=)", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_account", "Application": "ExecIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Priority": "19", "AppData": "1?continue", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_account", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Priority": "22", "AppData": "osvpi_proc_set_i18n_region,31,1", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_account", "Application": "Gosub", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Variable": "LOCAL(ARGC)", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "0", "content": ""}, - {"Priority": "1", "AppData": "i18n_region=NL", "Extension": "31", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_i18n_region", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Variable": "i18n_region", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "NL", "content": ""}, - {"Priority": "2", "AppData": "", "Extension": "31", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_i18n_region", "Application": "Return", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Variable": "GOSUB_RETVAL", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Priority": "23", "AppData": "osvpi_account_emergency_NL,204,1", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_account", "Application": "Goto", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Priority": "1", "AppData": "osvpi_account_no_emergency,204,1", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_account_emergency_NL", "Application": "Goto", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Priority": "1", "AppData": "osvpi_account,204,no-emergency", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_account_no_emergency", "Application": "Goto", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Priority": "24", "AppData": "osvpi_account_clean,204,1", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_account", "Application": "Goto", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Priority": "1", "AppData": "return=osvpi_account_clean", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Variable": "return", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "osvpi_account_clean", "content": ""}, - {"Priority": "2", "AppData": "osvpi_return_to_canonical,31i204,1", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Application": "Goto", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Variable": "INVALID_EXTEN", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "31i204", "content": ""}, - {"Priority": "1", "AppData": "osvpi_account_clean,204,local", "Extension": "i", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_return_to_canonical", "Application": "Goto", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Priority": "3", "AppData": "0?extern", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Priority": "4", "AppData": "osvpi_proc_set_callerid,204,1(150010002,0,0)", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Application": "Gosub", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Variable": "LOCAL(ARG1)", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "150010002", "content": ""}, - {"Variable": "LOCAL(ARG2)", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "0", "content": ""}, - {"Variable": "LOCAL(ARG3)", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "0", "content": ""}, - {"Variable": "LOCAL(ARGC)", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "3", "content": ""}, - {"Priority": "1", "AppData": "0?done", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Variable": "ODBCROWS", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "1", "content": ""}, - {"Variable": "ODBCSTATUS", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "SUCCESS", "content": ""}, - {"Variable": "~ODBCFIELDS~", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "set,privacy,name,number_int,number_ext", "content": ""}, - {"Priority": "2", "AppData": "ARRAY(LOCAL(set),LOCAL(privacy),LOCAL(name),LOCAL(number_int),LOCAL(number_ext))=1,0,David Meadows,202,+31150010002", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Variable": "LOCAL(set)", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "1", "content": ""}, - {"Variable": "LOCAL(privacy)", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "0", "content": ""}, - {"Variable": "LOCAL(name)", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "David Meadows", "content": ""}, - {"Variable": "LOCAL(number_int)", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "202", "content": ""}, - {"Variable": "LOCAL(number_ext)", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "+31150010002", "content": ""}, - {"Priority": "3", "AppData": "0?presentation", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Priority": "4", "AppData": "CALLERID(pres)=allowed_passed_screen", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Priority": "5", "AppData": "CALLERID(name)=David Meadows", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"CallerIDNum": "150010002", "content": "", "Channel": "SIP/150010002-0000001b", "Event": "NewCallerid", "CallerIDName": "David Meadows", "Privilege": "call,all", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Priority": "6", "AppData": "CALLERID(num)=202", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"CallerIDNum": "202", "content": "", "Channel": "SIP/150010002-0000001b", "Event": "NewCallerid", "CallerIDName": "David Meadows", "Privilege": "call,all", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Priority": "7", "AppData": "0?Set(CALLERID(pres)=prohib_passed_screen)", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Application": "ExecIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Priority": "8", "AppData": "CALLERID(ANI)=202", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Priority": "9", "AppData": "osvpi_proc_set_callerid_internal,204,1", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Application": "Gosub", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Variable": "LOCAL(ARG1)", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Variable": "LOCAL(ARG2)", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Variable": "LOCAL(ARG3)", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Variable": "LOCAL(ARGC)", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "0", "content": ""}, - {"Priority": "1", "AppData": "1?nop", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid_internal", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Priority": "5", "AppData": "0?Set(CALLERID(ANI)=20)", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid_internal", "Application": "ExecIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Priority": "6", "AppData": "", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid_internal", "Application": "Return", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Variable": "GOSUB_RETVAL", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Priority": "10", "AppData": "", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Application": "Return", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Variable": "GOSUB_RETVAL", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Priority": "5", "AppData": "3?osvpi_account_call_int,204,1:i,1", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Priority": "1", "AppData": "osvpi_proc_check_limits,204,1", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Application": "Gosub", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Variable": "LOCAL(ARGC)", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "0", "content": ""}, - {"Priority": "1", "AppData": "DEBUG: call_limit: client 0/0 and account 0/4", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Application": "NoOp", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Priority": "2", "AppData": "0?osvpi_handle_limit,204,client", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Priority": "3", "AppData": "0?osvpi_handle_limit,204,account", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Priority": "4", "AppData": "GROUP(account_lim)=150010002", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Priority": "5", "AppData": "GROUP(client_lim)=15001", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Priority": "6", "AppData": "", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Application": "Return", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Variable": "GOSUB_RETVAL", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Priority": "2", "AppData": "osvpi_proc_check_recurse,204,1(15001)", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Application": "Gosub", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Variable": "LOCAL(ARG1)", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "15001", "content": ""}, - {"Variable": "LOCAL(ARGC)", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "1", "content": ""}, - {"Priority": "1", "AppData": "LOCAL(exten)=15001:204", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Variable": "LOCAL(exten)", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "15001:204", "content": ""}, - {"Priority": "2", "AppData": "Recursion checking 15001:204 against ", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Application": "NoOp", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Priority": "3", "AppData": "LOCAL(n)=0", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Variable": "LOCAL(n)", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "0", "content": ""}, - {"Priority": "4", "AppData": "LOCAL(i)=1", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Variable": "LOCAL(i)", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "1", "content": ""}, - {"Priority": "5", "AppData": "1?add", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Priority": "9", "AppData": "__EXTEN_LIST=15001:204 ", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Variable": "__EXTEN_LIST", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "15001:204 ", "content": ""}, - {"Priority": "10", "AppData": "__EXTEN_LIST_LAST_EDIT_TIME=1509119790", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Variable": "__EXTEN_LIST_LAST_EDIT_TIME", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "1509119790", "content": ""}, - {"Priority": "11", "AppData": "", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Application": "Return", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Variable": "GOSUB_RETVAL", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Priority": "3", "AppData": "__ORIG_EXTEN=204", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Variable": "__ORIG_EXTEN", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "204", "content": ""}, - {"Variable": "ODBCROWS", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "0", "content": ""}, - {"Variable": "ODBCSTATUS", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "NODATA", "content": ""}, - {"Priority": "4", "AppData": "ARRAY(conference_id,user_password,admin_password,conference_language)=", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Variable": "conference_id", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Variable": "user_password", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Variable": "admin_password", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Variable": "conference_language", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Priority": "5", "AppData": "0?osvpi_route_conference,ID,1", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Variable": "ODBCROWS", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "0", "content": ""}, - {"Variable": "ODBCSTATUS", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "NODATA", "content": ""}, - {"Priority": "6", "AppData": "ARRAY(route_id,client_timezone)=", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Variable": "route_id", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Variable": "client_timezone", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Priority": "7", "AppData": "0?osvpi_route_root,204,restart", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Variable": "ODBCROWS", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "0", "content": ""}, - {"Variable": "ODBCSTATUS", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "NODATA", "content": ""}, - {"Priority": "8", "AppData": "ARRAY(all_extensions,limited_extensions,password,account_spy_language)=", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Variable": "all_extensions", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Variable": "limited_extensions", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Variable": "password", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Variable": "account_spy_language", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Priority": "9", "AppData": "0?osvpi_account_spy,204,1", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Variable": "ODBCROWS", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "1", "content": ""}, - {"Variable": "ODBCSTATUS", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "SUCCESS", "content": ""}, - {"Variable": "~ODBCFIELDS~", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "interfaces", "content": ""}, - {"Priority": "10", "AppData": "ARRAY(interfaces)=Local/ID690153@osvpi_route_phoneaccount", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Variable": "interfaces", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "Local/ID690153@osvpi_route_phoneaccount", "content": ""}, - {"Priority": "11", "AppData": "0?osvpi_handle_unallocated,204,1", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Priority": "12", "AppData": "Local/ID690153@osvpi_route_phoneaccount", "Extension": "204", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Application": "Dial", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Variable": "DIALSTATUS", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Variable": "DIALEDPEERNUMBER", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Variable": "DIALEDPEERNAME", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Variable": "ANSWEREDTIME", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Variable": "DIALEDTIME", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"CallerIDNum": "", "Context": "osvpi_route_phoneaccount", "content": "", "Privilege": "call,all", "ChannelState": "0", "Event": "Newchannel", "Exten": "ID690153", "AccountCode": "", "Uniqueid": "0f00dcaa884f-1509119790.67", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;1", "CallerIDName": "", "ChannelStateDesc": "Down"}, - {"CallerIDNum": "", "Context": "osvpi_route_phoneaccount", "content": "", "Privilege": "call,all", "ChannelState": "4", "Event": "Newchannel", "Exten": "ID690153", "AccountCode": "", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "CallerIDName": "", "ChannelStateDesc": "Ring"}, - {"Variable": "DIALEDPEERNUMBER", "Uniqueid": "0f00dcaa884f-1509119790.67", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;1", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "ID690153@osvpi_route_phoneaccount", "content": ""}, - {"CallerIDNum": "204", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;1", "Event": "NewCallerid", "CallerIDName": "", "Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Uniqueid": "0f00dcaa884f-1509119790.67"}, - {"Uniqueid2": "0f00dcaa884f-1509119790.68", "Context": "osvpi_route_phoneaccount", "content": "", "Event": "LocalBridge", "Channel1": "Local/ID690153@osvpi_route_phoneaccount-00000013;1", "Privilege": "call,all", "Exten": "ID690153", "LocalOptimization": "Yes", "Channel2": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Uniqueid1": "0f00dcaa884f-1509119790.67"}, - {"Dialstring": "ID690153@osvpi_route_phoneaccount", "Destination": "Local/ID690153@osvpi_route_phoneaccount-00000013;1", "CallerIDNum": "202", "UniqueID": "0f00dcaa884f-1509119790.66", "Event": "Dial", "Privilege": "call,all", "ConnectedLineName": "", "ConnectedLineNum": "", "SubEvent": "Begin", "DestUniqueID": "0f00dcaa884f-1509119790.67", "Channel": "SIP/150010002-0000001b", "CallerIDName": "David Meadows", "content": ""}, - {"Variable": "ODBCROWS", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "1", "content": ""}, - {"Variable": "ODBCSTATUS", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "SUCCESS", "content": ""}, - {"Variable": "~ODBCFIELDS~", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account", "content": ""}, - {"Priority": "1", "AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=150010004,accountid,dutch,from,,0", "Extension": "ID690153", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.68"}, - {"Variable": "__dst_account_id", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "150010004", "content": ""}, - {"Variable": "l_mangle_did", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "accountid", "content": ""}, - {"Variable": "l_mangle_cli", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "dutch", "content": ""}, - {"Variable": "l_cli_header", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "from", "content": ""}, - {"Variable": "l_primary_pickupgroup", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Variable": "app_account", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "0", "content": ""}, - {"Priority": "2", "AppData": "0?vialer", "Extension": "ID690153", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.68"}, - {"Priority": "3", "AppData": "_PICKUPMARK=", "Extension": "ID690153", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.68"}, - {"Variable": "_PICKUPMARK", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Priority": "4", "AppData": "l_trunk=0", "Extension": "ID690153", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.68"}, - {"Variable": "l_trunk", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "0", "content": ""}, - {"Priority": "5", "AppData": "osvpi_route_account,ID690153,1", "Extension": "ID690153", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Application": "Goto", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.68"}, - {"Variable": "ODBCROWS", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "1", "content": ""}, - {"Variable": "ODBCSTATUS", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "SUCCESS", "content": ""}, - {"Variable": "~ODBCFIELDS~", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "proxy", "content": ""}, - {"Priority": "1", "AppData": "ARRAY(l_proxy)=172.20.0.13", "Extension": "ID690153", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.68"}, - {"Variable": "l_proxy", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "172.20.0.13", "content": ""}, - {"Priority": "2", "AppData": "osvpi_proc_mangle_number,accountid,1(150010004,204)", "Extension": "ID690153", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Application": "Gosub", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.68"}, - {"Variable": "LOCAL(ARG1)", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "150010004", "content": ""}, - {"Variable": "LOCAL(ARG2)", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "204", "content": ""}, - {"Variable": "LOCAL(ARGC)", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "2", "content": ""}, - {"Priority": "1", "AppData": "MANGLED_EXTEN=150010004", "Extension": "accountid", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.68"}, - {"Variable": "MANGLED_EXTEN", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "150010004", "content": ""}, - {"Priority": "2", "AppData": "", "Extension": "accountid", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Application": "Return", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.68"}, - {"Variable": "GOSUB_RETVAL", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Priority": "3", "AppData": "l_did=150010004", "Extension": "ID690153", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.68"}, - {"Variable": "l_did", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "150010004", "content": ""}, - {"Priority": "4", "AppData": "osvpi_proc_mangle_number,dutch,1(150010004,202)", "Extension": "ID690153", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Application": "Gosub", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.68"}, - {"Variable": "LOCAL(ARG1)", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "150010004", "content": ""}, - {"Variable": "LOCAL(ARG2)", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "202", "content": ""}, - {"Variable": "LOCAL(ARGC)", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "2", "content": ""}, - {"Priority": "1", "AppData": "1?fullzero,1", "Extension": "dutch", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.68"}, - {"Priority": "1", "AppData": "MANGLED_EXTEN=202", "Extension": "fullzero", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.68"}, - {"Variable": "MANGLED_EXTEN", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "202", "content": ""}, - {"Priority": "2", "AppData": "", "Extension": "fullzero", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Application": "Return", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.68"}, - {"Variable": "GOSUB_RETVAL", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Priority": "5", "AppData": "l_mangle_cli_hdr=from-dutch", "Extension": "ID690153", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.68"}, - {"Variable": "l_mangle_cli_hdr", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "from-dutch", "content": ""}, - {"Priority": "6", "AppData": "l_fromuser=", "Extension": "ID690153", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.68"}, - {"Variable": "l_fromuser", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Priority": "7", "AppData": "1?Set(l_fromuser=202)", "Extension": "ID690153", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Application": "ExecIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.68"}, - {"Variable": "l_fromuser", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "202", "content": ""}, - {"Variable": "ODBCROWS", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "1", "content": ""}, - {"Variable": "ODBCSTATUS", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "SUCCESS", "content": ""}, - {"Variable": "~ODBCFIELDS~", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "IF((SELECT 1 FROM baseaccount_account ba INNER JOIN userdestination_selecteduserdestination udsud ON udsud.phoneaccount_id = ba.id INNER JOIN userdestination_userdestination udud ON udud.id = udsud.userdestination_id INNER JOIN crm_cloudctiuser cccu O", "content": ""}, - {"Priority": "8", "AppData": "ARRAY(cloudcti)=0", "Extension": "ID690153", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.68"}, - {"Variable": "cloudcti", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "0", "content": ""}, - {"Priority": "9", "AppData": "1?skipcloudcti", "Extension": "ID690153", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.68"}, - {"Variable": "ODBCROWS", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "1", "content": ""}, - {"Variable": "ODBCSTATUS", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "SUCCESS", "content": ""}, - {"Variable": "~ODBCFIELDS~", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "GROUP_CONCAT(DISTINCT(csw.url) SEPARATOR ' '),internal_number,GROUP_CONCAT(DISTINCT(ud.internal_number) SEPARATOR ' ')", "content": ""}, - {"Priority": "11", "AppData": "ARRAY(webhooks,accountinternalnumber,userinternalnumbers)=,204,", "Extension": "ID690153", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.68"}, - {"Variable": "webhooks", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Variable": "accountinternalnumber", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "204", "content": ""}, - {"Variable": "userinternalnumbers", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Priority": "13", "AppData": "osvpi_proc_proxy_out,204,1", "Extension": "ID690153", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Application": "Goto", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.68"}, - {"Priority": "1", "AppData": "X-Accountcode: 150010004", "Extension": "204", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Application": "SIPAddHeader", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.68"}, - {"Variable": "__SIPADDHEADER01", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "X-Accountcode: 150010004", "content": ""}, - {"Priority": "2", "AppData": "X-Insecure-Protection: geheim", "Extension": "204", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Application": "SIPAddHeader", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.68"}, - {"Variable": "__SIPADDHEADER02", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "X-Insecure-Protection: geheim", "content": ""}, - {"Priority": "3", "AppData": "X-Mangle-Cli: from-dutch", "Extension": "204", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Application": "SIPAddHeader", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.68"}, - {"Variable": "__SIPADDHEADER03", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "X-Mangle-Cli: from-dutch", "content": ""}, - {"Priority": "4", "AppData": "_dial_options_callaccept=", "Extension": "204", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.68"}, - {"Variable": "_dial_options_callaccept", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Priority": "5", "AppData": "_dial_options_callnotify=", "Extension": "204", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.68"}, - {"Variable": "_dial_options_callnotify", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Priority": "6", "AppData": "0?Set(l_proxy=opensipsfg)", "Extension": "204", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Application": "ExecIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.68"}, - {"Priority": "7", "AppData": "l_extra_options=", "Extension": "204", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.68"}, - {"Variable": "l_extra_options", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Priority": "8", "AppData": "SIP/150010004/150010004/172.20.0.13!!202,,", "Extension": "204", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Application": "Dial", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.68"}, - {"Variable": "DIALSTATUS", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Variable": "DIALEDPEERNUMBER", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Variable": "DIALEDPEERNAME", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Variable": "ANSWEREDTIME", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Variable": "DIALEDTIME", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"CallerIDNum": "", "Context": "osvpi_account", "content": "", "Privilege": "call,all", "ChannelState": "0", "Event": "Newchannel", "Exten": "", "AccountCode": "150010004", "Uniqueid": "0f00dcaa884f-1509119790.69", "Channel": "SIP/150010004-0000001c", "CallerIDName": "", "ChannelStateDesc": "Down"}, - {"Variable": "SIPCALLID", "Uniqueid": "0f00dcaa884f-1509119790.69", "Channel": "SIP/150010004-0000001c", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "24b9a30b10a4de1b305e2601364807c3@test.voipgrid.nl", "content": ""}, - {"Variable": "__client_id", "Uniqueid": "0f00dcaa884f-1509119790.69", "Channel": "SIP/150010004-0000001c", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "15001", "content": ""}, - {"Variable": "__account_id", "Uniqueid": "0f00dcaa884f-1509119790.69", "Channel": "SIP/150010004-0000001c", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "150010004", "content": ""}, - {"Variable": "__record_call", "Uniqueid": "0f00dcaa884f-1509119790.69", "Channel": "SIP/150010004-0000001c", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "no", "content": ""}, - {"Variable": "__intprefix", "Uniqueid": "0f00dcaa884f-1509119790.69", "Channel": "SIP/150010004-0000001c", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "31", "content": ""}, - {"Variable": "__limit_account", "Uniqueid": "0f00dcaa884f-1509119790.69", "Channel": "SIP/150010004-0000001c", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "4", "content": ""}, - {"Variable": "__limit_client", "Uniqueid": "0f00dcaa884f-1509119790.69", "Channel": "SIP/150010004-0000001c", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "0", "content": ""}, - {"Variable": "__hide_ext_cliname", "Uniqueid": "0f00dcaa884f-1509119790.69", "Channel": "SIP/150010004-0000001c", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "1", "content": ""}, - {"Variable": "__TRANSFER_CONTEXT", "Uniqueid": "0f00dcaa884f-1509119790.69", "Channel": "SIP/150010004-0000001c", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "osvpi_account_transfer", "content": ""}, - {"Variable": "DIALEDPEERNUMBER", "Uniqueid": "0f00dcaa884f-1509119790.69", "Channel": "SIP/150010004-0000001c", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "150010004/150010004/172.20.0.13!!202", "content": ""}, - {"CallerIDNum": "204", "content": "", "Channel": "SIP/150010004-0000001c", "Event": "NewCallerid", "CallerIDName": "", "Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Uniqueid": "0f00dcaa884f-1509119790.69"}, - {"Dialstring": "150010004/150010004/172.20.0.13!!202", "Destination": "SIP/150010004-0000001c", "CallerIDNum": "202", "UniqueID": "0f00dcaa884f-1509119790.68", "Event": "Dial", "Privilege": "call,all", "ConnectedLineName": "", "ConnectedLineNum": "204", "SubEvent": "Begin", "DestUniqueID": "0f00dcaa884f-1509119790.69", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "CallerIDName": "David Meadows", "content": ""}, - {"CallerIDNum": "204", "ConnectedLineNum": "202", "content": "", "Channel": "SIP/150010004-0000001c", "Event": "Newstate", "CallerIDName": "", "Uniqueid": "0f00dcaa884f-1509119790.69", "ChannelState": "5", "Privilege": "call,all", "ConnectedLineName": "David Meadows", "ChannelStateDesc": "Ringing"}, - {"CallerIDNum": "204", "ConnectedLineNum": "202", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;1", "Event": "Newstate", "CallerIDName": "", "Uniqueid": "0f00dcaa884f-1509119790.67", "ChannelState": "5", "Privilege": "call,all", "ConnectedLineName": "David Meadows", "ChannelStateDesc": "Ringing"}, - {"CallerIDNum": "204", "ConnectedLineNum": "202", "content": "", "Channel": "SIP/150010004-0000001c", "Event": "Newstate", "CallerIDName": "", "Uniqueid": "0f00dcaa884f-1509119790.69", "ChannelState": "6", "Privilege": "call,all", "ConnectedLineName": "David Meadows", "ChannelStateDesc": "Up"}, - {"Variable": "DIALSTATUS", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "ANSWER", "content": ""}, - {"Variable": "DIALEDPEERNAME", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "SIP/150010004-0000001c", "content": ""}, - {"Variable": "DIALEDPEERNUMBER", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "150010004/150010004/172.20.0.13!!202", "content": ""}, - {"Variable": "BRIDGEPEER", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "SIP/150010004-0000001c", "content": ""}, - {"Variable": "BRIDGEPEER", "Uniqueid": "0f00dcaa884f-1509119790.69", "Channel": "SIP/150010004-0000001c", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "content": ""}, - {"CallerIDNum": "202", "ConnectedLineNum": "204", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "Newstate", "CallerIDName": "David Meadows", "Uniqueid": "0f00dcaa884f-1509119790.68", "ChannelState": "6", "Privilege": "call,all", "ConnectedLineName": "", "ChannelStateDesc": "Up"}, - {"CallerIDNum": "204", "ConnectedLineNum": "202", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;1", "Event": "Newstate", "CallerIDName": "", "Uniqueid": "0f00dcaa884f-1509119790.67", "ChannelState": "6", "Privilege": "call,all", "ConnectedLineName": "David Meadows", "ChannelStateDesc": "Up"}, - {"OldAccountCode": "150010002", "AccountCode": "150010002", "Uniqueid": "0f00dcaa884f-1509119790.69", "Channel": "SIP/150010004-0000001c", "Event": "NewAccountCode", "Privilege": "call,all", "content": ""}, - {"Bridgestate": "Link", "CallerID2": "204", "Uniqueid2": "0f00dcaa884f-1509119790.69", "Bridgetype": "core", "CallerID1": "202", "Uniqueid1": "0f00dcaa884f-1509119790.68", "Event": "Bridge", "Channel1": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Privilege": "call,all", "Channel2": "SIP/150010004-0000001c", "content": ""}, - {"Variable": "BRIDGEPEER", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "SIP/150010004-0000001c", "content": ""}, - {"Variable": "DIALSTATUS", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "ANSWER", "content": ""}, - {"Variable": "BRIDGEPVTCALLID", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "24b9a30b10a4de1b305e2601364807c3@test.voipgrid.nl", "content": ""}, - {"Variable": "DIALEDPEERNAME", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "Local/ID690153@osvpi_route_phoneaccount-00000013;1", "content": ""}, - {"Variable": "BRIDGEPEER", "Uniqueid": "0f00dcaa884f-1509119790.69", "Channel": "SIP/150010004-0000001c", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "content": ""}, - {"Variable": "DIALEDPEERNUMBER", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "ID690153@osvpi_route_phoneaccount", "content": ""}, - {"Variable": "BRIDGEPEER", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "Local/ID690153@osvpi_route_phoneaccount-00000013;1", "content": ""}, - {"Variable": "BRIDGEPEER", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "SIP/150010004-0000001c", "content": ""}, - {"Variable": "BRIDGEPEER", "Uniqueid": "0f00dcaa884f-1509119790.67", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;1", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "SIP/150010002-0000001b", "content": ""}, - {"Variable": "BRIDGEPVTCALLID", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "24b9a30b10a4de1b305e2601364807c3@test.voipgrid.nl", "content": ""}, - {"Variable": "BRIDGEPEER", "Uniqueid": "0f00dcaa884f-1509119790.69", "Channel": "SIP/150010004-0000001c", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "content": ""}, - {"CallerIDNum": "202", "ConnectedLineNum": "", "content": "", "Channel": "SIP/150010002-0000001b", "Event": "Newstate", "CallerIDName": "David Meadows", "Uniqueid": "0f00dcaa884f-1509119790.66", "ChannelState": "6", "Privilege": "call,all", "ConnectedLineName": "", "ChannelStateDesc": "Up"}, - {"OldAccountCode": "150010002", "AccountCode": "150010002", "Uniqueid": "0f00dcaa884f-1509119790.67", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;1", "Event": "NewAccountCode", "Privilege": "call,all", "content": ""}, - {"Bridgestate": "Link", "CallerID2": "204", "Uniqueid2": "0f00dcaa884f-1509119790.67", "Bridgetype": "core", "CallerID1": "202", "Uniqueid1": "0f00dcaa884f-1509119790.66", "Event": "Bridge", "Channel1": "SIP/150010002-0000001b", "Privilege": "call,all", "Channel2": "Local/ID690153@osvpi_route_phoneaccount-00000013;1", "content": ""}, - {"Variable": "BRIDGEPEER", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "Local/ID690153@osvpi_route_phoneaccount-00000013;1", "content": ""}, - {"Variable": "BRIDGEPEER", "Uniqueid": "0f00dcaa884f-1509119790.67", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;1", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "SIP/150010002-0000001b", "content": ""}, - {"Variable": "BRIDGEPVTCALLID", "Uniqueid": "0f00dcaa884f-1509119790.67", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;1", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "72eedca9-f6029be4@10.13.36.116", "content": ""}, - {"Variable": "BRIDGEPEER", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "Local/ID690153@osvpi_route_phoneaccount-00000013;1", "content": ""}, - {"Variable": "BRIDGEPEER", "Uniqueid": "0f00dcaa884f-1509119790.67", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;1", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "SIP/150010002-0000001b", "content": ""}, - {"Variable": "BRIDGEPVTCALLID", "Uniqueid": "0f00dcaa884f-1509119790.67", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;1", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "72eedca9-f6029be4@10.13.36.116", "content": ""}, - {"Original": "Local/ID690153@osvpi_route_phoneaccount-00000013;1", "OriginalState": "Up", "content": "", "Event": "Masquerade", "Privilege": "call,all", "Clone": "SIP/150010004-0000001c", "CloneState": "Up"}, - {"Newname": "SIP/150010004-0000001c", "Uniqueid": "0f00dcaa884f-1509119790.69", "Channel": "SIP/150010004-0000001c", "Privilege": "call,all", "Event": "Rename", "content": ""}, - {"Newname": "SIP/150010004-0000001c", "Uniqueid": "0f00dcaa884f-1509119790.67", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;1", "Privilege": "call,all", "Event": "Rename", "content": ""}, - {"Newname": "Local/ID690153@osvpi_route_phoneaccount-00000013;1", "Uniqueid": "0f00dcaa884f-1509119790.69", "Channel": "SIP/150010004-0000001c", "Privilege": "call,all", "Event": "Rename", "content": ""}, - {"CallerIDNum": "204", "content": "", "Channel": "SIP/150010004-0000001c", "Event": "NewCallerid", "CallerIDName": "", "Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Uniqueid": "0f00dcaa884f-1509119790.67"}, - {"Bridgestate": "Unlink", "CallerID2": "204", "Uniqueid2": "0f00dcaa884f-1509119790.69", "Bridgetype": "core", "CallerID1": "202", "Uniqueid1": "0f00dcaa884f-1509119790.68", "Event": "Bridge", "Channel1": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Privilege": "call,all", "Channel2": "Local/ID690153@osvpi_route_phoneaccount-00000013;1", "content": ""}, - {"Variable": "BRIDGEPEER", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "SIP/150010004-0000001c", "content": ""}, - {"Variable": "ANSWEREDTIME", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "1", "content": ""}, - {"Variable": "BRIDGEPVTCALLID", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "24b9a30b10a4de1b305e2601364807c3@test.voipgrid.nl", "content": ""}, - {"Variable": "DIALEDTIME", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "2", "content": ""}, - {"Variable": "BRIDGEPEER", "Uniqueid": "0f00dcaa884f-1509119790.67", "Channel": "SIP/150010004-0000001c", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "SIP/150010002-0000001b", "content": ""}, - {"Variable": "BRIDGEPVTCALLID", "Uniqueid": "0f00dcaa884f-1509119790.67", "Channel": "SIP/150010004-0000001c", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "72eedca9-f6029be4@10.13.36.116", "content": ""}, - {"content": "", "Privilege": "call,all", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "HangupRequest"}, - {"CallerIDNum": "204", "content": "", "Event": "Hangup", "Privilege": "call,all", "ConnectedLineName": "David Meadows", "ConnectedLineNum": "202", "AccountCode": "150010002", "Uniqueid": "0f00dcaa884f-1509119790.69", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;1", "Cause": "16", "CallerIDName": "", "Cause-txt": "Normal Clearing"}, - {"Variable": "DIALSTATUS", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "ANSWER", "content": ""}, - {"SubEvent": "End", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "content": "", "UniqueID": "0f00dcaa884f-1509119790.68", "Event": "Dial", "Privilege": "call,all", "DialStatus": "ANSWER"}, - {"Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Privilege": "call,all", "Event": "SoftHangupRequest", "Cause": "16", "content": ""}, - {"Priority": "1", "AppData": "1?nosip", "Extension": "onhangup", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Privilege": "dialplan,all", "Context": "handlers", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.68"}, - {"Priority": "3", "AppData": "0?osvpi_proc_httptouch,s,1()", "Extension": "onhangup", "content": "", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Privilege": "dialplan,all", "Context": "handlers", "Application": "GosubIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.68"}, - {"CallerIDNum": "202", "content": "", "Event": "Hangup", "Privilege": "call,all", "ConnectedLineName": "", "ConnectedLineNum": "204", "AccountCode": "150010002", "Uniqueid": "0f00dcaa884f-1509119790.68", "Channel": "Local/ID690153@osvpi_route_phoneaccount-00000013;2", "Cause": "16", "CallerIDName": "David Meadows", "Cause-txt": "Normal Clearing"}, - {"Channel": "SIP/150010002-0000001b", "UniqueID": "0f00dcaa884f-1509119790.66", "Event": "MusicOnHold", "State": "Start", "Privilege": "call,all", "Class": "default", "content": ""}, - {"CallerIDNum": "150010004", "Context": "osvpi_account", "content": "", "Privilege": "call,all", "ChannelState": "0", "Event": "Newchannel", "Exten": "203", "AccountCode": "150010004", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "CallerIDName": "Dave", "ChannelStateDesc": "Down"}, - {"Variable": "SIPURI", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "sip:150010004@10.13.36.208:5061", "content": ""}, - {"Variable": "SIPDOMAIN", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "10.13.37.110", "content": ""}, - {"Variable": "SIPCALLID", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "e223eae0-746f2abc@10.13.36.208", "content": ""}, - {"Variable": "__client_id", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "15001", "content": ""}, - {"Variable": "__account_id", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "150010004", "content": ""}, - {"Variable": "__record_call", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "no", "content": ""}, - {"Variable": "__intprefix", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "31", "content": ""}, - {"Variable": "__limit_account", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "4", "content": ""}, - {"Variable": "__limit_client", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "0", "content": ""}, - {"Variable": "__hide_ext_cliname", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "1", "content": ""}, - {"Variable": "__TRANSFER_CONTEXT", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "osvpi_account_transfer", "content": ""}, - {"CallerIDNum": "150010004", "ConnectedLineNum": "", "content": "", "Channel": "SIP/150010004-0000001d", "Event": "Newstate", "CallerIDName": "Dave", "Uniqueid": "0f00dcaa884f-1509119799.70", "ChannelState": "4", "Privilege": "call,all", "ConnectedLineName": "", "ChannelStateDesc": "Ring"}, - {"Priority": "1", "AppData": "0?GotoIf(0?osvpi_proc_hangup_insecure,203,1)", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_account", "Application": "ExecIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Priority": "2", "AppData": "osvpi_proc_check_forwards,s,1", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_account", "Application": "Gosub", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Variable": "LOCAL(ARGC)", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "0", "content": ""}, - {"Priority": "1", "AppData": "0?check,1", "Extension": "s", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Priority": "2", "AppData": "LOCAL(tmp)=70", "Extension": "s", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Variable": "LOCAL(tmp)", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "70", "content": ""}, - {"Priority": "3", "AppData": "0?Goto(init,1)", "Extension": "s", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Application": "ExecIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Priority": "4", "AppData": "1?Goto(init,1)", "Extension": "s", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Application": "ExecIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Priority": "1", "AppData": "MASTER_CHANNEL(SIP_MAX_FORWARDS)=16", "Extension": "init", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Variable": "SIP_MAX_FORWARDS", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "16", "content": ""}, - {"Priority": "2", "AppData": "DEBUG: MaxForwards: initialized to: 16", "Extension": "init", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Application": "NoOp", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Priority": "3", "AppData": "", "Extension": "init", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Application": "Return", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Variable": "GOSUB_RETVAL", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Priority": "3", "AppData": "0?osvpi_account_transfer,203,1", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_account", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Priority": "4", "AppData": "ENTRY POINT username=150010004,ip=172.20.0.13/172.20.0.13,from=sip:150010004@10.13.37.110,contact=sip:150010004@10.13.36.208:5061,ua=Cisco/SPA504G-7.5.3,name=Dave,num=150010004,pres=allowed_not_screened", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_account", "Application": "NoOp", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Priority": "5", "AppData": "is_transfer=0", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_account", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Variable": "is_transfer", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "0", "content": ""}, - {"Priority": "6", "AppData": "CDR(amaflags)=BILLING", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_account", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Priority": "7", "AppData": "user_privacy=0", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_account", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Variable": "user_privacy", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "0", "content": ""}, - {"Priority": "8", "AppData": "1?Set(__supports_progress=1)", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_account", "Application": "ExecIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Variable": "__supports_progress", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "1", "content": ""}, - {"Priority": "9", "AppData": "osvpi_proc_record_call,s-no,1(out,15001,150010004)", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_account", "Application": "Gosub", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Variable": "LOCAL(ARG1)", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "out", "content": ""}, - {"Variable": "LOCAL(ARG2)", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "15001", "content": ""}, - {"Variable": "LOCAL(ARG3)", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "150010004", "content": ""}, - {"Variable": "LOCAL(ARGC)", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "3", "content": ""}, - {"Priority": "1", "AppData": "", "Extension": "s-no", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_proc_record_call", "Application": "Return", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Variable": "GOSUB_RETVAL", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Priority": "10", "AppData": "l_tmp=", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_account", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Variable": "l_tmp", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Priority": "11", "AppData": "1?Set(l_tmp=)", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_account", "Application": "ExecIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Variable": "l_tmp", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Priority": "12", "AppData": "1?checkprivacy", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_account", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Priority": "16", "AppData": "0?Set(CALLERID(pres)=allowed_passed_screen)", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_account", "Application": "ExecIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Priority": "17", "AppData": "0?Set(CALLERID(pres)=prohib_passed_screen)", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_account", "Application": "ExecIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Priority": "18", "AppData": "0?Set(CHANNEL(musicclass)=)", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_account", "Application": "ExecIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Priority": "19", "AppData": "1?continue", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_account", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Priority": "22", "AppData": "osvpi_proc_set_i18n_region,31,1", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_account", "Application": "Gosub", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Variable": "LOCAL(ARGC)", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "0", "content": ""}, - {"Priority": "1", "AppData": "i18n_region=NL", "Extension": "31", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_i18n_region", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Variable": "i18n_region", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "NL", "content": ""}, - {"Priority": "2", "AppData": "", "Extension": "31", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_i18n_region", "Application": "Return", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Variable": "GOSUB_RETVAL", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Priority": "23", "AppData": "osvpi_account_emergency_NL,203,1", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_account", "Application": "Goto", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Priority": "1", "AppData": "osvpi_account_no_emergency,203,1", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_account_emergency_NL", "Application": "Goto", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Priority": "1", "AppData": "osvpi_account,203,no-emergency", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_account_no_emergency", "Application": "Goto", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Priority": "24", "AppData": "osvpi_account_clean,203,1", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_account", "Application": "Goto", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Priority": "1", "AppData": "return=osvpi_account_clean", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Variable": "return", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "osvpi_account_clean", "content": ""}, - {"Priority": "2", "AppData": "osvpi_return_to_canonical,31i203,1", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Application": "Goto", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Variable": "INVALID_EXTEN", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "31i203", "content": ""}, - {"Priority": "1", "AppData": "osvpi_account_clean,203,local", "Extension": "i", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_return_to_canonical", "Application": "Goto", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Priority": "3", "AppData": "0?extern", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Priority": "4", "AppData": "osvpi_proc_set_callerid,203,1(150010004,0,0)", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Application": "Gosub", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Variable": "LOCAL(ARG1)", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "150010004", "content": ""}, - {"Variable": "LOCAL(ARG2)", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "0", "content": ""}, - {"Variable": "LOCAL(ARG3)", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "0", "content": ""}, - {"Variable": "LOCAL(ARGC)", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "3", "content": ""}, - {"Priority": "1", "AppData": "0?done", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Variable": "ODBCROWS", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "1", "content": ""}, - {"Variable": "ODBCSTATUS", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "SUCCESS", "content": ""}, - {"Variable": "~ODBCFIELDS~", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "set,privacy,name,number_int,number_ext", "content": ""}, - {"Priority": "2", "AppData": "ARRAY(LOCAL(set),LOCAL(privacy),LOCAL(name),LOCAL(number_int),LOCAL(number_ext))=1,0,Jonathan Carey,204,+31150010001", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Variable": "LOCAL(set)", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "1", "content": ""}, - {"Variable": "LOCAL(privacy)", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "0", "content": ""}, - {"Variable": "LOCAL(name)", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "Jonathan Carey", "content": ""}, - {"Variable": "LOCAL(number_int)", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "204", "content": ""}, - {"Variable": "LOCAL(number_ext)", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "+31150010001", "content": ""}, - {"Priority": "3", "AppData": "0?presentation", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Priority": "4", "AppData": "CALLERID(pres)=allowed_passed_screen", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Priority": "5", "AppData": "CALLERID(name)=Jonathan Carey", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"CallerIDNum": "150010004", "content": "", "Channel": "SIP/150010004-0000001d", "Event": "NewCallerid", "CallerIDName": "Jonathan Carey", "Privilege": "call,all", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Priority": "6", "AppData": "CALLERID(num)=204", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"CallerIDNum": "204", "content": "", "Channel": "SIP/150010004-0000001d", "Event": "NewCallerid", "CallerIDName": "Jonathan Carey", "Privilege": "call,all", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Priority": "7", "AppData": "0?Set(CALLERID(pres)=prohib_passed_screen)", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Application": "ExecIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Priority": "8", "AppData": "CALLERID(ANI)=204", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Priority": "9", "AppData": "osvpi_proc_set_callerid_internal,203,1", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Application": "Gosub", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Variable": "LOCAL(ARG1)", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Variable": "LOCAL(ARG2)", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Variable": "LOCAL(ARG3)", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Variable": "LOCAL(ARGC)", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "0", "content": ""}, - {"Priority": "1", "AppData": "1?nop", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid_internal", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Priority": "5", "AppData": "0?Set(CALLERID(ANI)=20)", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid_internal", "Application": "ExecIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Priority": "6", "AppData": "", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid_internal", "Application": "Return", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Variable": "GOSUB_RETVAL", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Priority": "10", "AppData": "", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Application": "Return", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Variable": "GOSUB_RETVAL", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Priority": "5", "AppData": "3?osvpi_account_call_int,203,1:i,1", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Priority": "1", "AppData": "osvpi_proc_check_limits,203,1", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Application": "Gosub", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Variable": "LOCAL(ARGC)", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "0", "content": ""}, - {"Priority": "1", "AppData": "DEBUG: call_limit: client 1/0 and account 0/4", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Application": "NoOp", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Priority": "2", "AppData": "0?osvpi_handle_limit,203,client", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Priority": "3", "AppData": "0?osvpi_handle_limit,203,account", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Priority": "4", "AppData": "GROUP(account_lim)=150010004", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Priority": "5", "AppData": "GROUP(client_lim)=15001", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Priority": "6", "AppData": "", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Application": "Return", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Variable": "GOSUB_RETVAL", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Priority": "2", "AppData": "osvpi_proc_check_recurse,203,1(15001)", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Application": "Gosub", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Variable": "LOCAL(ARG1)", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "15001", "content": ""}, - {"Variable": "LOCAL(ARGC)", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "1", "content": ""}, - {"Priority": "1", "AppData": "LOCAL(exten)=15001:203", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Variable": "LOCAL(exten)", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "15001:203", "content": ""}, - {"Priority": "2", "AppData": "Recursion checking 15001:203 against ", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Application": "NoOp", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Priority": "3", "AppData": "LOCAL(n)=0", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Variable": "LOCAL(n)", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "0", "content": ""}, - {"Priority": "4", "AppData": "LOCAL(i)=1", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Variable": "LOCAL(i)", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "1", "content": ""}, - {"Priority": "5", "AppData": "1?add", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Priority": "9", "AppData": "__EXTEN_LIST=15001:203 ", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Variable": "__EXTEN_LIST", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "15001:203 ", "content": ""}, - {"Priority": "10", "AppData": "__EXTEN_LIST_LAST_EDIT_TIME=1509119799", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Variable": "__EXTEN_LIST_LAST_EDIT_TIME", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "1509119799", "content": ""}, - {"Priority": "11", "AppData": "", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Application": "Return", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Variable": "GOSUB_RETVAL", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Priority": "3", "AppData": "__ORIG_EXTEN=203", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Variable": "__ORIG_EXTEN", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "203", "content": ""}, - {"Variable": "ODBCROWS", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "0", "content": ""}, - {"Variable": "ODBCSTATUS", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "NODATA", "content": ""}, - {"Priority": "4", "AppData": "ARRAY(conference_id,user_password,admin_password,conference_language)=", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Variable": "conference_id", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Variable": "user_password", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Variable": "admin_password", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Variable": "conference_language", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Priority": "5", "AppData": "0?osvpi_route_conference,ID,1", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Variable": "ODBCROWS", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "0", "content": ""}, - {"Variable": "ODBCSTATUS", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "NODATA", "content": ""}, - {"Priority": "6", "AppData": "ARRAY(route_id,client_timezone)=", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Variable": "route_id", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Variable": "client_timezone", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Priority": "7", "AppData": "0?osvpi_route_root,203,restart", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Variable": "ODBCROWS", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "0", "content": ""}, - {"Variable": "ODBCSTATUS", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "NODATA", "content": ""}, - {"Priority": "8", "AppData": "ARRAY(all_extensions,limited_extensions,password,account_spy_language)=", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Variable": "all_extensions", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Variable": "limited_extensions", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Variable": "password", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Variable": "account_spy_language", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Priority": "9", "AppData": "0?osvpi_account_spy,203,1", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Variable": "ODBCROWS", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "1", "content": ""}, - {"Variable": "ODBCSTATUS", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "SUCCESS", "content": ""}, - {"Variable": "~ODBCFIELDS~", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "interfaces", "content": ""}, - {"Priority": "10", "AppData": "ARRAY(interfaces)=Local/ID690152@osvpi_route_phoneaccount", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Variable": "interfaces", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "Local/ID690152@osvpi_route_phoneaccount", "content": ""}, - {"Priority": "11", "AppData": "0?osvpi_handle_unallocated,203,1", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Priority": "12", "AppData": "Local/ID690152@osvpi_route_phoneaccount", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Application": "Dial", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Variable": "DIALSTATUS", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Variable": "DIALEDPEERNUMBER", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Variable": "DIALEDPEERNAME", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Variable": "ANSWEREDTIME", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Variable": "DIALEDTIME", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"CallerIDNum": "", "Context": "osvpi_route_phoneaccount", "content": "", "Privilege": "call,all", "ChannelState": "0", "Event": "Newchannel", "Exten": "ID690152", "AccountCode": "", "Uniqueid": "0f00dcaa884f-1509119799.71", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;1", "CallerIDName": "", "ChannelStateDesc": "Down"}, - {"CallerIDNum": "", "Context": "osvpi_route_phoneaccount", "content": "", "Privilege": "call,all", "ChannelState": "4", "Event": "Newchannel", "Exten": "ID690152", "AccountCode": "", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "CallerIDName": "", "ChannelStateDesc": "Ring"}, - {"Variable": "DIALEDPEERNUMBER", "Uniqueid": "0f00dcaa884f-1509119799.71", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;1", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "ID690152@osvpi_route_phoneaccount", "content": ""}, - {"CallerIDNum": "203", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;1", "Event": "NewCallerid", "CallerIDName": "", "Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Uniqueid": "0f00dcaa884f-1509119799.71"}, - {"Uniqueid2": "0f00dcaa884f-1509119799.72", "Context": "osvpi_route_phoneaccount", "content": "", "Event": "LocalBridge", "Channel1": "Local/ID690152@osvpi_route_phoneaccount-00000014;1", "Privilege": "call,all", "Exten": "ID690152", "LocalOptimization": "Yes", "Channel2": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Uniqueid1": "0f00dcaa884f-1509119799.71"}, - {"Dialstring": "ID690152@osvpi_route_phoneaccount", "Destination": "Local/ID690152@osvpi_route_phoneaccount-00000014;1", "CallerIDNum": "204", "UniqueID": "0f00dcaa884f-1509119799.70", "Event": "Dial", "Privilege": "call,all", "ConnectedLineName": "", "ConnectedLineNum": "", "SubEvent": "Begin", "DestUniqueID": "0f00dcaa884f-1509119799.71", "Channel": "SIP/150010004-0000001d", "CallerIDName": "Jonathan Carey", "content": ""}, - {"Variable": "ODBCROWS", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "1", "content": ""}, - {"Variable": "ODBCSTATUS", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "SUCCESS", "content": ""}, - {"Variable": "~ODBCFIELDS~", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account", "content": ""}, - {"Priority": "1", "AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=150010003,accountid,dutch,from,,0", "Extension": "ID690152", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.72"}, - {"Variable": "__dst_account_id", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "150010003", "content": ""}, - {"Variable": "l_mangle_did", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "accountid", "content": ""}, - {"Variable": "l_mangle_cli", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "dutch", "content": ""}, - {"Variable": "l_cli_header", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "from", "content": ""}, - {"Variable": "l_primary_pickupgroup", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Variable": "app_account", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "0", "content": ""}, - {"Priority": "2", "AppData": "0?vialer", "Extension": "ID690152", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.72"}, - {"Priority": "3", "AppData": "_PICKUPMARK=", "Extension": "ID690152", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.72"}, - {"Variable": "_PICKUPMARK", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Priority": "4", "AppData": "l_trunk=0", "Extension": "ID690152", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.72"}, - {"Variable": "l_trunk", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "0", "content": ""}, - {"Priority": "5", "AppData": "osvpi_route_account,ID690152,1", "Extension": "ID690152", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Application": "Goto", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.72"}, - {"Variable": "ODBCROWS", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "1", "content": ""}, - {"Variable": "ODBCSTATUS", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "SUCCESS", "content": ""}, - {"Variable": "~ODBCFIELDS~", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "proxy", "content": ""}, - {"Priority": "1", "AppData": "ARRAY(l_proxy)=172.20.0.13", "Extension": "ID690152", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.72"}, - {"Variable": "l_proxy", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "172.20.0.13", "content": ""}, - {"Priority": "2", "AppData": "osvpi_proc_mangle_number,accountid,1(150010003,203)", "Extension": "ID690152", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Application": "Gosub", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.72"}, - {"Variable": "LOCAL(ARG1)", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "150010003", "content": ""}, - {"Variable": "LOCAL(ARG2)", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "203", "content": ""}, - {"Variable": "LOCAL(ARGC)", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "2", "content": ""}, - {"Priority": "1", "AppData": "MANGLED_EXTEN=150010003", "Extension": "accountid", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.72"}, - {"Variable": "MANGLED_EXTEN", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "150010003", "content": ""}, - {"Priority": "2", "AppData": "", "Extension": "accountid", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Application": "Return", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.72"}, - {"Variable": "GOSUB_RETVAL", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Priority": "3", "AppData": "l_did=150010003", "Extension": "ID690152", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.72"}, - {"Variable": "l_did", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "150010003", "content": ""}, - {"Priority": "4", "AppData": "osvpi_proc_mangle_number,dutch,1(150010003,204)", "Extension": "ID690152", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Application": "Gosub", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.72"}, - {"Variable": "LOCAL(ARG1)", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "150010003", "content": ""}, - {"Variable": "LOCAL(ARG2)", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "204", "content": ""}, - {"Variable": "LOCAL(ARGC)", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "2", "content": ""}, - {"Priority": "1", "AppData": "1?fullzero,1", "Extension": "dutch", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.72"}, - {"Priority": "1", "AppData": "MANGLED_EXTEN=204", "Extension": "fullzero", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.72"}, - {"Variable": "MANGLED_EXTEN", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "204", "content": ""}, - {"Priority": "2", "AppData": "", "Extension": "fullzero", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Application": "Return", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.72"}, - {"Variable": "GOSUB_RETVAL", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Priority": "5", "AppData": "l_mangle_cli_hdr=from-dutch", "Extension": "ID690152", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.72"}, - {"Variable": "l_mangle_cli_hdr", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "from-dutch", "content": ""}, - {"Priority": "6", "AppData": "l_fromuser=", "Extension": "ID690152", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.72"}, - {"Variable": "l_fromuser", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Priority": "7", "AppData": "1?Set(l_fromuser=204)", "Extension": "ID690152", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Application": "ExecIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.72"}, - {"Variable": "l_fromuser", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "204", "content": ""}, - {"Variable": "ODBCROWS", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "1", "content": ""}, - {"Variable": "ODBCSTATUS", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "SUCCESS", "content": ""}, - {"Variable": "~ODBCFIELDS~", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "IF((SELECT 1 FROM baseaccount_account ba INNER JOIN userdestination_selecteduserdestination udsud ON udsud.phoneaccount_id = ba.id INNER JOIN userdestination_userdestination udud ON udud.id = udsud.userdestination_id INNER JOIN crm_cloudctiuser cccu O", "content": ""}, - {"Priority": "8", "AppData": "ARRAY(cloudcti)=0", "Extension": "ID690152", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.72"}, - {"Variable": "cloudcti", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "0", "content": ""}, - {"Priority": "9", "AppData": "1?skipcloudcti", "Extension": "ID690152", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.72"}, - {"Variable": "ODBCROWS", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "1", "content": ""}, - {"Variable": "ODBCSTATUS", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "SUCCESS", "content": ""}, - {"Variable": "~ODBCFIELDS~", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "GROUP_CONCAT(DISTINCT(csw.url) SEPARATOR ' '),internal_number,GROUP_CONCAT(DISTINCT(ud.internal_number) SEPARATOR ' ')", "content": ""}, - {"Priority": "11", "AppData": "ARRAY(webhooks,accountinternalnumber,userinternalnumbers)=,203,", "Extension": "ID690152", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.72"}, - {"Variable": "webhooks", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Variable": "accountinternalnumber", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "203", "content": ""}, - {"Variable": "userinternalnumbers", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Priority": "13", "AppData": "osvpi_proc_proxy_out,203,1", "Extension": "ID690152", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Privilege": "dialplan,all", "Context": "osvpi_route_account", "Application": "Goto", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.72"}, - {"Priority": "1", "AppData": "X-Accountcode: 150010003", "Extension": "203", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Application": "SIPAddHeader", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.72"}, - {"Variable": "__SIPADDHEADER01", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "X-Accountcode: 150010003", "content": ""}, - {"Priority": "2", "AppData": "X-Insecure-Protection: geheim", "Extension": "203", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Application": "SIPAddHeader", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.72"}, - {"Variable": "__SIPADDHEADER02", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "X-Insecure-Protection: geheim", "content": ""}, - {"Priority": "3", "AppData": "X-Mangle-Cli: from-dutch", "Extension": "203", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Application": "SIPAddHeader", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.72"}, - {"Variable": "__SIPADDHEADER03", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "X-Mangle-Cli: from-dutch", "content": ""}, - {"Priority": "4", "AppData": "_dial_options_callaccept=", "Extension": "203", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.72"}, - {"Variable": "_dial_options_callaccept", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Priority": "5", "AppData": "_dial_options_callnotify=", "Extension": "203", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.72"}, - {"Variable": "_dial_options_callnotify", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Priority": "6", "AppData": "0?Set(l_proxy=opensipsfg)", "Extension": "203", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Application": "ExecIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.72"}, - {"Priority": "7", "AppData": "l_extra_options=", "Extension": "203", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Application": "Set", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.72"}, - {"Variable": "l_extra_options", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Priority": "8", "AppData": "SIP/150010003/150010003/172.20.0.13!!204,,", "Extension": "203", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Application": "Dial", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.72"}, - {"Variable": "DIALSTATUS", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Variable": "DIALEDPEERNUMBER", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Variable": "DIALEDPEERNAME", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Variable": "ANSWEREDTIME", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"Variable": "DIALEDTIME", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "", "content": ""}, - {"CallerIDNum": "", "Context": "osvpi_account", "content": "", "Privilege": "call,all", "ChannelState": "0", "Event": "Newchannel", "Exten": "", "AccountCode": "150010003", "Uniqueid": "0f00dcaa884f-1509119799.73", "Channel": "SIP/150010003-0000001e", "CallerIDName": "", "ChannelStateDesc": "Down"}, - {"Variable": "SIPCALLID", "Uniqueid": "0f00dcaa884f-1509119799.73", "Channel": "SIP/150010003-0000001e", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "3497add713171d312facbe6744e47a09@test.voipgrid.nl", "content": ""}, - {"Variable": "__client_id", "Uniqueid": "0f00dcaa884f-1509119799.73", "Channel": "SIP/150010003-0000001e", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "15001", "content": ""}, - {"Variable": "__account_id", "Uniqueid": "0f00dcaa884f-1509119799.73", "Channel": "SIP/150010003-0000001e", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "150010003", "content": ""}, - {"Variable": "__record_call", "Uniqueid": "0f00dcaa884f-1509119799.73", "Channel": "SIP/150010003-0000001e", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "no", "content": ""}, - {"Variable": "__intprefix", "Uniqueid": "0f00dcaa884f-1509119799.73", "Channel": "SIP/150010003-0000001e", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "31", "content": ""}, - {"Variable": "__limit_account", "Uniqueid": "0f00dcaa884f-1509119799.73", "Channel": "SIP/150010003-0000001e", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "4", "content": ""}, - {"Variable": "__limit_client", "Uniqueid": "0f00dcaa884f-1509119799.73", "Channel": "SIP/150010003-0000001e", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "0", "content": ""}, - {"Variable": "__hide_ext_cliname", "Uniqueid": "0f00dcaa884f-1509119799.73", "Channel": "SIP/150010003-0000001e", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "1", "content": ""}, - {"Variable": "__TRANSFER_CONTEXT", "Uniqueid": "0f00dcaa884f-1509119799.73", "Channel": "SIP/150010003-0000001e", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "osvpi_account_transfer", "content": ""}, - {"Variable": "DIALEDPEERNUMBER", "Uniqueid": "0f00dcaa884f-1509119799.73", "Channel": "SIP/150010003-0000001e", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "150010003/150010003/172.20.0.13!!204", "content": ""}, - {"CallerIDNum": "203", "content": "", "Channel": "SIP/150010003-0000001e", "Event": "NewCallerid", "CallerIDName": "", "Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Uniqueid": "0f00dcaa884f-1509119799.73"}, - {"Dialstring": "150010003/150010003/172.20.0.13!!204", "Destination": "SIP/150010003-0000001e", "CallerIDNum": "204", "UniqueID": "0f00dcaa884f-1509119799.72", "Event": "Dial", "Privilege": "call,all", "ConnectedLineName": "", "ConnectedLineNum": "203", "SubEvent": "Begin", "DestUniqueID": "0f00dcaa884f-1509119799.73", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "CallerIDName": "Jonathan Carey", "content": ""}, - {"CallerIDNum": "203", "ConnectedLineNum": "204", "content": "", "Channel": "SIP/150010003-0000001e", "Event": "Newstate", "CallerIDName": "", "Uniqueid": "0f00dcaa884f-1509119799.73", "ChannelState": "5", "Privilege": "call,all", "ConnectedLineName": "Jonathan Carey", "ChannelStateDesc": "Ringing"}, - {"CallerIDNum": "203", "ConnectedLineNum": "204", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;1", "Event": "Newstate", "CallerIDName": "", "Uniqueid": "0f00dcaa884f-1509119799.71", "ChannelState": "5", "Privilege": "call,all", "ConnectedLineName": "Jonathan Carey", "ChannelStateDesc": "Ringing"}, - {"FractionLost": "0", "SentRTP": "40000", "content": "", "Privilege": "reporting,all", "OurSSRC": "2066404647", "Event": "RTCPSent", "IAJitter": "0.0002", "DLSR": "22329.5110 (sec)", "CumulativeLoss": "0", "SentNTP": "1509119801.2096275456", "SentOctets": "40000", "TheirLastSR": "0", "To": "172.20.0.254:50383", "SentPackets": "250"}, - {"CallerIDNum": "203", "content": "", "Event": "Hangup", "Privilege": "call,all", "ConnectedLineName": "Jonathan Carey", "ConnectedLineNum": "204", "AccountCode": "150010004", "Uniqueid": "0f00dcaa884f-1509119799.73", "Channel": "SIP/150010003-0000001e", "Cause": "21", "CallerIDName": "", "Cause-txt": "Call Rejected"}, - {"Variable": "DIALSTATUS", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "BUSY", "content": ""}, - {"SubEvent": "End", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "content": "", "UniqueID": "0f00dcaa884f-1509119799.72", "Event": "Dial", "Privilege": "call,all", "DialStatus": "BUSY"}, - {"Priority": "9", "AppData": "1?falloff", "Extension": "203", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.72"}, - {"Priority": "12", "AppData": "Got hangupcause 21 from peer 150010003 (did=150010003, cli=204, pres=allowed_passed_screen, status=BUSY, proxy=172.20.0.13)", "Extension": "203", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Application": "NoOp", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.72"}, - {"Priority": "13", "AppData": "0?Hangup(USER_BUSY)", "Extension": "203", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Application": "ExecIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.72"}, - {"Priority": "14", "AppData": "NO_ANSWER", "Extension": "203", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Application": "Hangup", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.72"}, - {"Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Privilege": "call,all", "Event": "SoftHangupRequest", "Cause": "16", "content": ""}, - {"Priority": "1", "AppData": "1?nosip", "Extension": "onhangup", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Privilege": "dialplan,all", "Context": "handlers", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.72"}, - {"Priority": "3", "AppData": "0?osvpi_proc_httptouch,s,1()", "Extension": "onhangup", "content": "", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Privilege": "dialplan,all", "Context": "handlers", "Application": "GosubIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.72"}, - {"Variable": "CHANLOCALSTATUS", "Uniqueid": "0f00dcaa884f-1509119799.71", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;1", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "BUSY", "content": ""}, - {"CallerIDNum": "204", "content": "", "Event": "Hangup", "Privilege": "call,all", "ConnectedLineName": "", "ConnectedLineNum": "203", "AccountCode": "150010004", "Uniqueid": "0f00dcaa884f-1509119799.72", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;2", "Cause": "19", "CallerIDName": "Jonathan Carey", "Cause-txt": "User alerting, no answer"}, - {"CallerIDNum": "203", "content": "", "Event": "Hangup", "Privilege": "call,all", "ConnectedLineName": "Jonathan Carey", "ConnectedLineNum": "204", "AccountCode": "150010004", "Uniqueid": "0f00dcaa884f-1509119799.71", "Channel": "Local/ID690152@osvpi_route_phoneaccount-00000014;1", "Cause": "19", "CallerIDName": "", "Cause-txt": "User alerting, no answer"}, - {"Variable": "DIALSTATUS", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "NOANSWER", "content": ""}, - {"SubEvent": "End", "Channel": "SIP/150010004-0000001d", "content": "", "UniqueID": "0f00dcaa884f-1509119799.70", "Event": "Dial", "Privilege": "call,all", "DialStatus": "NOANSWER"}, - {"Priority": "13", "AppData": "1?osvpi_proc_hangup,203,1", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Priority": "1", "AppData": "19", "Extension": "203", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "osvpi_proc_hangup", "Application": "Hangup", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Privilege": "call,all", "Event": "SoftHangupRequest", "Cause": "16", "content": ""}, - {"Priority": "1", "AppData": "0?nosip", "Extension": "onhangup", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "handlers", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Priority": "2", "AppData": "LOG: rtpqos: caller=172.20.0.254:64154;asterisk=0.0.0.0:12590;ssrc=479040026;themssrc=0;lp=0;rxjitter=0.000000;rxcount=0;txjitter=0.000000;txcount=0;rlp=0;rtt=0.000000;billsec=0", "Extension": "onhangup", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "handlers", "Application": "NoOp", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"Priority": "3", "AppData": "0?osvpi_proc_httptouch,s,1()", "Extension": "onhangup", "content": "", "Channel": "SIP/150010004-0000001d", "Privilege": "dialplan,all", "Context": "handlers", "Application": "GosubIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119799.70"}, - {"CallerIDNum": "204", "content": "", "Event": "Hangup", "Privilege": "call,all", "ConnectedLineName": "", "ConnectedLineNum": "", "AccountCode": "150010004", "Uniqueid": "0f00dcaa884f-1509119799.70", "Channel": "SIP/150010004-0000001d", "Cause": "19", "CallerIDName": "Jonathan Carey", "Cause-txt": "User alerting, no answer"}, - {"Channel": "SIP/150010002-0000001b", "UniqueID": "0f00dcaa884f-1509119790.66", "Privilege": "call,all", "State": "Stop", "Event": "MusicOnHold", "content": ""}, - {"FractionLost": "0", "SentRTP": "79680", "content": "", "Privilege": "reporting,all", "OurSSRC": "2066404647", "Event": "RTCPSent", "IAJitter": "0.0004", "DLSR": "22334.5120 (sec)", "CumulativeLoss": "0", "SentNTP": "1509119806.2098024448", "SentOctets": "79680", "TheirLastSR": "0", "To": "172.20.0.254:50383", "SentPackets": "498"}, - {"Variable": "RTPAUDIOQOS", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "ssrc=2066404647;themssrc=1385041537;lp=0;rxjitter=0.000000;rxcount=499;txjitter=0.000359;txcount=498;rlp=0;rtt=0.000000", "content": ""}, - {"Variable": "RTPAUDIOQOSBRIDGED", "Uniqueid": "0f00dcaa884f-1509119790.67", "Channel": "SIP/150010004-0000001c", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "ssrc=2066404647;themssrc=1385041537;lp=0;rxjitter=0.000000;rxcount=499;txjitter=0.000359;txcount=498;rlp=0;rtt=0.000000", "content": ""}, - {"Variable": "RTPAUDIOQOSJITTER", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "content": ""}, - {"Variable": "RTPAUDIOQOSJITTERBRIDGED", "Uniqueid": "0f00dcaa884f-1509119790.67", "Channel": "SIP/150010004-0000001c", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "content": ""}, - {"Variable": "RTPAUDIOQOSLOSS", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "content": ""}, - {"Variable": "RTPAUDIOQOSLOSSBRIDGED", "Uniqueid": "0f00dcaa884f-1509119790.67", "Channel": "SIP/150010004-0000001c", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "content": ""}, - {"Variable": "RTPAUDIOQOSRTT", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "content": ""}, - {"Variable": "RTPAUDIOQOSRTTBRIDGED", "Uniqueid": "0f00dcaa884f-1509119790.67", "Channel": "SIP/150010004-0000001c", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "content": ""}, - {"Variable": "RTPAUDIOQOS", "Uniqueid": "0f00dcaa884f-1509119790.67", "Channel": "SIP/150010004-0000001c", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "ssrc=1186031862;themssrc=4203539877;lp=0;rxjitter=0.000000;rxcount=1;txjitter=0.000000;txcount=0;rlp=0;rtt=0.000000", "content": ""}, - {"Variable": "RTPAUDIOQOSBRIDGED", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "ssrc=1186031862;themssrc=4203539877;lp=0;rxjitter=0.000000;rxcount=1;txjitter=0.000000;txcount=0;rlp=0;rtt=0.000000", "content": ""}, - {"Variable": "RTPAUDIOQOSJITTER", "Uniqueid": "0f00dcaa884f-1509119790.67", "Channel": "SIP/150010004-0000001c", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "content": ""}, - {"Variable": "RTPAUDIOQOSJITTERBRIDGED", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "content": ""}, - {"Variable": "RTPAUDIOQOSLOSS", "Uniqueid": "0f00dcaa884f-1509119790.67", "Channel": "SIP/150010004-0000001c", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "content": ""}, - {"Variable": "RTPAUDIOQOSLOSSBRIDGED", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "content": ""}, - {"Variable": "RTPAUDIOQOSRTT", "Uniqueid": "0f00dcaa884f-1509119790.67", "Channel": "SIP/150010004-0000001c", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "content": ""}, - {"Variable": "RTPAUDIOQOSRTTBRIDGED", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "content": ""}, - {"content": "", "Privilege": "call,all", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "HangupRequest"}, - {"Bridgestate": "Unlink", "CallerID2": "204", "Uniqueid2": "0f00dcaa884f-1509119790.67", "Bridgetype": "core", "CallerID1": "202", "Uniqueid1": "0f00dcaa884f-1509119790.66", "Event": "Bridge", "Channel1": "SIP/150010002-0000001b", "Privilege": "call,all", "Channel2": "SIP/150010004-0000001c", "content": ""}, - {"Variable": "ANSWEREDTIME", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "18", "content": ""}, - {"Variable": "DIALEDTIME", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "19", "content": ""}, - {"Variable": "RTPAUDIOQOS", "Uniqueid": "0f00dcaa884f-1509119790.67", "Channel": "SIP/150010004-0000001c", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "ssrc=1186031862;themssrc=4203539877;lp=0;rxjitter=0.000000;rxcount=1;txjitter=0.000000;txcount=0;rlp=0;rtt=0.000000", "content": ""}, - {"Variable": "RTPAUDIOQOSJITTER", "Uniqueid": "0f00dcaa884f-1509119790.67", "Channel": "SIP/150010004-0000001c", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "content": ""}, - {"Variable": "RTPAUDIOQOSLOSS", "Uniqueid": "0f00dcaa884f-1509119790.67", "Channel": "SIP/150010004-0000001c", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "content": ""}, - {"Variable": "RTPAUDIOQOSRTT", "Uniqueid": "0f00dcaa884f-1509119790.67", "Channel": "SIP/150010004-0000001c", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "content": ""}, - {"Variable": "RTPAUDIOQOS", "Uniqueid": "0f00dcaa884f-1509119790.67", "Channel": "SIP/150010004-0000001c", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "ssrc=1186031862;themssrc=4203539877;lp=0;rxjitter=0.000000;rxcount=1;txjitter=0.000000;txcount=0;rlp=0;rtt=0.000000", "content": ""}, - {"CallerIDNum": "204", "content": "", "Event": "Hangup", "Privilege": "call,all", "ConnectedLineName": "David Meadows", "ConnectedLineNum": "202", "AccountCode": "150010002", "Uniqueid": "0f00dcaa884f-1509119790.67", "Channel": "SIP/150010004-0000001c", "Cause": "16", "CallerIDName": "", "Cause-txt": "Normal Clearing"}, - {"Variable": "DIALSTATUS", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Event": "VarSet", "Privilege": "dialplan,all", "Value": "ANSWER", "content": ""}, - {"SubEvent": "End", "Channel": "SIP/150010002-0000001b", "content": "", "UniqueID": "0f00dcaa884f-1509119790.66", "Event": "Dial", "Privilege": "call,all", "DialStatus": "ANSWER"}, - {"Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Privilege": "call,all", "Event": "SoftHangupRequest", "Cause": "16", "content": ""}, - {"Priority": "1", "AppData": "0?nosip", "Extension": "onhangup", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "handlers", "Application": "GotoIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Priority": "2", "AppData": "LOG: rtpqos: caller=(null);asterisk=0.0.0.0:13782;ssrc=2066404647;themssrc=1385041537;lp=0;rxjitter=0.000000;rxcount=499;txjitter=0.000359;txcount=498;rlp=0;rtt=0.000000;billsec=0", "Extension": "onhangup", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "handlers", "Application": "NoOp", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"Priority": "3", "AppData": "0?osvpi_proc_httptouch,s,1()", "Extension": "onhangup", "content": "", "Channel": "SIP/150010002-0000001b", "Privilege": "dialplan,all", "Context": "handlers", "Application": "GosubIf", "Event": "Newexten", "Uniqueid": "0f00dcaa884f-1509119790.66"}, - {"CallerIDNum": "202", "content": "", "Event": "Hangup", "Privilege": "call,all", "ConnectedLineName": "", "ConnectedLineNum": "", "AccountCode": "150010002", "Uniqueid": "0f00dcaa884f-1509119790.66", "Channel": "SIP/150010002-0000001b", "Cause": "16", "CallerIDName": "David Meadows", "Cause-txt": "Normal Clearing"} + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000a1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newchannel", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530025486.2901", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2901", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000a1", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530025486.2901", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2901", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000a1", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530025486.2901", "Priority": "10", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2901", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000067;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730150", "Language": "en", "Linkedid": "f29ea68048f6-1530025486.2901", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2904", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000067;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730150", "Language": "en", "Linkedid": "f29ea68048f6-1530025486.2901", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2906", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000067;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530025486.2901", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2904", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000067;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530025486.2901", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2904", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000067;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530025486.2901", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2904", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000067;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730150", "Language": "en", "Linkedid": "f29ea68048f6-1530025486.2901", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2906", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000067;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730150", "Language": "en", "Linkedid": "f29ea68048f6-1530025486.2901", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2906", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000067;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730150", "Language": "en", "Linkedid": "f29ea68048f6-1530025486.2901", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2906", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730150", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31150010001", "LocalOneChannel": "Local/ID730150@osvpi_route_phoneaccount-00000067;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31260010001", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "+31150010001", "LocalOneLanguage": "en", "LocalOneLinkedid": "f29ea68048f6-1530025486.2901", "LocalOnePriority": "1", "LocalOneUniqueid": "f29ea68048f6-1530025486.2904", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31260010001", "LocalTwoChannel": "Local/ID730150@osvpi_route_phoneaccount-00000067;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31150010001", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730150", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "f29ea68048f6-1530025486.2901", "LocalTwoPriority": "1", "LocalTwoUniqueid": "f29ea68048f6-1530025486.2906", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000a1", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/ID730150@osvpi_route_phoneaccount-00000067;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "+31150010001", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530025486.2901", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530025486.2904", "DialString": "ID730150@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530025486.2901", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2901", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010001-000000a2", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "f29ea68048f6-1530025486.2901", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2909", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-000000a2", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530025486.2901", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2909", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-000000a2", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530025486.2901", "OldAccountCode": "150010001", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2909", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-000000a2", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530025486.2901", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2909", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000067;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "SIP/150010001-000000a2", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "+31150010001", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530025486.2901", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530025486.2909", "DialString": "150010001/150010001/172.20.0.13!!0260010001", "Event": "DialBegin", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530025486.2901", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2906", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-000000a2", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530025486.2901", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2909", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000067;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530025486.2901", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2904", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-000000a2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530025486.2901", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2909", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000067;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "SIP/150010001-000000a2", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530025486.2901", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530025486.2909", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530025486.2901", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2906", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000067;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530025486.2901", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2906", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000067;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530025486.2901", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2904", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "94df5cc4-c141-40c2-a23a-9ff65209dfb4", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000a1", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/ID730150@osvpi_route_phoneaccount-00000067;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530025486.2901", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530025486.2904", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530025486.2901", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2901", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000a1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530025486.2901", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2901", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "94df5cc4-c141-40c2-a23a-9ff65209dfb4", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-000000a2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530025486.2901", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2909", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "94df5cc4-c141-40c2-a23a-9ff65209dfb4", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000067;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530025486.2901", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2906", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "6f1e6047-fd15-4dd3-a3ea-55f1ed584268", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "56d54e1e-4d25-4a9c-88a6-3dd21a571c84", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "7c8cfbca-595d-4fae-8545-6533b1c39ffe", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "6f1e6047-fd15-4dd3-a3ea-55f1ed584268", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000067;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530025486.2901", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2904", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "6f1e6047-fd15-4dd3-a3ea-55f1ed584268", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000a1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530025486.2901", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2901", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "94df5cc4-c141-40c2-a23a-9ff65209dfb4", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-000000a2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530025486.2901", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2909", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "6f1e6047-fd15-4dd3-a3ea-55f1ed584268", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000067;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530025486.2901", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2904", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "6f1e6047-fd15-4dd3-a3ea-55f1ed584268", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-000000a2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530025486.2901", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "f29ea68048f6-1530025486.2904", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2909", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "94df5cc4-c141-40c2-a23a-9ff65209dfb4", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000067;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "en", "Linkedid": "f29ea68048f6-1530025486.2901", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2906", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000067;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "f29ea68048f6-1530025486.2901", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2904", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "94df5cc4-c141-40c2-a23a-9ff65209dfb4", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000067;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "f29ea68048f6-1530025486.2901", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2906", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "56d54e1e-4d25-4a9c-88a6-3dd21a571c84", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-000000a3", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530025493.2945", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025493.2945", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Local Alice", "CallerIDNum": "150010001", "Channel": "SIP/150010001-000000a3", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530025493.2945", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025493.2945", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "150010001", "Channel": "SIP/150010001-000000a3", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530025493.2945", "Priority": "5", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025493.2945", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-000000a3", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530025493.2945", "Priority": "6", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025493.2945", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000068;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "f29ea68048f6-1530025493.2945", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025493.2948", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000068;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "f29ea68048f6-1530025493.2945", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025493.2950", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000068;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530025493.2945", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025493.2948", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000068;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530025493.2945", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025493.2948", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000068;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530025493.2945", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025493.2948", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000068;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730151", "Language": "en", "Linkedid": "f29ea68048f6-1530025493.2945", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025493.2950", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000068;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730151", "Language": "en", "Linkedid": "f29ea68048f6-1530025493.2945", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025493.2950", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000068;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730151", "Language": "en", "Linkedid": "f29ea68048f6-1530025493.2945", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025493.2950", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730151", "LocalOneAccountCode": "150010001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "202", "LocalOneChannel": "Local/ID730151@osvpi_route_phoneaccount-00000068;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "Andrew Garza", "LocalOneConnectedLineNum": "201", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "202", "LocalOneLanguage": "en", "LocalOneLinkedid": "f29ea68048f6-1530025493.2945", "LocalOnePriority": "1", "LocalOneUniqueid": "f29ea68048f6-1530025493.2948", "LocalOptimization": "Yes", "LocalTwoAccountCode": "150010001", "LocalTwoCallerIDName": "Andrew Garza", "LocalTwoCallerIDNum": "201", "LocalTwoChannel": "Local/ID730151@osvpi_route_phoneaccount-00000068;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "202", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730151", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "f29ea68048f6-1530025493.2945", "LocalTwoPriority": "1", "LocalTwoUniqueid": "f29ea68048f6-1530025493.2950", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-000000a3", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-00000068;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "202", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530025493.2945", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530025493.2948", "DialString": "ID730151@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530025493.2945", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025493.2945", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010002-000000a4", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "f29ea68048f6-1530025493.2945", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025493.2953", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-000000a4", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530025493.2945", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025493.2953", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-000000a4", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530025493.2945", "OldAccountCode": "150010002", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025493.2953", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-000000a4", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530025493.2945", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025493.2953", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000068;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "SIP/150010002-000000a4", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_account", "DestExten": "202", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530025493.2945", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530025493.2953", "DialString": "150010002/150010002/172.20.0.13!!201", "Event": "DialBegin", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530025493.2945", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025493.2950", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-000000a4", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530025493.2945", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025493.2953", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000068;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "Andrew Garza", "ConnectedLineNum": "201", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530025493.2945", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025493.2948", "content": ""}, + {"DestApp": "Dial", "DestType": "App", "Event": "AttendedTransfer", "IsExternal": "No", "OrigBridgeCreator": "", "OrigBridgeName": "", "OrigBridgeNumChannels": "2", "OrigBridgeTechnology": "simple_bridge", "OrigBridgeType": "basic", "OrigBridgeUniqueid": "6f1e6047-fd15-4dd3-a3ea-55f1ed584268", "OrigBridgeVideoSourceMode": "none", "OrigTransfererAccountCode": "15001", "OrigTransfererCallerIDName": "", "OrigTransfererCallerIDNum": "+31150010001", "OrigTransfererChannel": "SIP/150010001-000000a2", "OrigTransfererChannelState": "6", "OrigTransfererChannelStateDesc": "Up", "OrigTransfererConnectedLineName": "", "OrigTransfererConnectedLineNum": "+31260010001", "OrigTransfererContext": "osvpi_account", "OrigTransfererExten": "", "OrigTransfererLanguage": "nl", "OrigTransfererLinkedid": "f29ea68048f6-1530025486.2901", "OrigTransfererPriority": "1", "OrigTransfererUniqueid": "f29ea68048f6-1530025486.2909", "Privilege": "call,all", "Result": "Success", "SecondTransfererAccountCode": "150010001", "SecondTransfererCallerIDName": "Andrew Garza", "SecondTransfererCallerIDNum": "201", "SecondTransfererChannel": "SIP/150010001-000000a3", "SecondTransfererChannelState": "4", "SecondTransfererChannelStateDesc": "Ring", "SecondTransfererConnectedLineName": "", "SecondTransfererConnectedLineNum": "", "SecondTransfererContext": "osvpi_account_call_int", "SecondTransfererExten": "202", "SecondTransfererLanguage": "nl", "SecondTransfererLinkedid": "f29ea68048f6-1530025493.2945", "SecondTransfererPriority": "12", "SecondTransfererUniqueid": "f29ea68048f6-1530025493.2945", "SystemName": "f29ea68048f6", "TransfereeAccountCode": "15001", "TransfereeCallerIDName": "", "TransfereeCallerIDNum": "+31260010001", "TransfereeChannel": "SIP/voipgrid-siproute-docker-000000a1", "TransfereeChannelState": "6", "TransfereeChannelStateDesc": "Up", "TransfereeConnectedLineName": "", "TransfereeConnectedLineNum": "", "TransfereeContext": "osvpi_route_phoneaccount_step", "TransfereeExten": "+31150010001", "TransfereeLanguage": "nl", "TransfereeLinkedid": "f29ea68048f6-1530025486.2901", "TransfereePriority": "1", "TransfereeUniqueid": "f29ea68048f6-1530025486.2901", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "6f1e6047-fd15-4dd3-a3ea-55f1ed584268", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-000000a2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530025486.2901", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2909", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010001-000000a2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "f29ea68048f6-1530025486.2901", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2909", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "6f1e6047-fd15-4dd3-a3ea-55f1ed584268", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000a1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530025486.2901", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2901", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "6f1e6047-fd15-4dd3-a3ea-55f1ed584268", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/150010001-000000a3", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-00000068;1", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "202", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530025493.2945", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530025493.2948", "DialStatus": "NOANSWER", "Event": "DialEnd", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530025493.2945", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025493.2945", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000a1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-00000068;1", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "Andrew Garza", "DestConnectedLineNum": "201", "DestContext": "osvpi_route_phoneaccount", "DestExten": "202", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530025493.2945", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530025493.2948", "DialString": "ID730151@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530025486.2901", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2901", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000a1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "NewAccountCode", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530025486.2901", "OldAccountCode": "15001", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2901", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000a1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "Event": "NewAccountCode", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530025486.2901", "OldAccountCode": "150010001", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2901", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000068;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530025493.2945", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025493.2948", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Channel": "SIP/150010001-000000a3", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "nl", "Linkedid": "f29ea68048f6-1530025493.2945", "OldAccountCode": "150010001", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025493.2945", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-000000a4", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530025493.2945", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025493.2953", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Andrew Garza", "CallerIDNum": "201", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010001-000000a3", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "f29ea68048f6-1530025493.2945", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025493.2945", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000068;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "SIP/150010002-000000a4", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "202", "DestLanguage": "nl", "DestLinkedid": "f29ea68048f6-1530025493.2945", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530025493.2953", "DialStatus": "BUSY", "Event": "DialEnd", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530025493.2945", "Priority": "8", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025493.2950", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Cause": "17", "Cause-txt": "User busy", "Channel": "SIP/150010002-000000a4", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Hangup", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530025493.2945", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025493.2953", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000068;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "NewCallerid", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530025493.2945", "Priority": "9", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025493.2950", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "17", "Cause-txt": "User busy", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000068;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "f29ea68048f6-1530025493.2945", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025493.2950", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-000000a1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account_call_int", "DestAccountCode": "150010001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-00000068;1", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "202", "DestLanguage": "en", "DestLinkedid": "f29ea68048f6-1530025493.2945", "DestPriority": "1", "DestUniqueid": "f29ea68048f6-1530025493.2948", "DialStatus": "BUSY", "Event": "DialEnd", "Exten": "202", "Language": "nl", "Linkedid": "f29ea68048f6-1530025486.2901", "Priority": "12", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2901", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "202", "Cause": "17", "Cause-txt": "User busy", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000068;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "202", "Language": "en", "Linkedid": "f29ea68048f6-1530025493.2945", "Priority": "1", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025493.2948", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "17", "Cause-txt": "User busy", "Channel": "SIP/voipgrid-siproute-docker-000000a1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "f29ea68048f6-1530025486.2901", "Priority": "4", "Privilege": "call,all", "SystemName": "f29ea68048f6", "Uniqueid": "f29ea68048f6-1530025486.2901", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "7c8cfbca-595d-4fae-8545-6533b1c39ffe", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "f29ea68048f6", "content": ""} ] diff --git a/tests/fixtures/xfer_blonde/xfer_blondeanon.json b/tests/fixtures/xfer_blonde/xfer_blondeanon.json deleted file mode 100644 index 1f10451..0000000 --- a/tests/fixtures/xfer_blonde/xfer_blondeanon.json +++ /dev/null @@ -1,97 +0,0 @@ -[ - {"Event":"FullyBooted","Privilege":"system,all","Status":"Fully Booted","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"+31507001918","Channel":"SIP/voipgrid-siproute-dev-00000032","ChannelState":"0","ChannelStateDesc":"Down","Context":"voipgrid_in","Event":"Newchannel","Exten":"+31507001918","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448768.113","content":""}, - {"CallerIDName":"","CallerIDNum":"+31507001918","Channel":"SIP/voipgrid-siproute-dev-00000032","ChannelState":"4","ChannelStateDesc":"Ring","ConnectedLineName":"","ConnectedLineNum":"","Event":"Newstate","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448768.113","content":""}, - {"CID-CallingPres":"33 (Presentation Prohibited, Passed Screen)","CallerIDName":"","CallerIDNum":"+31507xxxxxx","Channel":"SIP/voipgrid-siproute-dev-00000032","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448768.113","content":""}, - {"AccountCode":"12668","Channel":"SIP/voipgrid-siproute-dev-00000032","Event":"NewAccountCode","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448768.113","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"","Channel":"Local/ID12@osvpi_route_phoneaccount-0000001f;1","ChannelState":"0","ChannelStateDesc":"Down","Context":"osvpi_route_phoneaccount","Event":"Newchannel","Exten":"ID12","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448768.114","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"","Channel":"Local/ID12@osvpi_route_phoneaccount-0000001f;2","ChannelState":"4","ChannelStateDesc":"Ring","Context":"osvpi_route_phoneaccount","Event":"Newchannel","Exten":"ID12","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448768.115","content":""}, - {"CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDName":"","CallerIDNum":"+31507001918","Channel":"Local/ID12@osvpi_route_phoneaccount-0000001f;1","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448768.114","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"","Channel":"Local/ID42@osvpi_route_phoneaccount-00000020;1","ChannelState":"0","ChannelStateDesc":"Down","Context":"osvpi_route_phoneaccount","Event":"Newchannel","Exten":"ID42","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448768.116","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"","Channel":"Local/ID42@osvpi_route_phoneaccount-00000020;2","ChannelState":"4","ChannelStateDesc":"Ring","Context":"osvpi_route_phoneaccount","Event":"Newchannel","Exten":"ID42","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448768.117","content":""}, - {"CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDName":"","CallerIDNum":"+31507001918","Channel":"Local/ID42@osvpi_route_phoneaccount-00000020;1","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448768.116","content":""}, - {"Channel1":"Local/ID12@osvpi_route_phoneaccount-0000001f;1","Channel2":"Local/ID12@osvpi_route_phoneaccount-0000001f;2","Context":"osvpi_route_phoneaccount","Event":"LocalBridge","Exten":"ID12","LocalOptimization":"Yes","Privilege":"call,all","Uniqueid1":"vgua0-dev-1443448768.114","Uniqueid2":"vgua0-dev-1443448768.115","content":""}, - {"CallerIDName":"","CallerIDNum":"+31507xxxxxx","Channel":"SIP/voipgrid-siproute-dev-00000032","ConnectedLineName":"","ConnectedLineNum":"","DestUniqueID":"vgua0-dev-1443448768.114","Destination":"Local/ID12@osvpi_route_phoneaccount-0000001f;1","Dialstring":"ID12@osvpi_route_phoneaccount","Event":"Dial","Privilege":"call,all","SubEvent":"Begin","UniqueID":"vgua0-dev-1443448768.113","content":""}, - {"Channel1":"Local/ID42@osvpi_route_phoneaccount-00000020;1","Channel2":"Local/ID42@osvpi_route_phoneaccount-00000020;2","Context":"osvpi_route_phoneaccount","Event":"LocalBridge","Exten":"ID42","LocalOptimization":"Yes","Privilege":"call,all","Uniqueid1":"vgua0-dev-1443448768.116","Uniqueid2":"vgua0-dev-1443448768.117","content":""}, - {"CallerIDName":"","CallerIDNum":"+31507xxxxxx","Channel":"SIP/voipgrid-siproute-dev-00000032","ConnectedLineName":"","ConnectedLineNum":"","DestUniqueID":"vgua0-dev-1443448768.116","Destination":"Local/ID42@osvpi_route_phoneaccount-00000020;1","Dialstring":"ID42@osvpi_route_phoneaccount","Event":"Dial","Privilege":"call,all","SubEvent":"Begin","UniqueID":"vgua0-dev-1443448768.113","content":""}, - {"CID-CallingPres":"33 (Presentation Prohibited, Passed Screen)","CallerIDName":"","CallerIDNum":"Anonymous","Channel":"Local/ID42@osvpi_route_phoneaccount-00000020;2","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448768.117","content":""}, - {"AccountCode":"126680005","CallerIDName":"","CallerIDNum":"","Channel":"SIP/126680005-00000033","ChannelState":"0","ChannelStateDesc":"Down","Context":"osvpi_account","Event":"Newchannel","Exten":"","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448768.118","content":""}, - {"CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDName":"","CallerIDNum":"+31507001918","Channel":"SIP/126680005-00000033","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448768.118","content":""}, - {"CID-CallingPres":"33 (Presentation Prohibited, Passed Screen)","CallerIDName":"","CallerIDNum":"Anonymous","Channel":"Local/ID12@osvpi_route_phoneaccount-0000001f;2","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448768.115","content":""}, - {"CallerIDName":"","CallerIDNum":"Anonymous","Channel":"Local/ID42@osvpi_route_phoneaccount-00000020;2","ConnectedLineName":"","ConnectedLineNum":"+31507001918","DestUniqueID":"vgua0-dev-1443448768.118","Destination":"SIP/126680005-00000033","Dialstring":"126680005/126680005/1.2.3.4","Event":"Dial","Privilege":"call,all","SubEvent":"Begin","UniqueID":"vgua0-dev-1443448768.117","content":""}, - {"AccountCode":"126680002","CallerIDName":"","CallerIDNum":"","Channel":"SIP/126680002-00000034","ChannelState":"0","ChannelStateDesc":"Down","Context":"osvpi_account","Event":"Newchannel","Exten":"","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448768.119","content":""}, - {"CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDName":"","CallerIDNum":"+31507001918","Channel":"SIP/126680002-00000034","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448768.119","content":""}, - {"CallerIDName":"","CallerIDNum":"Anonymous","Channel":"Local/ID12@osvpi_route_phoneaccount-0000001f;2","ConnectedLineName":"","ConnectedLineNum":"+31507001918","DestUniqueID":"vgua0-dev-1443448768.119","Destination":"SIP/126680002-00000034","Dialstring":"126680002/126680002/1.2.3.4","Event":"Dial","Privilege":"call,all","SubEvent":"Begin","UniqueID":"vgua0-dev-1443448768.115","content":""}, - {"CallerIDName":"","CallerIDNum":"+31507001918","Channel":"SIP/126680002-00000034","ChannelState":"5","ChannelStateDesc":"Ringing","ConnectedLineName":"","ConnectedLineNum":"Anonymous","Event":"Newstate","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448768.119","content":""}, - {"CallerIDName":"","CallerIDNum":"+31507001918","Channel":"Local/ID12@osvpi_route_phoneaccount-0000001f;1","ChannelState":"5","ChannelStateDesc":"Ringing","ConnectedLineName":"","ConnectedLineNum":"+31507xxxxxx","Event":"Newstate","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448768.114","content":""}, - {"CallerIDName":"","CallerIDNum":"+31507001918","Channel":"SIP/126680005-00000033","ChannelState":"5","ChannelStateDesc":"Ringing","ConnectedLineName":"","ConnectedLineNum":"Anonymous","Event":"Newstate","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448768.118","content":""}, - {"CallerIDName":"","CallerIDNum":"+31507001918","Channel":"Local/ID42@osvpi_route_phoneaccount-00000020;1","ChannelState":"5","ChannelStateDesc":"Ringing","ConnectedLineName":"","ConnectedLineNum":"+31507xxxxxx","Event":"Newstate","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448768.116","content":""}, - {"CallerIDName":"","CallerIDNum":"+31507001918","Channel":"SIP/126680005-00000033","ChannelState":"6","ChannelStateDesc":"Up","ConnectedLineName":"","ConnectedLineNum":"Anonymous","Event":"Newstate","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448768.118","content":""}, - {"CallerIDName":"","CallerIDNum":"Anonymous","Channel":"Local/ID42@osvpi_route_phoneaccount-00000020;2","ChannelState":"6","ChannelStateDesc":"Up","ConnectedLineName":"","ConnectedLineNum":"+31507001918","Event":"Newstate","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448768.117","content":""}, - {"CallerIDName":"","CallerIDNum":"+31507001918","Channel":"Local/ID42@osvpi_route_phoneaccount-00000020;1","ChannelState":"6","ChannelStateDesc":"Up","ConnectedLineName":"","ConnectedLineNum":"+31507xxxxxx","Event":"Newstate","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448768.116","content":""}, - {"AccountCode":"12668","Channel":"SIP/126680005-00000033","Event":"NewAccountCode","OldAccountCode":"12668","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448768.118","content":""}, - {"Bridgestate":"Link","Bridgetype":"core","CallerID1":"Anonymous","CallerID2":"+31507001918","Channel1":"Local/ID42@osvpi_route_phoneaccount-00000020;2","Channel2":"SIP/126680005-00000033","Event":"Bridge","Privilege":"call,all","Uniqueid1":"vgua0-dev-1443448768.117","Uniqueid2":"vgua0-dev-1443448768.118","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+31507001918","Cause":"26","Cause-txt":"Answered elsewhere","Channel":"Local/ID12@osvpi_route_phoneaccount-0000001f;1","ConnectedLineName":"","ConnectedLineNum":"+31507xxxxxx","Event":"Hangup","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448768.114","content":""}, - {"CallerIDName":"","CallerIDNum":"+31507xxxxxx","Channel":"SIP/voipgrid-siproute-dev-00000032","ChannelState":"6","ChannelStateDesc":"Up","ConnectedLineName":"","ConnectedLineNum":"","Event":"Newstate","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448768.113","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+31507001918","Cause":"26","Cause-txt":"Answered elsewhere","Channel":"SIP/126680002-00000034","ConnectedLineName":"","ConnectedLineNum":"Anonymous","Event":"Hangup","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448768.119","content":""}, - {"Channel":"Local/ID12@osvpi_route_phoneaccount-0000001f;2","DialStatus":"CANCEL","Event":"Dial","Privilege":"call,all","SubEvent":"End","UniqueID":"vgua0-dev-1443448768.115","content":""}, - {"AccountCode":"12668","Channel":"Local/ID42@osvpi_route_phoneaccount-00000020;1","Event":"NewAccountCode","OldAccountCode":"12668","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448768.116","content":""}, - {"Bridgestate":"Link","Bridgetype":"core","CallerID1":"+31507xxxxxx","CallerID2":"+31507001918","Channel1":"SIP/voipgrid-siproute-dev-00000032","Channel2":"Local/ID42@osvpi_route_phoneaccount-00000020;1","Event":"Bridge","Privilege":"call,all","Uniqueid1":"vgua0-dev-1443448768.113","Uniqueid2":"vgua0-dev-1443448768.116","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"Anonymous","Cause":"26","Cause-txt":"Answered elsewhere","Channel":"Local/ID12@osvpi_route_phoneaccount-0000001f;2","ConnectedLineName":"","ConnectedLineNum":"+31507001918","Event":"Hangup","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448768.115","content":""}, - {"Clone":"SIP/126680005-00000033","CloneState":"Up","Event":"Masquerade","Original":"Local/ID42@osvpi_route_phoneaccount-00000020;1","OriginalState":"Up","Privilege":"call,all","content":""}, - {"Channel":"SIP/126680005-00000033","Event":"Rename","Newname":"SIP/126680005-00000033","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448768.118","content":""}, - {"Channel":"Local/ID42@osvpi_route_phoneaccount-00000020;1","Event":"Rename","Newname":"SIP/126680005-00000033","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448768.116","content":""}, - {"Channel":"SIP/126680005-00000033","Event":"Rename","Newname":"Local/ID42@osvpi_route_phoneaccount-00000020;1","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448768.118","content":""}, - {"CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDName":"","CallerIDNum":"+31507001918","Channel":"SIP/126680005-00000033","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448768.116","content":""}, - {"Bridgestate":"Unlink","Bridgetype":"core","CallerID1":"Anonymous","CallerID2":"+31507001918","Channel1":"Local/ID42@osvpi_route_phoneaccount-00000020;2","Channel2":"Local/ID42@osvpi_route_phoneaccount-00000020;1","Event":"Bridge","Privilege":"call,all","Uniqueid1":"vgua0-dev-1443448768.117","Uniqueid2":"vgua0-dev-1443448768.118","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+31507001918","Cause":"16","Cause-txt":"Normal Clearing","Channel":"Local/ID42@osvpi_route_phoneaccount-00000020;1","ConnectedLineName":"","ConnectedLineNum":"+31507xxxxxx","Event":"Hangup","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448768.118","content":""}, - {"Channel":"Local/ID42@osvpi_route_phoneaccount-00000020;2","DialStatus":"ANSWER","Event":"Dial","Privilege":"call,all","SubEvent":"End","UniqueID":"vgua0-dev-1443448768.117","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"Anonymous","Cause":"16","Cause-txt":"Normal Clearing","Channel":"Local/ID42@osvpi_route_phoneaccount-00000020;2","ConnectedLineName":"","ConnectedLineNum":"+31507001918","Event":"Hangup","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448768.117","content":""}, - {"Bridgestate":"Unlink","Bridgetype":"core","CallerID1":"+31507xxxxxx","CallerID2":"+31507001918","Channel1":"SIP/voipgrid-siproute-dev-00000032","Channel2":"SIP/126680005-00000033","Event":"Bridge","Privilege":"call,all","Uniqueid1":"vgua0-dev-1443448768.113","Uniqueid2":"vgua0-dev-1443448768.116","content":""}, - {"Bridgestate":"Link","Bridgetype":"core","CallerID1":"+31507xxxxxx","CallerID2":"+31507001918","Channel1":"SIP/voipgrid-siproute-dev-00000032","Channel2":"SIP/126680005-00000033","Event":"Bridge","Privilege":"call,all","Uniqueid1":"vgua0-dev-1443448768.113","Uniqueid2":"vgua0-dev-1443448768.116","content":""}, - {"AccountCode":"126680005","CallerIDName":"Walter Doekes","CallerIDNum":"126680005","Channel":"SIP/126680005-00000035","ChannelState":"0","ChannelStateDesc":"Down","Context":"osvpi_account","Event":"Newchannel","Exten":"202","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448784.120","content":""}, - {"CallerIDName":"Walter Doekes","CallerIDNum":"126680005","Channel":"SIP/126680005-00000035","ChannelState":"4","ChannelStateDesc":"Ring","ConnectedLineName":"","ConnectedLineNum":"","Event":"Newstate","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448784.120","content":""}, - {"CID-CallingPres":"1 (Presentation Allowed, Passed Screen)","CallerIDName":"No NAT","CallerIDNum":"126680005","Channel":"SIP/126680005-00000035","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448784.120","content":""}, - {"CID-CallingPres":"1 (Presentation Allowed, Passed Screen)","CallerIDName":"No NAT","CallerIDNum":"205","Channel":"SIP/126680005-00000035","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448784.120","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"","Channel":"Local/ID12@osvpi_route_phoneaccount-00000021;1","ChannelState":"0","ChannelStateDesc":"Down","Context":"osvpi_route_phoneaccount","Event":"Newchannel","Exten":"ID12","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448784.121","content":""}, - {"AccountCode":"","CallerIDName":"","CallerIDNum":"","Channel":"Local/ID12@osvpi_route_phoneaccount-00000021;2","ChannelState":"4","ChannelStateDesc":"Ring","Context":"osvpi_route_phoneaccount","Event":"Newchannel","Exten":"ID12","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448784.122","content":""}, - {"CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDName":"","CallerIDNum":"202","Channel":"Local/ID12@osvpi_route_phoneaccount-00000021;1","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448784.121","content":""}, - {"Channel1":"Local/ID12@osvpi_route_phoneaccount-00000021;1","Channel2":"Local/ID12@osvpi_route_phoneaccount-00000021;2","Context":"osvpi_route_phoneaccount","Event":"LocalBridge","Exten":"ID12","LocalOptimization":"Yes","Privilege":"call,all","Uniqueid1":"vgua0-dev-1443448784.121","Uniqueid2":"vgua0-dev-1443448784.122","content":""}, - {"CallerIDName":"No NAT","CallerIDNum":"205","Channel":"SIP/126680005-00000035","ConnectedLineName":"","ConnectedLineNum":"","DestUniqueID":"vgua0-dev-1443448784.121","Destination":"Local/ID12@osvpi_route_phoneaccount-00000021;1","Dialstring":"ID12@osvpi_route_phoneaccount","Event":"Dial","Privilege":"call,all","SubEvent":"Begin","UniqueID":"vgua0-dev-1443448784.120","content":""}, - {"CID-CallingPres":"1 (Presentation Allowed, Passed Screen)","CallerIDName":"No NAT","CallerIDNum":"205","Channel":"Local/ID12@osvpi_route_phoneaccount-00000021;2","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448784.122","content":""}, - {"AccountCode":"126680002","CallerIDName":"","CallerIDNum":"","Channel":"SIP/126680002-00000036","ChannelState":"0","ChannelStateDesc":"Down","Context":"osvpi_account","Event":"Newchannel","Exten":"","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448784.123","content":""}, - {"CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDName":"","CallerIDNum":"202","Channel":"SIP/126680002-00000036","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448784.123","content":""}, - {"CallerIDName":"No NAT","CallerIDNum":"205","Channel":"Local/ID12@osvpi_route_phoneaccount-00000021;2","ConnectedLineName":"","ConnectedLineNum":"202","DestUniqueID":"vgua0-dev-1443448784.123","Destination":"SIP/126680002-00000036","Dialstring":"126680002/126680002/1.2.3.4","Event":"Dial","Privilege":"call,all","SubEvent":"Begin","UniqueID":"vgua0-dev-1443448784.122","content":""}, - {"CallerIDName":"","CallerIDNum":"202","Channel":"SIP/126680002-00000036","ChannelState":"5","ChannelStateDesc":"Ringing","ConnectedLineName":"No NAT","ConnectedLineNum":"205","Event":"Newstate","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448784.123","content":""}, - {"CallerIDName":"","CallerIDNum":"202","Channel":"Local/ID12@osvpi_route_phoneaccount-00000021;1","ChannelState":"5","ChannelStateDesc":"Ringing","ConnectedLineName":"No NAT","ConnectedLineNum":"205","Event":"Newstate","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448784.121","content":""}, - {"Channel":"SIP/126680005-00000033","Event":"Transfer","Privilege":"call,all","SIP-Callid":"6111873a05aa666e36a4ccda155a7187@5.5.5.5:5060","TargetChannel":"SIP/126680005-00000035","TargetUniqueid":"vgua0-dev-1443448784.120","TransferMethod":"SIP","TransferType":"Attended","Uniqueid":"vgua0-dev-1443448768.116","content":""}, - {"Clone":"SIP/voipgrid-siproute-dev-00000032","CloneState":"Up","Event":"Masquerade","Original":"SIP/126680005-00000035","OriginalState":"Ring","Privilege":"call,all","content":""}, - {"Channel":"SIP/voipgrid-siproute-dev-00000032","Event":"Rename","Newname":"SIP/voipgrid-siproute-dev-00000032","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448768.113","content":""}, - {"Channel":"SIP/126680005-00000035","Event":"Rename","Newname":"SIP/voipgrid-siproute-dev-00000032","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448784.120","content":""}, - {"Channel":"SIP/voipgrid-siproute-dev-00000032","Event":"Rename","Newname":"SIP/126680005-00000035","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448768.113","content":""}, - {"CID-CallingPres":"33 (Presentation Prohibited, Passed Screen)","CallerIDName":"","CallerIDNum":"+31507xxxxxx","Channel":"SIP/voipgrid-siproute-dev-00000032","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448784.120","content":""}, - {"Bridgestate":"Unlink","Bridgetype":"core","CallerID1":"205","CallerID2":"+31507001918","Channel1":"SIP/126680005-00000035","Channel2":"SIP/126680005-00000033","Event":"Bridge","Privilege":"call,all","Uniqueid1":"vgua0-dev-1443448768.113","Uniqueid2":"vgua0-dev-1443448768.116","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+31507001918","Cause":"16","Cause-txt":"Normal Clearing","Channel":"SIP/126680005-00000033","ConnectedLineName":"","ConnectedLineNum":"Anonymous","Event":"Hangup","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448768.116","content":""}, - {"Channel":"SIP/126680005-00000035","DialStatus":"ANSWER","Event":"Dial","Privilege":"call,all","SubEvent":"End","UniqueID":"vgua0-dev-1443448768.113","content":""}, - {"AccountCode":"12668","CallerIDName":"No NAT","CallerIDNum":"205","Cause":"16","Cause-txt":"Normal Clearing","Channel":"SIP/126680005-00000035","ConnectedLineName":"","ConnectedLineNum":"","Event":"Hangup","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448768.113","content":""}, - {"CallerIDName":"","CallerIDNum":"202","Channel":"SIP/126680002-00000036","ChannelState":"6","ChannelStateDesc":"Up","ConnectedLineName":"","ConnectedLineNum":"Anonymous","Event":"Newstate","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448784.123","content":""}, - {"CallerIDName":"No NAT","CallerIDNum":"205","Channel":"Local/ID12@osvpi_route_phoneaccount-00000021;2","ChannelState":"6","ChannelStateDesc":"Up","ConnectedLineName":"","ConnectedLineNum":"202","Event":"Newstate","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448784.122","content":""}, - {"AccountCode":"126680005","Channel":"SIP/126680002-00000036","Event":"NewAccountCode","OldAccountCode":"126680005","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448784.123","content":""}, - {"Bridgestate":"Link","Bridgetype":"core","CallerID1":"205","CallerID2":"202","Channel1":"Local/ID12@osvpi_route_phoneaccount-00000021;2","Channel2":"SIP/126680002-00000036","Event":"Bridge","Privilege":"call,all","Uniqueid1":"vgua0-dev-1443448784.122","Uniqueid2":"vgua0-dev-1443448784.123","content":""}, - {"CallerIDName":"","CallerIDNum":"202","Channel":"Local/ID12@osvpi_route_phoneaccount-00000021;1","ChannelState":"6","ChannelStateDesc":"Up","ConnectedLineName":"","ConnectedLineNum":"Anonymous","Event":"Newstate","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448784.121","content":""}, - {"AccountCode":"12668","Channel":"Local/ID12@osvpi_route_phoneaccount-00000021;1","Event":"NewAccountCode","OldAccountCode":"126680005","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448784.121","content":""}, - {"Bridgestate":"Link","Bridgetype":"core","CallerID1":"+31507xxxxxx","CallerID2":"202","Channel1":"SIP/voipgrid-siproute-dev-00000032","Channel2":"Local/ID12@osvpi_route_phoneaccount-00000021;1","Event":"Bridge","Privilege":"call,all","Uniqueid1":"vgua0-dev-1443448784.120","Uniqueid2":"vgua0-dev-1443448784.121","content":""}, - {"Clone":"SIP/126680002-00000036","CloneState":"Up","Event":"Masquerade","Original":"Local/ID12@osvpi_route_phoneaccount-00000021;1","OriginalState":"Up","Privilege":"call,all","content":""}, - {"Channel":"SIP/126680002-00000036","Event":"Rename","Newname":"SIP/126680002-00000036","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448784.123","content":""}, - {"Channel":"Local/ID12@osvpi_route_phoneaccount-00000021;1","Event":"Rename","Newname":"SIP/126680002-00000036","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448784.121","content":""}, - {"Channel":"SIP/126680002-00000036","Event":"Rename","Newname":"Local/ID12@osvpi_route_phoneaccount-00000021;1","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448784.123","content":""}, - {"CID-CallingPres":"0 (Presentation Allowed, Not Screened)","CallerIDName":"","CallerIDNum":"202","Channel":"SIP/126680002-00000036","Event":"NewCallerid","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448784.121","content":""}, - {"Bridgestate":"Unlink","Bridgetype":"core","CallerID1":"205","CallerID2":"202","Channel1":"Local/ID12@osvpi_route_phoneaccount-00000021;2","Channel2":"Local/ID12@osvpi_route_phoneaccount-00000021;1","Event":"Bridge","Privilege":"call,all","Uniqueid1":"vgua0-dev-1443448784.122","Uniqueid2":"vgua0-dev-1443448784.123","content":""}, - {"AccountCode":"126680005","CallerIDName":"","CallerIDNum":"202","Cause":"16","Cause-txt":"Normal Clearing","Channel":"Local/ID12@osvpi_route_phoneaccount-00000021;1","ConnectedLineName":"","ConnectedLineNum":"Anonymous","Event":"Hangup","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448784.123","content":""}, - {"Channel":"Local/ID12@osvpi_route_phoneaccount-00000021;2","DialStatus":"ANSWER","Event":"Dial","Privilege":"call,all","SubEvent":"End","UniqueID":"vgua0-dev-1443448784.122","content":""}, - {"AccountCode":"126680005","CallerIDName":"No NAT","CallerIDNum":"205","Cause":"16","Cause-txt":"Normal Clearing","Channel":"Local/ID12@osvpi_route_phoneaccount-00000021;2","ConnectedLineName":"","ConnectedLineNum":"202","Event":"Hangup","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448784.122","content":""}, - {"Bridgestate":"Unlink","Bridgetype":"core","CallerID1":"+31507xxxxxx","CallerID2":"202","Channel1":"SIP/voipgrid-siproute-dev-00000032","Channel2":"SIP/126680002-00000036","Event":"Bridge","Privilege":"call,all","Uniqueid1":"vgua0-dev-1443448784.120","Uniqueid2":"vgua0-dev-1443448784.121","content":""}, - {"AccountCode":"126680005","CallerIDName":"","CallerIDNum":"202","Cause":"16","Cause-txt":"Normal Clearing","Channel":"SIP/126680002-00000036","ConnectedLineName":"","ConnectedLineNum":"Anonymous","Event":"Hangup","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448784.121","content":""}, - {"Channel":"SIP/voipgrid-siproute-dev-00000032","DialStatus":"ANSWER","Event":"Dial","Privilege":"call,all","SubEvent":"End","UniqueID":"vgua0-dev-1443448784.120","content":""}, - {"AccountCode":"12668","CallerIDName":"","CallerIDNum":"+31507xxxxxx","Cause":"16","Cause-txt":"Normal Clearing","Channel":"SIP/voipgrid-siproute-dev-00000032","ConnectedLineName":"","ConnectedLineNum":"","Event":"Hangup","Privilege":"call,all","Uniqueid":"vgua0-dev-1443448784.120","content":""} -] diff --git a/tests/fixtures/xfer_blonde/xfer_blondeblindanon.json b/tests/fixtures/xfer_blonde/xfer_blondeblindanon.json deleted file mode 100644 index e6b3950..0000000 --- a/tests/fixtures/xfer_blonde/xfer_blondeblindanon.json +++ /dev/null @@ -1,132 +0,0 @@ -[ - {"Privilege": "system,all", "Event": "FullyBooted", "content": "", "Status": "Fully Booted"}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Newchannel", "Uniqueid": "vgua0-dev-1443442620.82", "Context": "voipgrid_in", "AccountCode": "", "ChannelStateDesc": "Down", "Channel": "SIP/voipgrid-siproute-dev-00000027", "CallerIDNum": "+31507001918", "content": "", "ChannelState": "0", "Exten": "+31507001918"}, - {"CallerIDName": "", "Channel": "SIP/voipgrid-siproute-dev-00000027", "Privilege": "call,all", "CallerIDNum": "+31507001918", "Event": "Newstate", "content": "", "ConnectedLineNum": "", "Uniqueid": "vgua0-dev-1443442620.82", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": ""}, - {"CallerIDName": "", "Channel": "SIP/voipgrid-siproute-dev-00000027", "Privilege": "call,all", "CallerIDNum": "+31507xxxxxx", "Event": "NewCallerid", "content": "", "Uniqueid": "vgua0-dev-1443442620.82", "CID-CallingPres": "33 (Presentation Prohibited, Passed Screen)"}, - {"Channel": "SIP/voipgrid-siproute-dev-00000027", "Privilege": "call,all", "Event": "NewAccountCode", "content": "", "Uniqueid": "vgua0-dev-1443442620.82", "AccountCode": "12668"}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Newchannel", "Uniqueid": "vgua0-dev-1443442620.83", "Context": "osvpi_route_phoneaccount", "AccountCode": "", "ChannelStateDesc": "Down", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000015;1", "CallerIDNum": "", "content": "", "ChannelState": "0", "Exten": "ID2"}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Newchannel", "Uniqueid": "vgua0-dev-1443442620.84", "Context": "osvpi_route_phoneaccount", "AccountCode": "", "ChannelStateDesc": "Ring", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000015;2", "CallerIDNum": "", "content": "", "ChannelState": "4", "Exten": "ID2"}, - {"CallerIDName": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000015;1", "Privilege": "call,all", "CallerIDNum": "+31507001918", "Event": "NewCallerid", "content": "", "Uniqueid": "vgua0-dev-1443442620.83", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Newchannel", "Uniqueid": "vgua0-dev-1443442620.85", "Context": "osvpi_route_phoneaccount", "AccountCode": "", "ChannelStateDesc": "Down", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000016;1", "CallerIDNum": "", "content": "", "ChannelState": "0", "Exten": "ID12"}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Newchannel", "Uniqueid": "vgua0-dev-1443442620.86", "Context": "osvpi_route_phoneaccount", "AccountCode": "", "ChannelStateDesc": "Ring", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000016;2", "CallerIDNum": "", "content": "", "ChannelState": "4", "Exten": "ID12"}, - {"CallerIDName": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000016;1", "Privilege": "call,all", "CallerIDNum": "+31507001918", "Event": "NewCallerid", "content": "", "Uniqueid": "vgua0-dev-1443442620.85", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Newchannel", "Uniqueid": "vgua0-dev-1443442620.87", "Context": "osvpi_route_fixeddestination", "AccountCode": "", "ChannelStateDesc": "Down", "Channel": "Local/ID2@osvpi_route_fixeddestination-00000017;1", "CallerIDNum": "", "content": "", "ChannelState": "0", "Exten": "ID2"}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Newchannel", "Uniqueid": "vgua0-dev-1443442620.88", "Context": "osvpi_route_fixeddestination", "AccountCode": "", "ChannelStateDesc": "Ring", "Channel": "Local/ID2@osvpi_route_fixeddestination-00000017;2", "CallerIDNum": "", "content": "", "ChannelState": "4", "Exten": "ID2"}, - {"CallerIDName": "", "Channel": "Local/ID2@osvpi_route_fixeddestination-00000017;1", "Privilege": "call,all", "CallerIDNum": "+31507001918", "Event": "NewCallerid", "content": "", "Uniqueid": "vgua0-dev-1443442620.87", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"Uniqueid1": "vgua0-dev-1443442620.83", "Privilege": "call,all", "Channel2": "Local/ID2@osvpi_route_phoneaccount-00000015;2", "Event": "LocalBridge", "content": "", "Context": "osvpi_route_phoneaccount", "Channel1": "Local/ID2@osvpi_route_phoneaccount-00000015;1", "LocalOptimization": "Yes", "Exten": "ID2", "Uniqueid2": "vgua0-dev-1443442620.84"}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Dial", "SubEvent": "Begin", "UniqueID": "vgua0-dev-1443442620.82", "DestUniqueID": "vgua0-dev-1443442620.83", "ConnectedLineName": "", "Dialstring": "ID2@osvpi_route_phoneaccount", "CallerIDNum": "+31507xxxxxx", "content": "", "ConnectedLineNum": "", "Destination": "Local/ID2@osvpi_route_phoneaccount-00000015;1", "Channel": "SIP/voipgrid-siproute-dev-00000027"}, - {"Uniqueid1": "vgua0-dev-1443442620.85", "Privilege": "call,all", "Channel2": "Local/ID12@osvpi_route_phoneaccount-00000016;2", "Event": "LocalBridge", "content": "", "Context": "osvpi_route_phoneaccount", "Channel1": "Local/ID12@osvpi_route_phoneaccount-00000016;1", "LocalOptimization": "Yes", "Exten": "ID12", "Uniqueid2": "vgua0-dev-1443442620.86"}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Dial", "SubEvent": "Begin", "UniqueID": "vgua0-dev-1443442620.82", "DestUniqueID": "vgua0-dev-1443442620.85", "ConnectedLineName": "", "Dialstring": "ID12@osvpi_route_phoneaccount", "CallerIDNum": "+31507xxxxxx", "content": "", "ConnectedLineNum": "", "Destination": "Local/ID12@osvpi_route_phoneaccount-00000016;1", "Channel": "SIP/voipgrid-siproute-dev-00000027"}, - {"Uniqueid1": "vgua0-dev-1443442620.87", "Privilege": "call,all", "Channel2": "Local/ID2@osvpi_route_fixeddestination-00000017;2", "Event": "LocalBridge", "content": "", "Context": "osvpi_route_fixeddestination", "Channel1": "Local/ID2@osvpi_route_fixeddestination-00000017;1", "LocalOptimization": "Yes", "Exten": "ID2", "Uniqueid2": "vgua0-dev-1443442620.88"}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Dial", "SubEvent": "Begin", "UniqueID": "vgua0-dev-1443442620.82", "DestUniqueID": "vgua0-dev-1443442620.87", "ConnectedLineName": "", "Dialstring": "ID2@osvpi_route_fixeddestination", "CallerIDNum": "+31507xxxxxx", "content": "", "ConnectedLineNum": "", "Destination": "Local/ID2@osvpi_route_fixeddestination-00000017;1", "Channel": "SIP/voipgrid-siproute-dev-00000027"}, - {"CallerIDName": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000015;2", "Privilege": "call,all", "CallerIDNum": "126680001", "Event": "NewCallerid", "content": "", "Uniqueid": "vgua0-dev-1443442620.84", "CID-CallingPres": "33 (Presentation Prohibited, Passed Screen)"}, - {"CallerIDName": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000016;2", "Privilege": "call,all", "CallerIDNum": "Anonymous", "Event": "NewCallerid", "content": "", "Uniqueid": "vgua0-dev-1443442620.86", "CID-CallingPres": "33 (Presentation Prohibited, Passed Screen)"}, - {"CallerIDName": "", "Channel": "Local/ID2@osvpi_route_fixeddestination-00000017;2", "Privilege": "call,all", "CallerIDNum": "+31507001918", "Event": "NewCallerid", "content": "", "Uniqueid": "vgua0-dev-1443442620.88", "CID-CallingPres": "33 (Presentation Prohibited, Passed Screen)"}, - {"CallerIDName": "", "Channel": "Local/ID2@osvpi_route_fixeddestination-00000017;2", "Privilege": "call,all", "CallerIDNum": "+31507xxxxxx", "Event": "NewCallerid", "content": "", "Uniqueid": "vgua0-dev-1443442620.88", "CID-CallingPres": "33 (Presentation Prohibited, Passed Screen)"}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Newchannel", "Uniqueid": "vgua0-dev-1443442620.89", "Context": "osvpi_account", "AccountCode": "126680002", "ChannelStateDesc": "Down", "Channel": "SIP/126680002-00000028", "CallerIDNum": "", "content": "", "ChannelState": "0", "Exten": ""}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Newchannel", "Uniqueid": "vgua0-dev-1443442620.90", "Context": "osvpi_account", "AccountCode": "126680001", "ChannelStateDesc": "Down", "Channel": "SIP/126680001-00000029", "CallerIDNum": "", "content": "", "ChannelState": "0", "Exten": ""}, - {"CallerIDName": "", "Channel": "SIP/126680002-00000028", "Privilege": "call,all", "CallerIDNum": "+31507001918", "Event": "NewCallerid", "content": "", "Uniqueid": "vgua0-dev-1443442620.89", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"CallerIDName": "", "Channel": "SIP/126680001-00000029", "Privilege": "call,all", "CallerIDNum": "+31507001918", "Event": "NewCallerid", "content": "", "Uniqueid": "vgua0-dev-1443442620.90", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Dial", "SubEvent": "Begin", "UniqueID": "vgua0-dev-1443442620.84", "DestUniqueID": "vgua0-dev-1443442620.90", "ConnectedLineName": "", "Dialstring": "126680001/126680001/1.2.3.4", "CallerIDNum": "126680001", "content": "", "ConnectedLineNum": "+31507001918", "Destination": "SIP/126680001-00000029", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000015;2"}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Dial", "SubEvent": "Begin", "UniqueID": "vgua0-dev-1443442620.86", "DestUniqueID": "vgua0-dev-1443442620.89", "ConnectedLineName": "", "Dialstring": "126680002/126680002/1.2.3.4", "CallerIDNum": "Anonymous", "content": "", "ConnectedLineNum": "+31507001918", "Destination": "SIP/126680002-00000028", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000016;2"}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Hangup", "Cause": "19", "Uniqueid": "vgua0-dev-1443442620.90", "AccountCode": "12668", "ConnectedLineName": "", "Channel": "SIP/126680001-00000029", "CallerIDNum": "+31507001918", "content": "", "ConnectedLineNum": "126680001", "Cause-txt": "User alerting, no answer"}, - {"CallerIDName": "", "Channel": "Local/ID2@osvpi_route_fixeddestination-00000017;2", "Privilege": "call,all", "CallerIDNum": "+31507001918", "Event": "NewCallerid", "content": "", "Uniqueid": "vgua0-dev-1443442620.88", "CID-CallingPres": "33 (Presentation Prohibited, Passed Screen)"}, - {"Channel": "Local/ID2@osvpi_route_phoneaccount-00000015;2", "Privilege": "call,all", "SubEvent": "End", "Event": "Dial", "content": "", "DialStatus": "CONGESTION", "UniqueID": "vgua0-dev-1443442620.84"}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Hangup", "Cause": "19", "Uniqueid": "vgua0-dev-1443442620.84", "AccountCode": "12668", "ConnectedLineName": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000015;2", "CallerIDNum": "126680001", "content": "", "ConnectedLineNum": "+31507001918", "Cause-txt": "User alerting, no answer"}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Hangup", "Cause": "19", "Uniqueid": "vgua0-dev-1443442620.83", "AccountCode": "12668", "ConnectedLineName": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000015;1", "CallerIDNum": "+31507001918", "content": "", "ConnectedLineNum": "+31507xxxxxx", "Cause-txt": "User alerting, no answer"}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Newchannel", "Uniqueid": "vgua0-dev-1443442620.91", "Context": "world_out", "AccountCode": "", "ChannelStateDesc": "Down", "Channel": "Local/+31612345678@world_out-00000018;1", "CallerIDNum": "", "content": "", "ChannelState": "0", "Exten": "+31612345678"}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Newchannel", "Uniqueid": "vgua0-dev-1443442620.92", "Context": "world_out", "AccountCode": "", "ChannelStateDesc": "Ring", "Channel": "Local/+31612345678@world_out-00000018;2", "CallerIDNum": "", "content": "", "ChannelState": "4", "Exten": "+31612345678"}, - {"CallerIDName": "", "Channel": "Local/+31612345678@world_out-00000018;1", "Privilege": "call,all", "CallerIDNum": "+31612345678", "Event": "NewCallerid", "content": "", "Uniqueid": "vgua0-dev-1443442620.91", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"Uniqueid1": "vgua0-dev-1443442620.91", "Privilege": "call,all", "Channel2": "Local/+31612345678@world_out-00000018;2", "Event": "LocalBridge", "content": "", "Context": "world_out", "Channel1": "Local/+31612345678@world_out-00000018;1", "LocalOptimization": "Yes", "Exten": "+31612345678", "Uniqueid2": "vgua0-dev-1443442620.92"}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Dial", "SubEvent": "Begin", "UniqueID": "vgua0-dev-1443442620.88", "DestUniqueID": "vgua0-dev-1443442620.91", "ConnectedLineName": "", "Dialstring": "+31612345678@world_out", "CallerIDNum": "+31507001918", "content": "", "ConnectedLineNum": "+31507001918", "Destination": "Local/+31612345678@world_out-00000018;1", "Channel": "Local/ID2@osvpi_route_fixeddestination-00000017;2"}, - {"CallerIDName": "", "Channel": "Local/ID2@osvpi_route_fixeddestination-00000017;1", "Privilege": "call,all", "CallerIDNum": "+31507001918", "Event": "Newstate", "content": "", "ConnectedLineNum": "+31507xxxxxx", "Uniqueid": "vgua0-dev-1443442620.87", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": ""}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Newchannel", "Uniqueid": "vgua0-dev-1443442620.93", "Context": "voipgrid_in", "AccountCode": "", "ChannelStateDesc": "Down", "Channel": "SIP/voipgrid-siproute-dev-0000002a", "CallerIDNum": "", "content": "", "ChannelState": "0", "Exten": ""}, - {"CallerIDName": "", "Channel": "SIP/voipgrid-siproute-dev-0000002a", "Privilege": "call,all", "CallerIDNum": "+31612345678", "Event": "NewCallerid", "content": "", "Uniqueid": "vgua0-dev-1443442620.93", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Dial", "SubEvent": "Begin", "UniqueID": "vgua0-dev-1443442620.92", "DestUniqueID": "vgua0-dev-1443442620.93", "ConnectedLineName": "", "Dialstring": "+31612345678@voipgrid-siproute-dev", "CallerIDNum": "+31507001918", "content": "", "ConnectedLineNum": "+31612345678", "Destination": "SIP/voipgrid-siproute-dev-0000002a", "Channel": "Local/+31612345678@world_out-00000018;2"}, - {"CallerIDName": "", "Channel": "SIP/126680002-00000028", "Privilege": "call,all", "CallerIDNum": "+31507001918", "Event": "Newstate", "content": "", "ConnectedLineNum": "Anonymous", "Uniqueid": "vgua0-dev-1443442620.89", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": ""}, - {"CallerIDName": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000016;1", "Privilege": "call,all", "CallerIDNum": "+31507001918", "Event": "Newstate", "content": "", "ConnectedLineNum": "+31507xxxxxx", "Uniqueid": "vgua0-dev-1443442620.85", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": ""}, - {"CallerIDName": "", "Channel": "SIP/voipgrid-siproute-dev-0000002a", "Privilege": "call,all", "CallerIDNum": "+31612345678", "Event": "Newstate", "content": "", "ConnectedLineNum": "+31507001918", "Uniqueid": "vgua0-dev-1443442620.93", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": ""}, - {"CallerIDName": "", "Channel": "Local/+31612345678@world_out-00000018;1", "Privilege": "call,all", "CallerIDNum": "+31612345678", "Event": "Newstate", "content": "", "ConnectedLineNum": "+31507001918", "Uniqueid": "vgua0-dev-1443442620.91", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": ""}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Hangup", "Cause": "17", "Uniqueid": "vgua0-dev-1443442620.93", "AccountCode": "12668", "ConnectedLineName": "", "Channel": "SIP/voipgrid-siproute-dev-0000002a", "CallerIDNum": "+31612345678", "content": "", "ConnectedLineNum": "+31507001918", "Cause-txt": "User busy"}, - {"Channel": "Local/+31612345678@world_out-00000018;2", "Privilege": "call,all", "SubEvent": "End", "Event": "Dial", "content": "", "DialStatus": "BUSY", "UniqueID": "vgua0-dev-1443442620.92"}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Hangup", "Cause": "17", "Uniqueid": "vgua0-dev-1443442620.91", "AccountCode": "12668", "ConnectedLineName": "", "Channel": "Local/+31612345678@world_out-00000018;1", "CallerIDNum": "+31612345678", "content": "", "ConnectedLineNum": "+31507001918", "Cause-txt": "User busy"}, - {"Channel": "Local/ID2@osvpi_route_fixeddestination-00000017;2", "Privilege": "call,all", "SubEvent": "End", "Event": "Dial", "content": "", "DialStatus": "BUSY", "UniqueID": "vgua0-dev-1443442620.88"}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Hangup", "Cause": "17", "Uniqueid": "vgua0-dev-1443442620.92", "AccountCode": "12668", "ConnectedLineName": "", "Channel": "Local/+31612345678@world_out-00000018;2", "CallerIDNum": "+31507001918", "content": "", "ConnectedLineNum": "+31612345678", "Cause-txt": "User busy"}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Hangup", "Cause": "17", "Uniqueid": "vgua0-dev-1443442620.87", "AccountCode": "12668", "ConnectedLineName": "", "Channel": "Local/ID2@osvpi_route_fixeddestination-00000017;1", "CallerIDNum": "+31507001918", "content": "", "ConnectedLineNum": "+31507xxxxxx", "Cause-txt": "User busy"}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Hangup", "Cause": "17", "Uniqueid": "vgua0-dev-1443442620.88", "AccountCode": "12668", "ConnectedLineName": "", "Channel": "Local/ID2@osvpi_route_fixeddestination-00000017;2", "CallerIDNum": "+31507001918", "content": "", "ConnectedLineNum": "+31507001918", "Cause-txt": "User busy"}, - {"CallerIDName": "", "Channel": "SIP/126680002-00000028", "Privilege": "call,all", "CallerIDNum": "+31507001918", "Event": "Newstate", "content": "", "ConnectedLineNum": "Anonymous", "Uniqueid": "vgua0-dev-1443442620.89", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": ""}, - {"CallerIDName": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000016;2", "Privilege": "call,all", "CallerIDNum": "Anonymous", "Event": "Newstate", "content": "", "ConnectedLineNum": "+31507001918", "Uniqueid": "vgua0-dev-1443442620.86", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": ""}, - {"CallerIDName": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000016;1", "Privilege": "call,all", "CallerIDNum": "+31507001918", "Event": "Newstate", "content": "", "ConnectedLineNum": "+31507xxxxxx", "Uniqueid": "vgua0-dev-1443442620.85", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": ""}, - {"Channel": "SIP/126680002-00000028", "Privilege": "call,all", "Event": "NewAccountCode", "content": "", "Uniqueid": "vgua0-dev-1443442620.89", "OldAccountCode": "12668", "AccountCode": "12668"}, - {"Uniqueid1": "vgua0-dev-1443442620.86", "Bridgestate": "Link", "Channel2": "SIP/126680002-00000028", "Event": "Bridge", "content": "", "Bridgetype": "core", "CallerID2": "+31507001918", "Channel1": "Local/ID12@osvpi_route_phoneaccount-00000016;2", "Privilege": "call,all", "Uniqueid2": "vgua0-dev-1443442620.89", "CallerID1": "Anonymous"}, - {"CallerIDName": "", "Channel": "SIP/voipgrid-siproute-dev-00000027", "Privilege": "call,all", "CallerIDNum": "+31507xxxxxx", "Event": "Newstate", "content": "", "ConnectedLineNum": "", "Uniqueid": "vgua0-dev-1443442620.82", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": ""}, - {"Channel": "Local/ID12@osvpi_route_phoneaccount-00000016;1", "Privilege": "call,all", "Event": "NewAccountCode", "content": "", "Uniqueid": "vgua0-dev-1443442620.85", "OldAccountCode": "12668", "AccountCode": "12668"}, - {"Uniqueid1": "vgua0-dev-1443442620.82", "Bridgestate": "Link", "Channel2": "Local/ID12@osvpi_route_phoneaccount-00000016;1", "Event": "Bridge", "content": "", "Bridgetype": "core", "CallerID2": "+31507001918", "Channel1": "SIP/voipgrid-siproute-dev-00000027", "Privilege": "call,all", "Uniqueid2": "vgua0-dev-1443442620.85", "CallerID1": "+31507xxxxxx"}, - {"OriginalState": "Up", "Original": "Local/ID12@osvpi_route_phoneaccount-00000016;1", "content": "", "CloneState": "Up", "Clone": "SIP/126680002-00000028", "Privilege": "call,all", "Event": "Masquerade"}, - {"Channel": "SIP/126680002-00000028", "Privilege": "call,all", "Event": "Rename", "content": "", "Newname": "SIP/126680002-00000028", "Uniqueid": "vgua0-dev-1443442620.89"}, - {"Channel": "Local/ID12@osvpi_route_phoneaccount-00000016;1", "Privilege": "call,all", "Event": "Rename", "content": "", "Newname": "SIP/126680002-00000028", "Uniqueid": "vgua0-dev-1443442620.85"}, - {"Channel": "SIP/126680002-00000028", "Privilege": "call,all", "Event": "Rename", "content": "", "Newname": "Local/ID12@osvpi_route_phoneaccount-00000016;1", "Uniqueid": "vgua0-dev-1443442620.89"}, - {"CallerIDName": "", "Channel": "SIP/126680002-00000028", "Privilege": "call,all", "CallerIDNum": "+31507001918", "Event": "NewCallerid", "content": "", "Uniqueid": "vgua0-dev-1443442620.85", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"Uniqueid1": "vgua0-dev-1443442620.86", "Bridgestate": "Unlink", "Channel2": "Local/ID12@osvpi_route_phoneaccount-00000016;1", "Event": "Bridge", "content": "", "Bridgetype": "core", "CallerID2": "+31507001918", "Channel1": "Local/ID12@osvpi_route_phoneaccount-00000016;2", "Privilege": "call,all", "Uniqueid2": "vgua0-dev-1443442620.89", "CallerID1": "Anonymous"}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Hangup", "Cause": "16", "Uniqueid": "vgua0-dev-1443442620.89", "AccountCode": "12668", "ConnectedLineName": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000016;1", "CallerIDNum": "+31507001918", "content": "", "ConnectedLineNum": "+31507xxxxxx", "Cause-txt": "Normal Clearing"}, - {"Channel": "Local/ID12@osvpi_route_phoneaccount-00000016;2", "Privilege": "call,all", "SubEvent": "End", "Event": "Dial", "content": "", "DialStatus": "ANSWER", "UniqueID": "vgua0-dev-1443442620.86"}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Hangup", "Cause": "16", "Uniqueid": "vgua0-dev-1443442620.86", "AccountCode": "12668", "ConnectedLineName": "", "Channel": "Local/ID12@osvpi_route_phoneaccount-00000016;2", "CallerIDNum": "Anonymous", "content": "", "ConnectedLineNum": "+31507001918", "Cause-txt": "Normal Clearing"}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Newchannel", "Uniqueid": "vgua0-dev-1443442640.94", "Context": "osvpi_account", "AccountCode": "126680002", "ChannelStateDesc": "Down", "Channel": "SIP/126680002-0000002b", "CallerIDNum": "126680002", "content": "", "ChannelState": "0", "Exten": "205"}, - {"CallerIDName": "", "Channel": "SIP/126680002-0000002b", "Privilege": "call,all", "CallerIDNum": "126680002", "Event": "Newstate", "content": "", "ConnectedLineNum": "", "Uniqueid": "vgua0-dev-1443442640.94", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": ""}, - {"CallerIDName": "John 202 Doe", "Channel": "SIP/126680002-0000002b", "Privilege": "call,all", "CallerIDNum": "126680002", "Event": "NewCallerid", "content": "", "Uniqueid": "vgua0-dev-1443442640.94", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)"}, - {"CallerIDName": "John 202 Doe", "Channel": "SIP/126680002-0000002b", "Privilege": "call,all", "CallerIDNum": "202", "Event": "NewCallerid", "content": "", "Uniqueid": "vgua0-dev-1443442640.94", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)"}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Newchannel", "Uniqueid": "vgua0-dev-1443442640.95", "Context": "osvpi_route_phoneaccount", "AccountCode": "", "ChannelStateDesc": "Down", "Channel": "Local/ID42@osvpi_route_phoneaccount-00000019;1", "CallerIDNum": "", "content": "", "ChannelState": "0", "Exten": "ID42"}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Newchannel", "Uniqueid": "vgua0-dev-1443442640.96", "Context": "osvpi_route_phoneaccount", "AccountCode": "", "ChannelStateDesc": "Ring", "Channel": "Local/ID42@osvpi_route_phoneaccount-00000019;2", "CallerIDNum": "", "content": "", "ChannelState": "4", "Exten": "ID42"}, - {"CallerIDName": "", "Channel": "Local/ID42@osvpi_route_phoneaccount-00000019;1", "Privilege": "call,all", "CallerIDNum": "205", "Event": "NewCallerid", "content": "", "Uniqueid": "vgua0-dev-1443442640.95", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"Uniqueid1": "vgua0-dev-1443442640.95", "Privilege": "call,all", "Channel2": "Local/ID42@osvpi_route_phoneaccount-00000019;2", "Event": "LocalBridge", "content": "", "Context": "osvpi_route_phoneaccount", "Channel1": "Local/ID42@osvpi_route_phoneaccount-00000019;1", "LocalOptimization": "Yes", "Exten": "ID42", "Uniqueid2": "vgua0-dev-1443442640.96"}, - {"CallerIDName": "John 202 Doe", "Privilege": "call,all", "Event": "Dial", "SubEvent": "Begin", "UniqueID": "vgua0-dev-1443442640.94", "DestUniqueID": "vgua0-dev-1443442640.95", "ConnectedLineName": "", "Dialstring": "ID42@osvpi_route_phoneaccount", "CallerIDNum": "202", "content": "", "ConnectedLineNum": "", "Destination": "Local/ID42@osvpi_route_phoneaccount-00000019;1", "Channel": "SIP/126680002-0000002b"}, - {"CallerIDName": "John 202 Doe", "Channel": "Local/ID42@osvpi_route_phoneaccount-00000019;2", "Privilege": "call,all", "CallerIDNum": "202", "Event": "NewCallerid", "content": "", "Uniqueid": "vgua0-dev-1443442640.96", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)"}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Newchannel", "Uniqueid": "vgua0-dev-1443442640.97", "Context": "osvpi_account", "AccountCode": "126680005", "ChannelStateDesc": "Down", "Channel": "SIP/126680005-0000002c", "CallerIDNum": "", "content": "", "ChannelState": "0", "Exten": ""}, - {"CallerIDName": "", "Channel": "SIP/126680005-0000002c", "Privilege": "call,all", "CallerIDNum": "205", "Event": "NewCallerid", "content": "", "Uniqueid": "vgua0-dev-1443442640.97", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"CallerIDName": "John 202 Doe", "Privilege": "call,all", "Event": "Dial", "SubEvent": "Begin", "UniqueID": "vgua0-dev-1443442640.96", "DestUniqueID": "vgua0-dev-1443442640.97", "ConnectedLineName": "", "Dialstring": "126680005/126680005/1.2.3.4", "CallerIDNum": "202", "content": "", "ConnectedLineNum": "205", "Destination": "SIP/126680005-0000002c", "Channel": "Local/ID42@osvpi_route_phoneaccount-00000019;2"}, - {"CallerIDName": "", "Channel": "SIP/126680005-0000002c", "Privilege": "call,all", "CallerIDNum": "205", "Event": "Newstate", "content": "", "ConnectedLineNum": "202", "Uniqueid": "vgua0-dev-1443442640.97", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "John 202 Doe"}, - {"CallerIDName": "", "Channel": "Local/ID42@osvpi_route_phoneaccount-00000019;1", "Privilege": "call,all", "CallerIDNum": "205", "Event": "Newstate", "content": "", "ConnectedLineNum": "202", "Uniqueid": "vgua0-dev-1443442640.95", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "John 202 Doe"}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Hangup", "Cause": "0", "Uniqueid": "vgua0-dev-1443442640.95", "AccountCode": "126680002", "ConnectedLineName": "John 202 Doe", "Channel": "Local/ID42@osvpi_route_phoneaccount-00000019;1", "CallerIDNum": "205", "content": "", "ConnectedLineNum": "202", "Cause-txt": "Unknown"}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Hangup", "Cause": "16", "Uniqueid": "vgua0-dev-1443442640.97", "AccountCode": "126680002", "ConnectedLineName": "John 202 Doe", "Channel": "SIP/126680005-0000002c", "CallerIDNum": "205", "content": "", "ConnectedLineNum": "202", "Cause-txt": "Normal Clearing"}, - {"Channel": "SIP/126680002-0000002b", "Privilege": "call,all", "SubEvent": "End", "Event": "Dial", "content": "", "DialStatus": "CANCEL", "UniqueID": "vgua0-dev-1443442640.94"}, - {"Channel": "Local/ID42@osvpi_route_phoneaccount-00000019;2", "Privilege": "call,all", "SubEvent": "End", "Event": "Dial", "content": "", "DialStatus": "CANCEL", "UniqueID": "vgua0-dev-1443442640.96"}, - {"CallerIDName": "John 202 Doe", "Privilege": "call,all", "Event": "Hangup", "Cause": "0", "Uniqueid": "vgua0-dev-1443442640.96", "AccountCode": "126680002", "ConnectedLineName": "", "Channel": "Local/ID42@osvpi_route_phoneaccount-00000019;2", "CallerIDNum": "202", "content": "", "ConnectedLineNum": "205", "Cause-txt": "Unknown"}, - {"CallerIDName": "John 202 Doe", "Privilege": "call,all", "Event": "Hangup", "Cause": "0", "Uniqueid": "vgua0-dev-1443442640.94", "AccountCode": "126680002", "ConnectedLineName": "", "Channel": "SIP/126680002-0000002b", "CallerIDNum": "202", "content": "", "ConnectedLineNum": "", "Cause-txt": "Unknown"}, - {"Privilege": "call,all", "TransferMethod": "SIP", "TargetUniqueid": "vgua0-dev-1443442620.82", "Event": "Transfer", "Uniqueid": "vgua0-dev-1443442620.85", "TransferExten": "205", "Channel": "SIP/126680002-00000028", "TransferContext": "osvpi_account_transfer", "SIP-Callid": "70fa387f00ea0ca208934a294bedab98@5.5.5.5:5060", "content": "", "TransferType": "Blind", "TargetChannel": "SIP/voipgrid-siproute-dev-00000027"}, - {"Uniqueid1": "vgua0-dev-1443442620.82", "Bridgestate": "Unlink", "Channel2": "SIP/126680002-00000028", "Event": "Bridge", "content": "", "Bridgetype": "core", "CallerID2": "+31507001918", "Channel1": "SIP/voipgrid-siproute-dev-00000027", "Privilege": "call,all", "Uniqueid2": "vgua0-dev-1443442620.85", "CallerID1": "+31507xxxxxx"}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Hangup", "Cause": "16", "Uniqueid": "vgua0-dev-1443442620.85", "AccountCode": "12668", "ConnectedLineName": "", "Channel": "SIP/126680002-00000028", "CallerIDNum": "+31507001918", "content": "", "ConnectedLineNum": "Anonymous", "Cause-txt": "Normal Clearing"}, - {"Channel": "SIP/voipgrid-siproute-dev-00000027", "Privilege": "call,all", "SubEvent": "End", "Event": "Dial", "content": "", "DialStatus": "ANSWER", "UniqueID": "vgua0-dev-1443442620.82"}, - {"CallerIDName": "", "Channel": "SIP/voipgrid-siproute-dev-00000027", "Privilege": "call,all", "CallerIDNum": "P", "Event": "NewCallerid", "content": "", "Uniqueid": "vgua0-dev-1443442620.82", "CID-CallingPres": "33 (Presentation Prohibited, Passed Screen)"}, - {"Channel": "SIP/voipgrid-siproute-dev-00000027", "Privilege": "call,all", "Event": "NewAccountCode", "content": "", "Uniqueid": "vgua0-dev-1443442620.82", "OldAccountCode": "12668", "AccountCode": "126680002"}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Newchannel", "Uniqueid": "vgua0-dev-1443442648.98", "Context": "osvpi_route_phoneaccount", "AccountCode": "", "ChannelStateDesc": "Down", "Channel": "Local/ID42@osvpi_route_phoneaccount-0000001a;1", "CallerIDNum": "", "content": "", "ChannelState": "0", "Exten": "ID42"}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Newchannel", "Uniqueid": "vgua0-dev-1443442648.99", "Context": "osvpi_route_phoneaccount", "AccountCode": "", "ChannelStateDesc": "Ring", "Channel": "Local/ID42@osvpi_route_phoneaccount-0000001a;2", "CallerIDNum": "", "content": "", "ChannelState": "4", "Exten": "ID42"}, - {"CallerIDName": "", "Channel": "Local/ID42@osvpi_route_phoneaccount-0000001a;1", "Privilege": "call,all", "CallerIDNum": "205", "Event": "NewCallerid", "content": "", "Uniqueid": "vgua0-dev-1443442648.98", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"Uniqueid1": "vgua0-dev-1443442648.98", "Privilege": "call,all", "Channel2": "Local/ID42@osvpi_route_phoneaccount-0000001a;2", "Event": "LocalBridge", "content": "", "Context": "osvpi_route_phoneaccount", "Channel1": "Local/ID42@osvpi_route_phoneaccount-0000001a;1", "LocalOptimization": "Yes", "Exten": "ID42", "Uniqueid2": "vgua0-dev-1443442648.99"}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Dial", "SubEvent": "Begin", "UniqueID": "vgua0-dev-1443442620.82", "DestUniqueID": "vgua0-dev-1443442648.98", "ConnectedLineName": "", "Dialstring": "ID42@osvpi_route_phoneaccount", "CallerIDNum": "P", "content": "", "ConnectedLineNum": "", "Destination": "Local/ID42@osvpi_route_phoneaccount-0000001a;1", "Channel": "SIP/voipgrid-siproute-dev-00000027"}, - {"CallerIDName": "", "Channel": "Local/ID42@osvpi_route_phoneaccount-0000001a;2", "Privilege": "call,all", "CallerIDNum": "Anonymous", "Event": "NewCallerid", "content": "", "Uniqueid": "vgua0-dev-1443442648.99", "CID-CallingPres": "33 (Presentation Prohibited, Passed Screen)"}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Newchannel", "Uniqueid": "vgua0-dev-1443442648.100", "Context": "osvpi_account", "AccountCode": "126680005", "ChannelStateDesc": "Down", "Channel": "SIP/126680005-0000002d", "CallerIDNum": "", "content": "", "ChannelState": "0", "Exten": ""}, - {"CallerIDName": "", "Channel": "SIP/126680005-0000002d", "Privilege": "call,all", "CallerIDNum": "205", "Event": "NewCallerid", "content": "", "Uniqueid": "vgua0-dev-1443442648.100", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Dial", "SubEvent": "Begin", "UniqueID": "vgua0-dev-1443442648.99", "DestUniqueID": "vgua0-dev-1443442648.100", "ConnectedLineName": "", "Dialstring": "126680005/126680005/1.2.3.4", "CallerIDNum": "Anonymous", "content": "", "ConnectedLineNum": "205", "Destination": "SIP/126680005-0000002d", "Channel": "Local/ID42@osvpi_route_phoneaccount-0000001a;2"}, - {"CallerIDName": "", "Channel": "SIP/126680005-0000002d", "Privilege": "call,all", "CallerIDNum": "205", "Event": "Newstate", "content": "", "ConnectedLineNum": "Anonymous", "Uniqueid": "vgua0-dev-1443442648.100", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": ""}, - {"CallerIDName": "", "Channel": "Local/ID42@osvpi_route_phoneaccount-0000001a;1", "Privilege": "call,all", "CallerIDNum": "205", "Event": "Newstate", "content": "", "ConnectedLineNum": "P", "Uniqueid": "vgua0-dev-1443442648.98", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": ""}, - {"CallerIDName": "", "Channel": "SIP/126680005-0000002d", "Privilege": "call,all", "CallerIDNum": "205", "Event": "Newstate", "content": "", "ConnectedLineNum": "Anonymous", "Uniqueid": "vgua0-dev-1443442648.100", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": ""}, - {"CallerIDName": "", "Channel": "Local/ID42@osvpi_route_phoneaccount-0000001a;2", "Privilege": "call,all", "CallerIDNum": "Anonymous", "Event": "Newstate", "content": "", "ConnectedLineNum": "205", "Uniqueid": "vgua0-dev-1443442648.99", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": ""}, - {"Channel": "SIP/126680005-0000002d", "Privilege": "call,all", "Event": "NewAccountCode", "content": "", "Uniqueid": "vgua0-dev-1443442648.100", "OldAccountCode": "126680002", "AccountCode": "126680002"}, - {"Uniqueid1": "vgua0-dev-1443442648.99", "Bridgestate": "Link", "Channel2": "SIP/126680005-0000002d", "Event": "Bridge", "content": "", "Bridgetype": "core", "CallerID2": "205", "Channel1": "Local/ID42@osvpi_route_phoneaccount-0000001a;2", "Privilege": "call,all", "Uniqueid2": "vgua0-dev-1443442648.100", "CallerID1": "Anonymous"}, - {"CallerIDName": "", "Channel": "Local/ID42@osvpi_route_phoneaccount-0000001a;1", "Privilege": "call,all", "CallerIDNum": "205", "Event": "Newstate", "content": "", "ConnectedLineNum": "P", "Uniqueid": "vgua0-dev-1443442648.98", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": ""}, - {"Channel": "Local/ID42@osvpi_route_phoneaccount-0000001a;1", "Privilege": "call,all", "Event": "NewAccountCode", "content": "", "Uniqueid": "vgua0-dev-1443442648.98", "OldAccountCode": "126680002", "AccountCode": "126680002"}, - {"Uniqueid1": "vgua0-dev-1443442620.82", "Bridgestate": "Link", "Channel2": "Local/ID42@osvpi_route_phoneaccount-0000001a;1", "Event": "Bridge", "content": "", "Bridgetype": "core", "CallerID2": "205", "Channel1": "SIP/voipgrid-siproute-dev-00000027", "Privilege": "call,all", "Uniqueid2": "vgua0-dev-1443442648.98", "CallerID1": "P"}, - {"OriginalState": "Up", "Original": "Local/ID42@osvpi_route_phoneaccount-0000001a;1", "content": "", "CloneState": "Up", "Clone": "SIP/126680005-0000002d", "Privilege": "call,all", "Event": "Masquerade"}, - {"Channel": "SIP/126680005-0000002d", "Privilege": "call,all", "Event": "Rename", "content": "", "Newname": "SIP/126680005-0000002d", "Uniqueid": "vgua0-dev-1443442648.100"}, - {"Channel": "Local/ID42@osvpi_route_phoneaccount-0000001a;1", "Privilege": "call,all", "Event": "Rename", "content": "", "Newname": "SIP/126680005-0000002d", "Uniqueid": "vgua0-dev-1443442648.98"}, - {"Channel": "SIP/126680005-0000002d", "Privilege": "call,all", "Event": "Rename", "content": "", "Newname": "Local/ID42@osvpi_route_phoneaccount-0000001a;1", "Uniqueid": "vgua0-dev-1443442648.100"}, - {"CallerIDName": "", "Channel": "SIP/126680005-0000002d", "Privilege": "call,all", "CallerIDNum": "205", "Event": "NewCallerid", "content": "", "Uniqueid": "vgua0-dev-1443442648.98", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)"}, - {"Uniqueid1": "vgua0-dev-1443442648.99", "Bridgestate": "Unlink", "Channel2": "Local/ID42@osvpi_route_phoneaccount-0000001a;1", "Event": "Bridge", "content": "", "Bridgetype": "core", "CallerID2": "205", "Channel1": "Local/ID42@osvpi_route_phoneaccount-0000001a;2", "Privilege": "call,all", "Uniqueid2": "vgua0-dev-1443442648.100", "CallerID1": "Anonymous"}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Hangup", "Cause": "16", "Uniqueid": "vgua0-dev-1443442648.100", "AccountCode": "126680002", "ConnectedLineName": "", "Channel": "Local/ID42@osvpi_route_phoneaccount-0000001a;1", "CallerIDNum": "205", "content": "", "ConnectedLineNum": "P", "Cause-txt": "Normal Clearing"}, - {"Channel": "Local/ID42@osvpi_route_phoneaccount-0000001a;2", "Privilege": "call,all", "SubEvent": "End", "Event": "Dial", "content": "", "DialStatus": "ANSWER", "UniqueID": "vgua0-dev-1443442648.99"}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Hangup", "Cause": "16", "Uniqueid": "vgua0-dev-1443442648.99", "AccountCode": "126680002", "ConnectedLineName": "", "Channel": "Local/ID42@osvpi_route_phoneaccount-0000001a;2", "CallerIDNum": "Anonymous", "content": "", "ConnectedLineNum": "205", "Cause-txt": "Normal Clearing"}, - {"Uniqueid1": "vgua0-dev-1443442620.82", "Bridgestate": "Unlink", "Channel2": "SIP/126680005-0000002d", "Event": "Bridge", "content": "", "Bridgetype": "core", "CallerID2": "205", "Channel1": "SIP/voipgrid-siproute-dev-00000027", "Privilege": "call,all", "Uniqueid2": "vgua0-dev-1443442648.98", "CallerID1": "P"}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Hangup", "Cause": "16", "Uniqueid": "vgua0-dev-1443442648.98", "AccountCode": "126680002", "ConnectedLineName": "", "Channel": "SIP/126680005-0000002d", "CallerIDNum": "205", "content": "", "ConnectedLineNum": "Anonymous", "Cause-txt": "Normal Clearing"}, - {"Channel": "SIP/voipgrid-siproute-dev-00000027", "Privilege": "call,all", "SubEvent": "End", "Event": "Dial", "content": "", "DialStatus": "ANSWER", "UniqueID": "vgua0-dev-1443442620.82"}, - {"CallerIDName": "", "Privilege": "call,all", "Event": "Hangup", "Cause": "16", "Uniqueid": "vgua0-dev-1443442620.82", "AccountCode": "126680002", "ConnectedLineName": "", "Channel": "SIP/voipgrid-siproute-dev-00000027", "CallerIDNum": "P", "content": "", "ConnectedLineNum": "", "Cause-txt": "Normal Clearing"} -] diff --git a/tests/fixtures/xfer_misc/call_forwarding.json b/tests/fixtures/xfer_misc/call_forwarding.json index 5d72028..34eef05 100644 --- a/tests/fixtures/xfer_misc/call_forwarding.json +++ b/tests/fixtures/xfer_misc/call_forwarding.json @@ -1,85 +1,108 @@ [ - {"content": "", "Status": "Fully Booted", "Privilege": "system,all", "Event": "FullyBooted"}, - {"AccountCode": "123450001", "Channel": "SIP/123450001-00000006", "content": "", "Event": "Newchannel", "Uniqueid": "vgua0-dev-1444992672.12", "CallerIDName": "", "ChannelStateDesc": "Down", "Exten": "202", "CallerIDNum": "123450001", "Privilege": "call,all", "ChannelState": "0", "Context": "osvpi_account"}, - {"Channel": "SIP/123450001-00000006", "CallerIDNum": "123450001", "content": "", "ConnectedLineName": "", "Privilege": "call,all", "Event": "Newstate", "ConnectedLineNum": "", "Uniqueid": "vgua0-dev-1444992672.12", "CallerIDName": "", "ChannelStateDesc": "Ring", "ChannelState": "4"}, - {"Channel": "SIP/123450001-00000006", "CallerIDNum": "123450001", "content": "", "Privilege": "call,all", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "Event": "NewCallerid", "Uniqueid": "vgua0-dev-1444992672.12", "CallerIDName": "Alice"}, - {"Channel": "SIP/123450001-00000006", "CallerIDNum": "201", "content": "", "Privilege": "call,all", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "Event": "NewCallerid", "Uniqueid": "vgua0-dev-1444992672.12", "CallerIDName": "Alice"}, - {"AccountCode": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000003;1", "content": "", "Event": "Newchannel", "Uniqueid": "vgua0-dev-1444992672.13", "CallerIDName": "", "ChannelStateDesc": "Down", "Exten": "ID2", "CallerIDNum": "", "Privilege": "call,all", "ChannelState": "0", "Context": "osvpi_route_phoneaccount"}, - {"AccountCode": "", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000003;2", "content": "", "Event": "Newchannel", "Uniqueid": "vgua0-dev-1444992672.14", "CallerIDName": "", "ChannelStateDesc": "Ring", "Exten": "ID2", "CallerIDNum": "", "Privilege": "call,all", "ChannelState": "4", "Context": "osvpi_route_phoneaccount"}, - {"Channel": "Local/ID2@osvpi_route_phoneaccount-00000003;1", "CallerIDNum": "202", "content": "", "Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Event": "NewCallerid", "Uniqueid": "vgua0-dev-1444992672.13", "CallerIDName": ""}, - {"Channel2": "Local/ID2@osvpi_route_phoneaccount-00000003;2", "Context": "osvpi_route_phoneaccount", "content": "", "LocalOptimization": "Yes", "Privilege": "call,all", "Event": "LocalBridge", "Uniqueid1": "vgua0-dev-1444992672.13", "Channel1": "Local/ID2@osvpi_route_phoneaccount-00000003;1", "Uniqueid2": "vgua0-dev-1444992672.14", "Exten": "ID2"}, - {"Channel": "SIP/123450001-00000006", "content": "", "Event": "Dial", "UniqueID": "vgua0-dev-1444992672.12", "CallerIDName": "Alice", "CallerIDNum": "201", "SubEvent": "Begin", "Dialstring": "ID2@osvpi_route_phoneaccount", "Privilege": "call,all", "ConnectedLineNum": "", "DestUniqueID": "vgua0-dev-1444992672.13", "Destination": "Local/ID2@osvpi_route_phoneaccount-00000003;1", "ConnectedLineName": ""}, - {"Channel": "Local/ID2@osvpi_route_phoneaccount-00000003;2", "CallerIDNum": "123450002", "content": "", "Privilege": "call,all", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "Event": "NewCallerid", "Uniqueid": "vgua0-dev-1444992672.14", "CallerIDName": "Alice"}, - {"Channel": "Local/ID2@osvpi_route_phoneaccount-00000003;2", "CallerIDNum": "123450002", "content": "", "Privilege": "call,all", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "Event": "NewCallerid", "Uniqueid": "vgua0-dev-1444992672.14", "CallerIDName": ""}, - {"AccountCode": "123450002", "Channel": "SIP/123450002-00000007", "content": "", "Event": "Newchannel", "Uniqueid": "vgua0-dev-1444992672.15", "CallerIDName": "", "ChannelStateDesc": "Down", "Exten": "", "CallerIDNum": "", "Privilege": "call,all", "ChannelState": "0", "Context": "osvpi_account"}, - {"Channel": "SIP/123450002-00000007", "CallerIDNum": "202", "content": "", "Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Event": "NewCallerid", "Uniqueid": "vgua0-dev-1444992672.15", "CallerIDName": ""}, - {"Channel": "Local/ID2@osvpi_route_phoneaccount-00000003;2", "content": "", "Event": "Dial", "UniqueID": "vgua0-dev-1444992672.14", "CallerIDName": "", "CallerIDNum": "123450002", "SubEvent": "Begin", "Dialstring": "123450002/123450002/1.2.3.4", "Privilege": "call,all", "ConnectedLineNum": "202", "DestUniqueID": "vgua0-dev-1444992672.15", "Destination": "SIP/123450002-00000007", "ConnectedLineName": ""}, - {"AccountCode": "", "Channel": "Local/205@osvpi_account-00000004;1", "content": "", "Event": "Newchannel", "Uniqueid": "vgua0-dev-1444992672.16", "CallerIDName": "", "ChannelStateDesc": "Down", "Exten": "203", "CallerIDNum": "", "Privilege": "call,all", "ChannelState": "0", "Context": "osvpi_account"}, - {"AccountCode": "", "Channel": "Local/205@osvpi_account-00000004;2", "content": "", "Event": "Newchannel", "Uniqueid": "vgua0-dev-1444992672.17", "CallerIDName": "", "ChannelStateDesc": "Ring", "Exten": "203", "CallerIDNum": "", "Privilege": "call,all", "ChannelState": "4", "Context": "osvpi_account"}, - {"Channel": "Local/205@osvpi_account-00000004;1", "CallerIDNum": "202", "content": "", "Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Event": "NewCallerid", "Uniqueid": "vgua0-dev-1444992672.16", "CallerIDName": ""}, - {"Channel2": "Local/205@osvpi_account-00000004;2", "Context": "osvpi_account", "content": "", "LocalOptimization": "Yes", "Privilege": "call,all", "Event": "LocalBridge", "Uniqueid1": "vgua0-dev-1444992672.16", "Channel1": "Local/205@osvpi_account-00000004;1", "Uniqueid2": "vgua0-dev-1444992672.17", "Exten": "203"}, - {"Channel": "Local/ID2@osvpi_route_phoneaccount-00000003;2", "content": "", "Event": "Dial", "UniqueID": "vgua0-dev-1444992672.14", "CallerIDName": "", "CallerIDNum": "123450002", "SubEvent": "Begin", "Dialstring": "205@osvpi_account", "Privilege": "call,all", "ConnectedLineNum": "202", "DestUniqueID": "vgua0-dev-1444992672.16", "Destination": "Local/205@osvpi_account-00000004;1", "ConnectedLineName": ""}, - {"AccountCode": "123450001", "Channel": "SIP/123450002-00000007", "content": "", "Event": "Hangup", "Uniqueid": "vgua0-dev-1444992672.15", "CallerIDName": "", "CallerIDNum": "202", "Cause": "16", "ConnectedLineName": "", "Privilege": "call,all", "ConnectedLineNum": "123450002", "Cause-txt": "Normal Clearing"}, - {"Channel": "Local/205@osvpi_account-00000004;2", "CallerIDNum": "201", "content": "", "Privilege": "call,all", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "Event": "NewCallerid", "Uniqueid": "vgua0-dev-1444992672.17", "CallerIDName": ""}, - {"AccountCode": "123450002", "Channel": "Local/205@osvpi_account-00000004;2", "content": "", "Privilege": "call,all", "Event": "NewAccountCode", "OldAccountCode": "123450001", "Uniqueid": "vgua0-dev-1444992672.17"}, - {"AccountCode": "", "Channel": "Local/ID42@osvpi_route_phoneaccount-00000005;1", "content": "", "Event": "Newchannel", "Uniqueid": "vgua0-dev-1444992672.18", "CallerIDName": "", "ChannelStateDesc": "Down", "Exten": "ID42", "CallerIDNum": "", "Privilege": "call,all", "ChannelState": "0", "Context": "osvpi_route_phoneaccount"}, - {"AccountCode": "", "Channel": "Local/ID42@osvpi_route_phoneaccount-00000005;2", "content": "", "Event": "Newchannel", "Uniqueid": "vgua0-dev-1444992672.19", "CallerIDName": "", "ChannelStateDesc": "Ring", "Exten": "ID42", "CallerIDNum": "", "Privilege": "call,all", "ChannelState": "4", "Context": "osvpi_route_phoneaccount"}, - {"Channel": "Local/ID42@osvpi_route_phoneaccount-00000005;1", "CallerIDNum": "203", "content": "", "Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Event": "NewCallerid", "Uniqueid": "vgua0-dev-1444992672.18", "CallerIDName": ""}, - {"Channel2": "Local/ID42@osvpi_route_phoneaccount-00000005;2", "Context": "osvpi_route_phoneaccount", "content": "", "LocalOptimization": "Yes", "Privilege": "call,all", "Event": "LocalBridge", "Uniqueid1": "vgua0-dev-1444992672.18", "Channel1": "Local/ID42@osvpi_route_phoneaccount-00000005;1", "Uniqueid2": "vgua0-dev-1444992672.19", "Exten": "ID42"}, - {"Channel": "Local/205@osvpi_account-00000004;2", "content": "", "Event": "Dial", "UniqueID": "vgua0-dev-1444992672.17", "CallerIDName": "", "CallerIDNum": "201", "SubEvent": "Begin", "Dialstring": "ID42@osvpi_route_phoneaccount", "Privilege": "call,all", "ConnectedLineNum": "202", "DestUniqueID": "vgua0-dev-1444992672.18", "Destination": "Local/ID42@osvpi_route_phoneaccount-00000005;1", "ConnectedLineName": ""}, - {"Channel": "Local/ID42@osvpi_route_phoneaccount-00000005;2", "CallerIDNum": "201", "content": "", "Privilege": "call,all", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "Event": "NewCallerid", "Uniqueid": "vgua0-dev-1444992672.19", "CallerIDName": ""}, - {"AccountCode": "123450003", "Channel": "SIP/123450003-00000008", "content": "", "Event": "Newchannel", "Uniqueid": "vgua0-dev-1444992672.20", "CallerIDName": "", "ChannelStateDesc": "Down", "Exten": "", "CallerIDNum": "", "Privilege": "call,all", "ChannelState": "0", "Context": "osvpi_account"}, - {"Channel": "SIP/123450003-00000008", "CallerIDNum": "203", "content": "", "Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Event": "NewCallerid", "Uniqueid": "vgua0-dev-1444992672.20", "CallerIDName": ""}, - {"Channel": "Local/ID42@osvpi_route_phoneaccount-00000005;2", "content": "", "Event": "Dial", "UniqueID": "vgua0-dev-1444992672.19", "CallerIDName": "", "CallerIDNum": "201", "SubEvent": "Begin", "Dialstring": "123450003/123450003/1.2.3.4", "Privilege": "call,all", "ConnectedLineNum": "203", "DestUniqueID": "vgua0-dev-1444992672.20", "Destination": "SIP/123450003-00000008", "ConnectedLineName": ""}, - {"Channel": "SIP/123450003-00000008", "CallerIDNum": "203", "content": "", "ConnectedLineName": "", "Privilege": "call,all", "Event": "Newstate", "ConnectedLineNum": "201", "Uniqueid": "vgua0-dev-1444992672.20", "CallerIDName": "", "ChannelStateDesc": "Ringing", "ChannelState": "5"}, - {"Channel": "Local/ID42@osvpi_route_phoneaccount-00000005;1", "CallerIDNum": "203", "content": "", "ConnectedLineName": "", "Privilege": "call,all", "Event": "Newstate", "ConnectedLineNum": "201", "Uniqueid": "vgua0-dev-1444992672.18", "CallerIDName": "", "ChannelStateDesc": "Ringing", "ChannelState": "5"}, - {"Channel": "Local/205@osvpi_account-00000004;1", "CallerIDNum": "202", "content": "", "ConnectedLineName": "", "Privilege": "call,all", "Event": "Newstate", "ConnectedLineNum": "123450002", "Uniqueid": "vgua0-dev-1444992672.16", "CallerIDName": "", "ChannelStateDesc": "Ringing", "ChannelState": "5"}, - {"Channel": "Local/ID2@osvpi_route_phoneaccount-00000003;1", "CallerIDNum": "202", "content": "", "ConnectedLineName": "Alice", "Privilege": "call,all", "Event": "Newstate", "ConnectedLineNum": "201", "Uniqueid": "vgua0-dev-1444992672.13", "CallerIDName": "", "ChannelStateDesc": "Ringing", "ChannelState": "5"}, - {"Channel": "SIP/123450003-00000008", "CallerIDNum": "203", "content": "", "ConnectedLineName": "", "Privilege": "call,all", "Event": "Newstate", "ConnectedLineNum": "201", "Uniqueid": "vgua0-dev-1444992672.20", "CallerIDName": "", "ChannelStateDesc": "Up", "ChannelState": "6"}, - {"Channel": "Local/ID42@osvpi_route_phoneaccount-00000005;2", "CallerIDNum": "201", "content": "", "ConnectedLineName": "", "Privilege": "call,all", "Event": "Newstate", "ConnectedLineNum": "203", "Uniqueid": "vgua0-dev-1444992672.19", "CallerIDName": "", "ChannelStateDesc": "Up", "ChannelState": "6"}, - {"Channel": "Local/ID42@osvpi_route_phoneaccount-00000005;1", "CallerIDNum": "203", "content": "", "ConnectedLineName": "", "Privilege": "call,all", "Event": "Newstate", "ConnectedLineNum": "201", "Uniqueid": "vgua0-dev-1444992672.18", "CallerIDName": "", "ChannelStateDesc": "Up", "ChannelState": "6"}, - {"AccountCode": "123450002", "Channel": "SIP/123450003-00000008", "content": "", "Privilege": "call,all", "Event": "NewAccountCode", "OldAccountCode": "123450002", "Uniqueid": "vgua0-dev-1444992672.20"}, - {"Channel": "Local/205@osvpi_account-00000004;2", "CallerIDNum": "201", "content": "", "ConnectedLineName": "", "Privilege": "call,all", "Event": "Newstate", "ConnectedLineNum": "202", "Uniqueid": "vgua0-dev-1444992672.17", "CallerIDName": "", "ChannelStateDesc": "Up", "ChannelState": "6"}, - {"Channel2": "SIP/123450003-00000008", "content": "", "Uniqueid2": "vgua0-dev-1444992672.20", "Bridgestate": "Link", "Privilege": "call,all", "Event": "Bridge", "CallerID1": "201", "Bridgetype": "core", "Uniqueid1": "vgua0-dev-1444992672.19", "Channel1": "Local/ID42@osvpi_route_phoneaccount-00000005;2", "CallerID2": "203"}, - {"AccountCode": "123450002", "Channel": "Local/ID42@osvpi_route_phoneaccount-00000005;1", "content": "", "Privilege": "call,all", "Event": "NewAccountCode", "OldAccountCode": "123450002", "Uniqueid": "vgua0-dev-1444992672.18"}, - {"Channel": "Local/205@osvpi_account-00000004;1", "CallerIDNum": "202", "content": "", "ConnectedLineName": "", "Privilege": "call,all", "Event": "Newstate", "ConnectedLineNum": "123450002", "Uniqueid": "vgua0-dev-1444992672.16", "CallerIDName": "", "ChannelStateDesc": "Up", "ChannelState": "6"}, - {"Channel": "Local/ID2@osvpi_route_phoneaccount-00000003;2", "CallerIDNum": "123450002", "content": "", "ConnectedLineName": "", "Privilege": "call,all", "Event": "Newstate", "ConnectedLineNum": "202", "Uniqueid": "vgua0-dev-1444992672.14", "CallerIDName": "", "ChannelStateDesc": "Up", "ChannelState": "6"}, - {"Channel2": "Local/ID42@osvpi_route_phoneaccount-00000005;1", "content": "", "Uniqueid2": "vgua0-dev-1444992672.18", "Bridgestate": "Link", "Privilege": "call,all", "Event": "Bridge", "CallerID1": "201", "Bridgetype": "core", "Uniqueid1": "vgua0-dev-1444992672.17", "Channel1": "Local/205@osvpi_account-00000004;2", "CallerID2": "203"}, - {"AccountCode": "123450001", "Channel": "Local/205@osvpi_account-00000004;1", "content": "", "Privilege": "call,all", "Event": "NewAccountCode", "OldAccountCode": "123450001", "Uniqueid": "vgua0-dev-1444992672.16"}, - {"Channel": "Local/ID2@osvpi_route_phoneaccount-00000003;1", "CallerIDNum": "202", "content": "", "ConnectedLineName": "Alice", "Privilege": "call,all", "Event": "Newstate", "ConnectedLineNum": "201", "Uniqueid": "vgua0-dev-1444992672.13", "CallerIDName": "", "ChannelStateDesc": "Up", "ChannelState": "6"}, - {"Channel2": "Local/205@osvpi_account-00000004;1", "content": "", "Uniqueid2": "vgua0-dev-1444992672.16", "Bridgestate": "Link", "Privilege": "call,all", "Event": "Bridge", "CallerID1": "123450002", "Bridgetype": "core", "Uniqueid1": "vgua0-dev-1444992672.14", "Channel1": "Local/ID2@osvpi_route_phoneaccount-00000003;2", "CallerID2": "202"}, - {"Channel": "SIP/123450001-00000006", "CallerIDNum": "201", "content": "", "ConnectedLineName": "", "Privilege": "call,all", "Event": "Newstate", "ConnectedLineNum": "", "Uniqueid": "vgua0-dev-1444992672.12", "CallerIDName": "Alice", "ChannelStateDesc": "Up", "ChannelState": "6"}, - {"AccountCode": "123450001", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000003;1", "content": "", "Privilege": "call,all", "Event": "NewAccountCode", "OldAccountCode": "123450001", "Uniqueid": "vgua0-dev-1444992672.13"}, - {"Channel2": "Local/ID2@osvpi_route_phoneaccount-00000003;1", "content": "", "Uniqueid2": "vgua0-dev-1444992672.13", "Bridgestate": "Link", "Privilege": "call,all", "Event": "Bridge", "CallerID1": "201", "Bridgetype": "core", "Uniqueid1": "vgua0-dev-1444992672.12", "Channel1": "SIP/123450001-00000006", "CallerID2": "202"}, - {"OriginalState": "Up", "content": "", "Privilege": "call,all", "Event": "Masquerade", "Original": "Local/ID42@osvpi_route_phoneaccount-00000005;1", "Clone": "SIP/123450003-00000008", "CloneState": "Up"}, - {"Channel": "SIP/123450003-00000008", "Newname": "SIP/123450003-00000008", "content": "", "Privilege": "call,all", "Event": "Rename", "Uniqueid": "vgua0-dev-1444992672.20"}, - {"Channel": "Local/ID42@osvpi_route_phoneaccount-00000005;1", "Newname": "SIP/123450003-00000008", "content": "", "Privilege": "call,all", "Event": "Rename", "Uniqueid": "vgua0-dev-1444992672.18"}, - {"Channel": "SIP/123450003-00000008", "Newname": "Local/ID42@osvpi_route_phoneaccount-00000005;1", "content": "", "Privilege": "call,all", "Event": "Rename", "Uniqueid": "vgua0-dev-1444992672.20"}, - {"Channel": "SIP/123450003-00000008", "CallerIDNum": "203", "content": "", "Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Event": "NewCallerid", "Uniqueid": "vgua0-dev-1444992672.18", "CallerIDName": ""}, - {"Channel2": "Local/ID42@osvpi_route_phoneaccount-00000005;1", "content": "", "Uniqueid2": "vgua0-dev-1444992672.20", "Bridgestate": "Unlink", "Privilege": "call,all", "Event": "Bridge", "CallerID1": "201", "Bridgetype": "core", "Uniqueid1": "vgua0-dev-1444992672.19", "Channel1": "Local/ID42@osvpi_route_phoneaccount-00000005;2", "CallerID2": "203"}, - {"OriginalState": "Up", "content": "", "Privilege": "call,all", "Event": "Masquerade", "Original": "Local/205@osvpi_account-00000004;1", "Clone": "SIP/123450003-00000008", "CloneState": "Up"}, - {"Channel": "SIP/123450003-00000008", "Newname": "SIP/123450003-00000008", "content": "", "Privilege": "call,all", "Event": "Rename", "Uniqueid": "vgua0-dev-1444992672.18"}, - {"Channel": "Local/205@osvpi_account-00000004;1", "Newname": "SIP/123450003-00000008", "content": "", "Privilege": "call,all", "Event": "Rename", "Uniqueid": "vgua0-dev-1444992672.16"}, - {"Channel": "SIP/123450003-00000008", "Newname": "Local/205@osvpi_account-00000004;1", "content": "", "Privilege": "call,all", "Event": "Rename", "Uniqueid": "vgua0-dev-1444992672.18"}, - {"Channel": "SIP/123450003-00000008", "CallerIDNum": "202", "content": "", "Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Event": "NewCallerid", "Uniqueid": "vgua0-dev-1444992672.16", "CallerIDName": ""}, - {"Channel2": "Local/205@osvpi_account-00000004;1", "content": "", "Uniqueid2": "vgua0-dev-1444992672.18", "Bridgestate": "Unlink", "Privilege": "call,all", "Event": "Bridge", "CallerID1": "201", "Bridgetype": "core", "Uniqueid1": "vgua0-dev-1444992672.17", "Channel1": "Local/205@osvpi_account-00000004;2", "CallerID2": "203"}, - {"OriginalState": "Up", "content": "", "Privilege": "call,all", "Event": "Masquerade", "Original": "Local/ID2@osvpi_route_phoneaccount-00000003;1", "Clone": "SIP/123450003-00000008", "CloneState": "Up"}, - {"Channel": "SIP/123450003-00000008", "Newname": "SIP/123450003-00000008", "content": "", "Privilege": "call,all", "Event": "Rename", "Uniqueid": "vgua0-dev-1444992672.16"}, - {"Channel": "Local/ID2@osvpi_route_phoneaccount-00000003;1", "Newname": "SIP/123450003-00000008", "content": "", "Privilege": "call,all", "Event": "Rename", "Uniqueid": "vgua0-dev-1444992672.13"}, - {"Channel": "SIP/123450003-00000008", "Newname": "Local/ID2@osvpi_route_phoneaccount-00000003;1", "content": "", "Privilege": "call,all", "Event": "Rename", "Uniqueid": "vgua0-dev-1444992672.16"}, - {"Channel": "SIP/123450003-00000008", "CallerIDNum": "202", "content": "", "Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Event": "NewCallerid", "Uniqueid": "vgua0-dev-1444992672.13", "CallerIDName": ""}, - {"Channel2": "Local/ID2@osvpi_route_phoneaccount-00000003;1", "content": "", "Uniqueid2": "vgua0-dev-1444992672.16", "Bridgestate": "Unlink", "Privilege": "call,all", "Event": "Bridge", "CallerID1": "123450002", "Bridgetype": "core", "Uniqueid1": "vgua0-dev-1444992672.14", "Channel1": "Local/ID2@osvpi_route_phoneaccount-00000003;2", "CallerID2": "202"}, - {"AccountCode": "123450002", "Channel": "Local/ID42@osvpi_route_phoneaccount-00000005;1", "content": "", "Event": "Hangup", "Uniqueid": "vgua0-dev-1444992672.20", "CallerIDName": "", "CallerIDNum": "203", "Cause": "16", "ConnectedLineName": "", "Privilege": "call,all", "ConnectedLineNum": "201", "Cause-txt": "Normal Clearing"}, - {"Channel": "Local/ID42@osvpi_route_phoneaccount-00000005;2", "content": "", "SubEvent": "End", "DialStatus": "ANSWER", "Privilege": "call,all", "Event": "Dial", "UniqueID": "vgua0-dev-1444992672.19"}, - {"AccountCode": "123450002", "Channel": "Local/ID42@osvpi_route_phoneaccount-00000005;2", "content": "", "Event": "Hangup", "Uniqueid": "vgua0-dev-1444992672.19", "CallerIDName": "", "CallerIDNum": "201", "Cause": "16", "ConnectedLineName": "", "Privilege": "call,all", "ConnectedLineNum": "203", "Cause-txt": "Normal Clearing"}, - {"AccountCode": "123450002", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000003;1", "content": "", "Event": "Hangup", "Uniqueid": "vgua0-dev-1444992672.16", "CallerIDName": "", "CallerIDNum": "202", "Cause": "16", "ConnectedLineName": "Alice", "Privilege": "call,all", "ConnectedLineNum": "201", "Cause-txt": "Normal Clearing"}, - {"Channel": "Local/ID2@osvpi_route_phoneaccount-00000003;2", "content": "", "SubEvent": "End", "DialStatus": "ANSWER", "Privilege": "call,all", "Event": "Dial", "UniqueID": "vgua0-dev-1444992672.14"}, - {"AccountCode": "123450001", "Channel": "Local/ID2@osvpi_route_phoneaccount-00000003;2", "content": "", "Event": "Hangup", "Uniqueid": "vgua0-dev-1444992672.14", "CallerIDName": "", "CallerIDNum": "123450002", "Cause": "16", "ConnectedLineName": "", "Privilege": "call,all", "ConnectedLineNum": "202", "Cause-txt": "Normal Clearing"}, - {"AccountCode": "123450002", "Channel": "Local/205@osvpi_account-00000004;1", "content": "", "Event": "Hangup", "Uniqueid": "vgua0-dev-1444992672.18", "CallerIDName": "", "CallerIDNum": "203", "Cause": "16", "ConnectedLineName": "", "Privilege": "call,all", "ConnectedLineNum": "123450002", "Cause-txt": "Normal Clearing"}, - {"Channel": "Local/205@osvpi_account-00000004;2", "content": "", "SubEvent": "End", "DialStatus": "ANSWER", "Privilege": "call,all", "Event": "Dial", "UniqueID": "vgua0-dev-1444992672.17"}, - {"AccountCode": "123450002", "Channel": "Local/205@osvpi_account-00000004;2", "content": "", "Event": "Hangup", "Uniqueid": "vgua0-dev-1444992672.17", "CallerIDName": "", "CallerIDNum": "201", "Cause": "16", "ConnectedLineName": "", "Privilege": "call,all", "ConnectedLineNum": "202", "Cause-txt": "Normal Clearing"}, - {"Channel2": "SIP/123450003-00000008", "content": "", "Uniqueid2": "vgua0-dev-1444992672.13", "Bridgestate": "Unlink", "Privilege": "call,all", "Event": "Bridge", "CallerID1": "201", "Bridgetype": "core", "Uniqueid1": "vgua0-dev-1444992672.12", "Channel1": "SIP/123450001-00000006", "CallerID2": "202"}, - {"AccountCode": "123450002", "Channel": "SIP/123450003-00000008", "content": "", "Event": "Hangup", "Uniqueid": "vgua0-dev-1444992672.13", "CallerIDName": "", "CallerIDNum": "202", "Cause": "16", "ConnectedLineName": "", "Privilege": "call,all", "ConnectedLineNum": "201", "Cause-txt": "Normal Clearing"}, - {"Channel": "SIP/123450001-00000006", "content": "", "SubEvent": "End", "DialStatus": "ANSWER", "Privilege": "call,all", "Event": "Dial", "UniqueID": "vgua0-dev-1444992672.12"}, - {"AccountCode": "123450001", "Channel": "SIP/123450001-00000006", "content": "", "Event": "Hangup", "Uniqueid": "vgua0-dev-1444992672.12", "CallerIDName": "Alice", "CallerIDNum": "201", "Cause": "16", "ConnectedLineName": "", "Privilege": "call,all", "ConnectedLineNum": "", "Cause-txt": "Normal Clearing"} + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000016", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newchannel", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.305", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000016", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.305", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000016", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530191379.305", "Priority": "10", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.305", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000b;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730150", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.308", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000b;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730150", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.310", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000b;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.308", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000b;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.308", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000b;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.308", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000b;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730150", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.310", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000b;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730150", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.310", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000b;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730150", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.310", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730150", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31150010001", "LocalOneChannel": "Local/ID730150@osvpi_route_phoneaccount-0000000b;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31260010001", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "+31150010001", "LocalOneLanguage": "en", "LocalOneLinkedid": "b6093874285e-1530191379.305", "LocalOnePriority": "1", "LocalOneUniqueid": "b6093874285e-1530191379.308", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31260010001", "LocalTwoChannel": "Local/ID730150@osvpi_route_phoneaccount-0000000b;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31150010001", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730150", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "b6093874285e-1530191379.305", "LocalTwoPriority": "1", "LocalTwoUniqueid": "b6093874285e-1530191379.310", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000016", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/ID730150@osvpi_route_phoneaccount-0000000b;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "+31150010001", "DestLanguage": "en", "DestLinkedid": "b6093874285e-1530191379.305", "DestPriority": "1", "DestUniqueid": "b6093874285e-1530191379.308", "DialString": "ID730150@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.305", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010001-00000017", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.313", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000017", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.313", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000017", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530191379.305", "OldAccountCode": "150010001", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.313", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000017", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.313", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000b;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "SIP/150010001-00000017", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "+31150010001", "DestLanguage": "nl", "DestLinkedid": "b6093874285e-1530191379.305", "DestPriority": "1", "DestUniqueid": "b6093874285e-1530191379.313", "DialString": "150010001/150010001/172.20.0.13!!0260010001", "Event": "DialBegin", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "8", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.310", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/202@osvpi_account-0000000c;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "202", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.315", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/202@osvpi_account-0000000c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "202", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.317", "content": ""}, + {"AccountCode": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/202@osvpi_account-0000000c;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "202", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.315", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/202@osvpi_account-0000000c;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "202", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.315", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/202@osvpi_account-0000000c;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "202", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.315", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/202@osvpi_account-0000000c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "202", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.317", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/202@osvpi_account-0000000c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "202", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.317", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/202@osvpi_account-0000000c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "202", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.317", "content": ""}, + {"Context": "osvpi_account", "Event": "LocalBridge", "Exten": "202", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31150010001", "LocalOneChannel": "Local/202@osvpi_account-0000000c;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31260010001", "LocalOneContext": "osvpi_account", "LocalOneExten": "202", "LocalOneLanguage": "en", "LocalOneLinkedid": "b6093874285e-1530191379.305", "LocalOnePriority": "1", "LocalOneUniqueid": "b6093874285e-1530191379.315", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31260010001", "LocalTwoChannel": "Local/202@osvpi_account-0000000c;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31150010001", "LocalTwoContext": "osvpi_account", "LocalTwoExten": "202", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "b6093874285e-1530191379.305", "LocalTwoPriority": "1", "LocalTwoUniqueid": "b6093874285e-1530191379.317", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000b;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "SIP/150010001-00000017", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "+31150010001", "DestLanguage": "nl", "DestLinkedid": "b6093874285e-1530191379.305", "DestPriority": "1", "DestUniqueid": "b6093874285e-1530191379.313", "DialStatus": "CANCEL", "Event": "DialEnd", "Exten": "+31150010001", "Forward": "202", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "8", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.310", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000b;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/202@osvpi_account-0000000c;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "202", "DestLanguage": "en", "DestLinkedid": "b6093874285e-1530191379.305", "DestPriority": "1", "DestUniqueid": "b6093874285e-1530191379.315", "DialString": "202@osvpi_account", "Event": "DialBegin", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "8", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.310", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010001-00000017", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Hangup", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.313", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/202@osvpi_account-0000000c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_transfer", "Event": "NewAccountCode", "Exten": "202", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "OldAccountCode": "15001", "Priority": "30", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.317", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191380.323", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191380.325", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "202", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191380.323", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "202", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191380.323", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000d;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "202", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191380.323", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730151", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191380.325", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730151", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191380.325", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730151", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191380.325", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730151", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "202", "LocalOneChannel": "Local/ID730151@osvpi_route_phoneaccount-0000000d;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31260010001", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "202", "LocalOneLanguage": "en", "LocalOneLinkedid": "b6093874285e-1530191379.305", "LocalOnePriority": "1", "LocalOneUniqueid": "b6093874285e-1530191380.323", "LocalOptimization": "Yes", "LocalTwoAccountCode": "150010001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31260010001", "LocalTwoChannel": "Local/ID730151@osvpi_route_phoneaccount-0000000d;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "202", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730151", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "b6093874285e-1530191379.305", "LocalTwoPriority": "1", "LocalTwoUniqueid": "b6093874285e-1530191380.325", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/202@osvpi_account-0000000c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_call_int", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-0000000d;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "202", "DestLanguage": "en", "DestLinkedid": "b6093874285e-1530191379.305", "DestPriority": "1", "DestUniqueid": "b6093874285e-1530191380.323", "DialString": "ID730151@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "202", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "12", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.317", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010002-00000018", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191380.328", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000018", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "202", "Language": "nl", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191380.328", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000018", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "202", "Language": "nl", "Linkedid": "b6093874285e-1530191379.305", "OldAccountCode": "150010002", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191380.328", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000018", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "202", "Language": "nl", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191380.328", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "SIP/150010002-00000018", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "202", "DestLanguage": "nl", "DestLinkedid": "b6093874285e-1530191379.305", "DestPriority": "1", "DestUniqueid": "b6093874285e-1530191380.328", "DialString": "150010002/150010002/172.20.0.13!!0260010001", "Event": "DialBegin", "Exten": "202", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "8", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191380.325", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000018", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191380.328", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000d;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191380.323", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/202@osvpi_account-0000000c;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.315", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000b;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.308", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000018", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "nl", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191380.328", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000d;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "SIP/150010002-00000018", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "b6093874285e-1530191379.305", "DestPriority": "1", "DestUniqueid": "b6093874285e-1530191380.328", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "202", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "8", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191380.325", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000d;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "8", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191380.325", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191380.323", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "17a5caa7-5460-4e17-b4c6-912503d4111d", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/202@osvpi_account-0000000c;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_call_int", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "202", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-0000000d;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "b6093874285e-1530191379.305", "DestPriority": "1", "DestUniqueid": "b6093874285e-1530191380.323", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "202", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "12", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.317", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/202@osvpi_account-0000000c;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_call_int", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "12", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.317", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/202@osvpi_account-0000000c;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "202", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.315", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ce6ab50b-269b-4c2f-9fb8-d90ef2c7c6aa", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000b;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/202@osvpi_account-0000000c;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "b6093874285e-1530191379.305", "DestPriority": "1", "DestUniqueid": "b6093874285e-1530191379.315", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "8", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.310", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "17a5caa7-5460-4e17-b4c6-912503d4111d", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000018", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191380.328", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000b;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.308", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000b;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "8", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.310", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "6a29d2ac-988e-4dc4-a86c-a85439a739d1", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ce6ab50b-269b-4c2f-9fb8-d90ef2c7c6aa", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191380.323", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000016", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/ID730150@osvpi_route_phoneaccount-0000000b;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "b6093874285e-1530191379.305", "DestPriority": "1", "DestUniqueid": "b6093874285e-1530191379.308", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.305", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000016", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.305", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ce6ab50b-269b-4c2f-9fb8-d90ef2c7c6aa", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/202@osvpi_account-0000000c;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "202", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "12", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.317", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "b5af7c73-cd61-4d16-9a13-54879e3d4fc9", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "b5af7c73-cd61-4d16-9a13-54879e3d4fc9", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000b;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.308", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "b5af7c73-cd61-4d16-9a13-54879e3d4fc9", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000016", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.305", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "17a5caa7-5460-4e17-b4c6-912503d4111d", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000d;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "202", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "8", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191380.325", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "6a29d2ac-988e-4dc4-a86c-a85439a739d1", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/202@osvpi_account-0000000c;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.315", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "6a29d2ac-988e-4dc4-a86c-a85439a739d1", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000b;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "8", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.310", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "d9a3d7c3-4cfe-427d-b497-bcc0b2854e19", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "3e57e5a7-6684-418f-981c-db5c657c389c", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "17a5caa7-5460-4e17-b4c6-912503d4111d", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000018", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191380.328", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ce6ab50b-269b-4c2f-9fb8-d90ef2c7c6aa", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191380.323", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ce6ab50b-269b-4c2f-9fb8-d90ef2c7c6aa", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000018", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "b6093874285e-1530191380.323", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191380.328", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "17a5caa7-5460-4e17-b4c6-912503d4111d", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000d;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "202", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "8", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191380.325", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "17a5caa7-5460-4e17-b4c6-912503d4111d", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000d;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "202", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "4", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191380.325", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "202", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730151@osvpi_route_phoneaccount-0000000d;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191380.323", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ce6ab50b-269b-4c2f-9fb8-d90ef2c7c6aa", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000018", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191380.328", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "6a29d2ac-988e-4dc4-a86c-a85439a739d1", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/202@osvpi_account-0000000c;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.315", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "6a29d2ac-988e-4dc4-a86c-a85439a739d1", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000018", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "b6093874285e-1530191379.315", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191380.328", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ce6ab50b-269b-4c2f-9fb8-d90ef2c7c6aa", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/202@osvpi_account-0000000c;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "202", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "12", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.317", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "ce6ab50b-269b-4c2f-9fb8-d90ef2c7c6aa", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/202@osvpi_account-0000000c;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.315", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/202@osvpi_account-0000000c;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "4", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.317", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "6a29d2ac-988e-4dc4-a86c-a85439a739d1", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000018", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191380.328", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "b5af7c73-cd61-4d16-9a13-54879e3d4fc9", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000b;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.308", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "b5af7c73-cd61-4d16-9a13-54879e3d4fc9", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000018", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "b6093874285e-1530191379.308", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191380.328", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "6a29d2ac-988e-4dc4-a86c-a85439a739d1", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000b;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "8", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.310", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "6a29d2ac-988e-4dc4-a86c-a85439a739d1", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000b;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.308", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730150@osvpi_route_phoneaccount-0000000b;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "b6093874285e-1530191379.305", "Priority": "4", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.310", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "d9a3d7c3-4cfe-427d-b497-bcc0b2854e19", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "3e57e5a7-6684-418f-981c-db5c657c389c", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "b5af7c73-cd61-4d16-9a13-54879e3d4fc9", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000016", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.305", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "b5af7c73-cd61-4d16-9a13-54879e3d4fc9", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "202", "Channel": "SIP/150010002-00000018", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191380.328", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "b5af7c73-cd61-4d16-9a13-54879e3d4fc9", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/voipgrid-siproute-docker-00000016", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "b6093874285e-1530191379.305", "Priority": "4", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191379.305", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "202", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010002-00000018", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "b6093874285e-1530191379.305", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191380.328", "content": ""} ] diff --git a/tests/fixtures/xfer_misc/call_forwarding_multiple.json b/tests/fixtures/xfer_misc/call_forwarding_multiple.json deleted file mode 100644 index 8132428..0000000 --- a/tests/fixtures/xfer_misc/call_forwarding_multiple.json +++ /dev/null @@ -1,1040 +0,0 @@ -[ - {"Status": "Fully Booted", "Privilege": "system,all", "content": "", "Event": "FullyBooted"}, - {"ChannelState": "0", "content": "", "Event": "Newchannel", "Channel": "SIP/voipgrid-siproute-dev-00000237", "CallerIDNum": "+31625339196", "Context": "voipgrid_in", "ChannelStateDesc": "Down", "Privilege": "call,all", "Exten": "+31853030903", "Uniqueid": "ua0-acc-1509639993.1343", "CallerIDName": "", "AccountCode": ""}, - {"Value": "sip:198750006@195.35.115.106:5060", "Variable": "SIPURI", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "195.35.115.202", "Variable": "SIPDOMAIN", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "~{}~7a74ef9244ae387a35d894f22ebc07ac@voipgrid.nl", "Variable": "SIPCALLID", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"ChannelStateDesc": "Ring", "ConnectedLineNum": "", "Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "Newstate", "Channel": "SIP/voipgrid-siproute-dev-00000237", "CallerIDName": "", "ChannelState": "4", "CallerIDNum": "+31625339196", "ConnectedLineName": ""}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "NoOp", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "ENTRY POINT username=upstream,num=+31625339196,name=,callerpres=allowed_not_screened", "Event": "Newexten", "Context": "voipgrid_in"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Set", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "l_tmp=", "Event": "Newexten", "Context": "voipgrid_in"}, - {"Value": "", "Variable": "l_tmp", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Set", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "l_tmp=", "Event": "Newexten", "Context": "voipgrid_in"}, - {"Value": "", "Variable": "l_tmp", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "4", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Set", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "l_tmp=", "Event": "Newexten", "Context": "voipgrid_in"}, - {"Value": "", "Variable": "l_tmp", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "5", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Set", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "CALLERID(name)=", "Event": "Newexten", "Context": "voipgrid_in"}, - {"Privilege": "dialplan,all", "Priority": "6", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Gosub", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "osvpi_proc_check_forwards,s,1", "Event": "Newexten", "Context": "voipgrid_in"}, - {"Value": "0", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "GotoIf", "Extension": "s", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "0?check,1", "Event": "Newexten", "Context": "osvpi_proc_check_forwards"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Set", "Extension": "s", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "LOCAL(tmp)=70", "Event": "Newexten", "Context": "osvpi_proc_check_forwards"}, - {"Value": "70", "Variable": "LOCAL(tmp)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "ExecIf", "Extension": "s", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "0?Goto(init,1)", "Event": "Newexten", "Context": "osvpi_proc_check_forwards"}, - {"Privilege": "dialplan,all", "Priority": "4", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "ExecIf", "Extension": "s", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "1?Goto(init,1)", "Event": "Newexten", "Context": "osvpi_proc_check_forwards"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Set", "Extension": "init", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "MASTER_CHANNEL(SIP_MAX_FORWARDS)=16", "Event": "Newexten", "Context": "osvpi_proc_check_forwards"}, - {"Value": "16", "Variable": "SIP_MAX_FORWARDS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "NoOp", "Extension": "init", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "DEBUG: MaxForwards: initialized to: 16", "Event": "Newexten", "Context": "osvpi_proc_check_forwards"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Return", "Extension": "init", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "", "Event": "Newexten", "Context": "osvpi_proc_check_forwards"}, - {"Value": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "7", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Set", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "__supports_progress=1", "Event": "Newexten", "Context": "voipgrid_in"}, - {"Value": "1", "Variable": "__supports_progress", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "8", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Set", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "__hide_ext_cliname=0", "Event": "Newexten", "Context": "voipgrid_in"}, - {"Value": "0", "Variable": "__hide_ext_cliname", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "9", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Set", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "CALLERID(pres)=allowed_passed_screen", "Event": "Newexten", "Context": "voipgrid_in"}, - {"Privilege": "dialplan,all", "Priority": "10", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Goto", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "osvpi_world,+31853030903,1", "Event": "Newexten", "Context": "voipgrid_in"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "ExecIf", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "0?GotoIf(0?osvpi_proc_hangup_insecure,+31853030903,1)", "Event": "Newexten", "Context": "osvpi_world"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Set", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "CDR(amaflags)=BILLING", "Event": "Newexten", "Context": "osvpi_world"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Gosub", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "osvpi_proc_set_callerid_internal,+31853030903,1", "Event": "Newexten", "Context": "osvpi_world"}, - {"Value": "0", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "GotoIf", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "1?nop", "Event": "Newexten", "Context": "osvpi_proc_set_callerid_internal"}, - {"Privilege": "dialplan,all", "Priority": "5", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "ExecIf", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "0?Set(CALLERID(ANI)=+3162533919)", "Event": "Newexten", "Context": "osvpi_proc_set_callerid_internal"}, - {"Privilege": "dialplan,all", "Priority": "6", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Return", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "", "Event": "Newexten", "Context": "osvpi_proc_set_callerid_internal"}, - {"Value": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "4", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "GotoIf", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "11?:osvpi_handle_invalid,+31853030903,1", "Event": "Newexten", "Context": "osvpi_world"}, - {"Value": "1", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "SUCCESS", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "client_id,route_id,intprefix,lookup_callerid,client_timezone", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "5", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Set", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "ARRAY(client_id,route_id,__intprefix,l_lookup_callerid,client_timezone)=12668,550301,31,1,Europe/Amsterdam", "Event": "Newexten", "Context": "osvpi_world"}, - {"Value": "12668", "Variable": "client_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "550301", "Variable": "route_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "31", "Variable": "__intprefix", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "1", "Variable": "l_lookup_callerid", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "Europe/Amsterdam", "Variable": "client_timezone", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "6", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Gosub", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "osvpi_proc_set_i18n_region,31,1", "Event": "Newexten", "Context": "osvpi_world"}, - {"Value": "0", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Set", "Extension": "31", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "i18n_region=NL", "Event": "Newexten", "Context": "osvpi_proc_set_i18n_region"}, - {"Value": "NL", "Variable": "i18n_region", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Return", "Extension": "31", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "", "Event": "Newexten", "Context": "osvpi_proc_set_i18n_region"}, - {"Value": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "7", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Gosub", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "osvpi_proc_check_perms_inbound,+31853030903,1", "Event": "Newexten", "Context": "osvpi_world"}, - {"Value": "0", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "1", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "SUCCESS", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "IFNULL((SELECT cb.reason FROM relation_callblock cb LEFT JOIN relation_relation r ON cb.relation_id = r.id WHERE r.code = '12668' ORDER BY cb.created\\, cb.id ASC LIMIT 1)\\, '')", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "ExecIf", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "1?Return()", "Event": "Newexten", "Context": "osvpi_proc_check_perms_inbound"}, - {"Value": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "8", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "GotoIf", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "0?osvpi_handle_unallocated,+31853030903,1", "Event": "Newexten", "Context": "osvpi_world"}, - {"Privilege": "dialplan,all", "Priority": "9", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Set", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "__client_id=12668", "Event": "Newexten", "Context": "osvpi_world"}, - {"Value": "12668", "Variable": "__client_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "10", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Set", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "CDR(accountcode)=12668", "Event": "Newexten", "Context": "osvpi_world"}, - {"Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "NewAccountCode", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AccountCode": "12668"}, - {"Privilege": "dialplan,all", "Priority": "11", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Gosub", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "osvpi_proc_callerid_lookup,+31853030903,1(1)", "Event": "Newexten", "Context": "osvpi_world"}, - {"Value": "1", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "1", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "ExecIf", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "0?Return()", "Event": "Newexten", "Context": "osvpi_proc_callerid_lookup"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Ringing", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "", "Event": "Newexten", "Context": "osvpi_proc_callerid_lookup"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Set", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "CURLOPT(hashcompat)=legacy", "Event": "Newexten", "Context": "osvpi_proc_callerid_lookup"}, - {"Privilege": "dialplan,all", "Priority": "4", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Set", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "CURLOPT(dnstimeout)=1", "Event": "Newexten", "Context": "osvpi_proc_callerid_lookup"}, - {"Privilege": "dialplan,all", "Priority": "5", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Set", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "CURLOPT(conntimeout)=1", "Event": "Newexten", "Context": "osvpi_proc_callerid_lookup"}, - {"Privilege": "dialplan,all", "Priority": "6", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Set", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "CURLOPT(httptimeout)=1", "Event": "Newexten", "Context": "osvpi_proc_callerid_lookup"}, - {"Privilege": "dialplan,all", "Priority": "7", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Set", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "CURLOPT(maxredirs)=1", "Event": "Newexten", "Context": "osvpi_proc_callerid_lookup"}, - {"Value": "", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "8", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Set", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "HASH(lookup_callername)=\"white\">", "Event": "Newexten", "Context": "osvpi_proc_callerid_lookup"}, - {"Value": "white>", "Variable": "~HASH~lookup_callername~", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "9", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "ExecIf", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "1?Return()", "Event": "Newexten", "Context": "osvpi_proc_callerid_lookup"}, - {"Value": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "12", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "GotoIf", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "0?done", "Event": "Newexten", "Context": "osvpi_world"}, - {"Privilege": "dialplan,all", "Priority": "13", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Set", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "l_tmpkey=vg:clistm:12668:+31625339196", "Event": "Newexten", "Context": "osvpi_world"}, - {"Value": "vg:clistm:12668:+31625339196", "Variable": "l_tmpkey", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "14", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Set", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "l_tmp=OK\n", "Event": "Newexten", "Context": "osvpi_world"}, - {"Value": "OK\n", "Variable": "l_tmp", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "15", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Goto", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "osvpi_route_root,+31853030903,1", "Event": "Newexten", "Context": "osvpi_world"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Gosub", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "osvpi_proc_check_recurse,+31853030903,1(12668)", "Event": "Newexten", "Context": "osvpi_route_root"}, - {"Value": "12668", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "1", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Set", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "LOCAL(exten)=12668:+31853030903", "Event": "Newexten", "Context": "osvpi_proc_check_recurse"}, - {"Value": "12668:+31853030903", "Variable": "LOCAL(exten)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "NoOp", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "Recursion checking 12668:+31853030903 against ", "Event": "Newexten", "Context": "osvpi_proc_check_recurse"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Set", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "LOCAL(n)=0", "Event": "Newexten", "Context": "osvpi_proc_check_recurse"}, - {"Value": "0", "Variable": "LOCAL(n)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "4", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Set", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "LOCAL(i)=1", "Event": "Newexten", "Context": "osvpi_proc_check_recurse"}, - {"Value": "1", "Variable": "LOCAL(i)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "5", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "GotoIf", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "1?add", "Event": "Newexten", "Context": "osvpi_proc_check_recurse"}, - {"Privilege": "dialplan,all", "Priority": "9", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Set", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "__EXTEN_LIST=12668:+31853030903 ", "Event": "Newexten", "Context": "osvpi_proc_check_recurse"}, - {"Value": "12668:+31853030903 ", "Variable": "__EXTEN_LIST", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "10", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Set", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "__EXTEN_LIST_LAST_EDIT_TIME=1509639993", "Event": "Newexten", "Context": "osvpi_proc_check_recurse"}, - {"Value": "1509639993", "Variable": "__EXTEN_LIST_LAST_EDIT_TIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "11", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Return", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "", "Event": "Newexten", "Context": "osvpi_proc_check_recurse"}, - {"Value": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Set", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "__ORIG_EXTEN=+31853030903", "Event": "Newexten", "Context": "osvpi_route_root"}, - {"Value": "+31853030903", "Variable": "__ORIG_EXTEN", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "ExecIf", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "1?Set(__ORIG_EXTEN_FQ=+31853030903)", "Event": "Newexten", "Context": "osvpi_route_root"}, - {"Value": "+31853030903", "Variable": "__ORIG_EXTEN_FQ", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "4", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Set", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "route_loop=1", "Event": "Newexten", "Context": "osvpi_route_root"}, - {"Value": "1", "Variable": "route_loop", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "5", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Set", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "route_step=1", "Event": "Newexten", "Context": "osvpi_route_root"}, - {"Value": "1", "Variable": "route_step", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "6", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Set", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "route_parentstep_id=", "Event": "Newexten", "Context": "osvpi_route_root"}, - {"Value": "", "Variable": "route_parentstep_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "1", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "SUCCESS", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "step_id,module,ringtime,blocked", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "7", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Set", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "ARRAY(l_route_step_id,l_route_module,ring_time,blocked)=551011,callgroup,20,0", "Event": "Newexten", "Context": "osvpi_route_root"}, - {"Value": "551011", "Variable": "l_route_step_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "callgroup", "Variable": "l_route_module", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "20", "Variable": "ring_time", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "0", "Variable": "blocked", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "8", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "GotoIf", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "0?done", "Event": "Newexten", "Context": "osvpi_route_root"}, - {"Privilege": "dialplan,all", "Priority": "9", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "GotoIf", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "0?skipblocked", "Event": "Newexten", "Context": "osvpi_route_root"}, - {"Privilege": "dialplan,all", "Priority": "10", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Gosub", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "osvpi_route_callgroup_step,ID551011,1", "Event": "Newexten", "Context": "osvpi_route_root"}, - {"Value": "0", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "1", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "SUCCESS", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "interfaces,ring_method,ignore_call_forwarding,dialnotifications_id,call_acceptance_type,language,custom_message_callaccept,custom_message_toolate", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Set", "Extension": "ID551011", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "ARRAY(LOCAL(interfaces),LOCAL(ring_method),LOCAL(ignore_call_forwarding),LOCAL(dialnotifications_id),LOCAL(call_acceptance_type),LOCAL(language),LOCAL(custom_message_callaccept),LOCAL(custom_message_toolate))=Local/ID730651@osvpi_route_phoneaccount&Local/ID730661@osvpi_route_phoneaccount,all,0,,none,vg_nl_NL_F,,", "Event": "Newexten", "Context": "osvpi_route_callgroup_step"}, - {"Value": "Local/ID730651@osvpi_route_phoneaccount&Local/ID730661@osvpi_route_phoneaccount", "Variable": "LOCAL(interfaces)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "all", "Variable": "LOCAL(ring_method)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "0", "Variable": "LOCAL(ignore_call_forwarding)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "", "Variable": "LOCAL(dialnotifications_id)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "none", "Variable": "LOCAL(call_acceptance_type)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "vg_nl_NL_F", "Variable": "LOCAL(language)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "", "Variable": "LOCAL(custom_message_callaccept)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "", "Variable": "LOCAL(custom_message_toolate)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "ExecIf", "Extension": "ID551011", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "0?Return()", "Event": "Newexten", "Context": "osvpi_route_callgroup_step"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Set", "Extension": "ID551011", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "LOCAL(dial_options_local_orig)=", "Event": "Newexten", "Context": "osvpi_route_callgroup_step"}, - {"Value": "", "Variable": "LOCAL(dial_options_local_orig)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "4", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Set", "Extension": "ID551011", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "_dial_options_local=", "Event": "Newexten", "Context": "osvpi_route_callgroup_step"}, - {"Value": "", "Variable": "_dial_options_local", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "5", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "GotoIf", "Extension": "ID551011", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "1?dialnotifications", "Event": "Newexten", "Context": "osvpi_route_callgroup_step"}, - {"Privilege": "dialplan,all", "Priority": "9", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "GotoIf", "Extension": "ID551011", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "1?skipdialnotifications", "Event": "Newexten", "Context": "osvpi_route_callgroup_step"}, - {"Privilege": "dialplan,all", "Priority": "13", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Goto", "Extension": "ID551011", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "+31853030903,1", "Event": "Newexten", "Context": "osvpi_route_callgroup_step"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "GotoIf", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "0?random", "Event": "Newexten", "Context": "osvpi_route_callgroup_step"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "Dial", "Extension": "+31853030903", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "Local/ID730651@osvpi_route_phoneaccount&Local/ID730661@osvpi_route_phoneaccount,20", "Event": "Newexten", "Context": "osvpi_route_callgroup_step"}, - {"Value": "", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"ChannelState": "0", "content": "", "Event": "Newchannel", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;1", "CallerIDNum": "", "Context": "osvpi_route_phoneaccount", "ChannelStateDesc": "Down", "Privilege": "call,all", "Exten": "ID730651", "Uniqueid": "ua0-acc-1509639993.1344", "CallerIDName": "", "AccountCode": ""}, - {"ChannelState": "4", "content": "", "Event": "Newchannel", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "CallerIDNum": "", "Context": "osvpi_route_phoneaccount", "ChannelStateDesc": "Ring", "Privilege": "call,all", "Exten": "ID730651", "Uniqueid": "ua0-acc-1509639993.1345", "CallerIDName": "", "AccountCode": ""}, - {"Value": "ID730651@osvpi_route_phoneaccount", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1344", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;1"}, - {"Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Uniqueid": "ua0-acc-1509639993.1344", "Event": "NewCallerid", "content": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;1", "CallerIDName": "", "CallerIDNum": "+31853030903"}, - {"ChannelState": "0", "content": "", "Event": "Newchannel", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;1", "CallerIDNum": "", "Context": "osvpi_route_phoneaccount", "ChannelStateDesc": "Down", "Privilege": "call,all", "Exten": "ID730661", "Uniqueid": "ua0-acc-1509639993.1346", "CallerIDName": "", "AccountCode": ""}, - {"ChannelState": "4", "content": "", "Event": "Newchannel", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2", "CallerIDNum": "", "Context": "osvpi_route_phoneaccount", "ChannelStateDesc": "Ring", "Privilege": "call,all", "Exten": "ID730661", "Uniqueid": "ua0-acc-1509639993.1347", "CallerIDName": "", "AccountCode": ""}, - {"Value": "ID730661@osvpi_route_phoneaccount", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1346", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;1"}, - {"Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Uniqueid": "ua0-acc-1509639993.1346", "Event": "NewCallerid", "content": "", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;1", "CallerIDName": "", "CallerIDNum": "+31853030903"}, - {"LocalOptimization": "Yes", "Privilege": "call,all", "content": "", "Uniqueid2": "ua0-acc-1509639993.1345", "Event": "LocalBridge", "Exten": "ID730651", "Channel1": "Local/ID730651@osvpi_route_phoneaccount-00000184;1", "Uniqueid1": "ua0-acc-1509639993.1344", "Channel2": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "Context": "osvpi_route_phoneaccount"}, - {"content": "", "Dialstring": "ID730651@osvpi_route_phoneaccount", "Event": "Dial", "Destination": "Local/ID730651@osvpi_route_phoneaccount-00000184;1", "Channel": "SIP/voipgrid-siproute-dev-00000237", "CallerIDNum": "+31625339196", "DestUniqueID": "ua0-acc-1509639993.1344", "ConnectedLineName": "", "ConnectedLineNum": "", "Privilege": "call,all", "SubEvent": "Begin", "CallerIDName": "", "UniqueID": "ua0-acc-1509639993.1343"}, - {"LocalOptimization": "Yes", "Privilege": "call,all", "content": "", "Uniqueid2": "ua0-acc-1509639993.1347", "Event": "LocalBridge", "Exten": "ID730661", "Channel1": "Local/ID730661@osvpi_route_phoneaccount-00000185;1", "Uniqueid1": "ua0-acc-1509639993.1346", "Channel2": "Local/ID730661@osvpi_route_phoneaccount-00000185;2", "Context": "osvpi_route_phoneaccount"}, - {"content": "", "Dialstring": "ID730661@osvpi_route_phoneaccount", "Event": "Dial", "Destination": "Local/ID730661@osvpi_route_phoneaccount-00000185;1", "Channel": "SIP/voipgrid-siproute-dev-00000237", "CallerIDNum": "+31625339196", "DestUniqueID": "ua0-acc-1509639993.1346", "ConnectedLineName": "", "ConnectedLineNum": "", "Privilege": "call,all", "SubEvent": "Begin", "CallerIDName": "", "UniqueID": "ua0-acc-1509639993.1343"}, - {"Value": "1", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Value": "SUCCESS", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1347", "Application": "Set", "Extension": "ID730661", "content": "", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2", "AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=126680010,accountid,dutch,from,,0", "Event": "Newexten", "Context": "osvpi_route_phoneaccount"}, - {"Value": "126680010", "Variable": "__dst_account_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Value": "accountid", "Variable": "l_mangle_did", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Value": "dutch", "Variable": "l_mangle_cli", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Value": "from", "Variable": "l_cli_header", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Value": "", "Variable": "l_primary_pickupgroup", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Value": "0", "Variable": "app_account", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1347", "Application": "GotoIf", "Extension": "ID730661", "content": "", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2", "AppData": "0?vialer", "Event": "Newexten", "Context": "osvpi_route_phoneaccount"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1347", "Application": "Set", "Extension": "ID730661", "content": "", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2", "AppData": "_PICKUPMARK=", "Event": "Newexten", "Context": "osvpi_route_phoneaccount"}, - {"Value": "", "Variable": "_PICKUPMARK", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Privilege": "dialplan,all", "Priority": "4", "Uniqueid": "ua0-acc-1509639993.1347", "Application": "Set", "Extension": "ID730661", "content": "", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2", "AppData": "l_trunk=0", "Event": "Newexten", "Context": "osvpi_route_phoneaccount"}, - {"Value": "0", "Variable": "l_trunk", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Privilege": "dialplan,all", "Priority": "5", "Uniqueid": "ua0-acc-1509639993.1347", "Application": "Goto", "Extension": "ID730661", "content": "", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2", "AppData": "osvpi_route_account,ID730661,1", "Event": "Newexten", "Context": "osvpi_route_phoneaccount"}, - {"Value": "1", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Value": "SUCCESS", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1345", "Application": "Set", "Extension": "ID730651", "content": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=126680005,accountid,dutch,from,,0", "Event": "Newexten", "Context": "osvpi_route_phoneaccount"}, - {"Value": "126680005", "Variable": "__dst_account_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Value": "accountid", "Variable": "l_mangle_did", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Value": "dutch", "Variable": "l_mangle_cli", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Value": "from", "Variable": "l_cli_header", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Value": "", "Variable": "l_primary_pickupgroup", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Value": "0", "Variable": "app_account", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1345", "Application": "GotoIf", "Extension": "ID730651", "content": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "AppData": "0?vialer", "Event": "Newexten", "Context": "osvpi_route_phoneaccount"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1345", "Application": "Set", "Extension": "ID730651", "content": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "AppData": "_PICKUPMARK=", "Event": "Newexten", "Context": "osvpi_route_phoneaccount"}, - {"Value": "", "Variable": "_PICKUPMARK", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Privilege": "dialplan,all", "Priority": "4", "Uniqueid": "ua0-acc-1509639993.1345", "Application": "Set", "Extension": "ID730651", "content": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "AppData": "l_trunk=0", "Event": "Newexten", "Context": "osvpi_route_phoneaccount"}, - {"Value": "0", "Variable": "l_trunk", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Privilege": "dialplan,all", "Priority": "5", "Uniqueid": "ua0-acc-1509639993.1345", "Application": "Goto", "Extension": "ID730651", "content": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "AppData": "osvpi_route_account,ID730651,1", "Event": "Newexten", "Context": "osvpi_route_phoneaccount"}, - {"Value": "1", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Value": "SUCCESS", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Value": "proxy", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1347", "Application": "Set", "Extension": "ID730661", "content": "", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2", "AppData": "ARRAY(l_proxy)=195.35.115.203", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Value": "195.35.115.203", "Variable": "l_proxy", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1347", "Application": "Gosub", "Extension": "ID730661", "content": "", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2", "AppData": "osvpi_proc_mangle_number,accountid,1(126680010,+31853030903)", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Value": "126680010", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Value": "+31853030903", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Value": "2", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1347", "Application": "Set", "Extension": "accountid", "content": "", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2", "AppData": "MANGLED_EXTEN=126680010", "Event": "Newexten", "Context": "osvpi_proc_mangle_number"}, - {"Value": "126680010", "Variable": "MANGLED_EXTEN", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1347", "Application": "Return", "Extension": "accountid", "content": "", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2", "AppData": "", "Event": "Newexten", "Context": "osvpi_proc_mangle_number"}, - {"Value": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1347", "Application": "Set", "Extension": "ID730661", "content": "", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2", "AppData": "l_did=126680010", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Value": "126680010", "Variable": "l_did", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Privilege": "dialplan,all", "Priority": "4", "Uniqueid": "ua0-acc-1509639993.1347", "Application": "Gosub", "Extension": "ID730661", "content": "", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2", "AppData": "osvpi_proc_mangle_number,dutch,1(126680010,+31625339196)", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Value": "126680010", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Value": "+31625339196", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Value": "2", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1347", "Application": "GotoIf", "Extension": "dutch", "content": "", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2", "AppData": "0?fullzero,1", "Event": "Newexten", "Context": "osvpi_proc_mangle_number"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1347", "Application": "Set", "Extension": "dutch", "content": "", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2", "AppData": "MANGLED_EXTEN=0625339196", "Event": "Newexten", "Context": "osvpi_proc_mangle_number"}, - {"Value": "0625339196", "Variable": "MANGLED_EXTEN", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1347", "Application": "Return", "Extension": "dutch", "content": "", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2", "AppData": "", "Event": "Newexten", "Context": "osvpi_proc_mangle_number"}, - {"Value": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Privilege": "dialplan,all", "Priority": "5", "Uniqueid": "ua0-acc-1509639993.1347", "Application": "Set", "Extension": "ID730661", "content": "", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2", "AppData": "l_mangle_cli_hdr=from-dutch", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Value": "from-dutch", "Variable": "l_mangle_cli_hdr", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Privilege": "dialplan,all", "Priority": "6", "Uniqueid": "ua0-acc-1509639993.1347", "Application": "Set", "Extension": "ID730661", "content": "", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2", "AppData": "l_fromuser=", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Value": "", "Variable": "l_fromuser", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Privilege": "dialplan,all", "Priority": "7", "Uniqueid": "ua0-acc-1509639993.1347", "Application": "ExecIf", "Extension": "ID730661", "content": "", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2", "AppData": "1?Set(l_fromuser=0625339196)", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Value": "0625339196", "Variable": "l_fromuser", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Value": "1", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Value": "SUCCESS", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Value": "proxy", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1345", "Application": "Set", "Extension": "ID730651", "content": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "AppData": "ARRAY(l_proxy)=195.35.115.203", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Value": "195.35.115.203", "Variable": "l_proxy", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1345", "Application": "Gosub", "Extension": "ID730651", "content": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "AppData": "osvpi_proc_mangle_number,accountid,1(126680005,+31853030903)", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Value": "126680005", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Value": "+31853030903", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Value": "2", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1345", "Application": "Set", "Extension": "accountid", "content": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "AppData": "MANGLED_EXTEN=126680005", "Event": "Newexten", "Context": "osvpi_proc_mangle_number"}, - {"Value": "126680005", "Variable": "MANGLED_EXTEN", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1345", "Application": "Return", "Extension": "accountid", "content": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "AppData": "", "Event": "Newexten", "Context": "osvpi_proc_mangle_number"}, - {"Value": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1345", "Application": "Set", "Extension": "ID730651", "content": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "AppData": "l_did=126680005", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Value": "126680005", "Variable": "l_did", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Privilege": "dialplan,all", "Priority": "4", "Uniqueid": "ua0-acc-1509639993.1345", "Application": "Gosub", "Extension": "ID730651", "content": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "AppData": "osvpi_proc_mangle_number,dutch,1(126680005,+31625339196)", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Value": "126680005", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Value": "+31625339196", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Value": "2", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1345", "Application": "GotoIf", "Extension": "dutch", "content": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "AppData": "0?fullzero,1", "Event": "Newexten", "Context": "osvpi_proc_mangle_number"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1345", "Application": "Set", "Extension": "dutch", "content": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "AppData": "MANGLED_EXTEN=0625339196", "Event": "Newexten", "Context": "osvpi_proc_mangle_number"}, - {"Value": "0625339196", "Variable": "MANGLED_EXTEN", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1345", "Application": "Return", "Extension": "dutch", "content": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "AppData": "", "Event": "Newexten", "Context": "osvpi_proc_mangle_number"}, - {"Value": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Privilege": "dialplan,all", "Priority": "5", "Uniqueid": "ua0-acc-1509639993.1345", "Application": "Set", "Extension": "ID730651", "content": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "AppData": "l_mangle_cli_hdr=from-dutch", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Value": "from-dutch", "Variable": "l_mangle_cli_hdr", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Privilege": "dialplan,all", "Priority": "6", "Uniqueid": "ua0-acc-1509639993.1345", "Application": "Set", "Extension": "ID730651", "content": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "AppData": "l_fromuser=", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Value": "", "Variable": "l_fromuser", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Privilege": "dialplan,all", "Priority": "7", "Uniqueid": "ua0-acc-1509639993.1345", "Application": "ExecIf", "Extension": "ID730651", "content": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "AppData": "1?Set(l_fromuser=0625339196)", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Value": "0625339196", "Variable": "l_fromuser", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Value": "1", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Value": "SUCCESS", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Value": "IF((SELECT 1 FROM baseaccount_account ba INNER JOIN userdestination_selecteduserdestination udsud ON udsud.phoneaccount_id = ba.id INNER JOIN userdestination_userdestination udud ON udud.id = udsud.userdestination_id INNER JOIN crm_cloudctiuser cccu O", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Privilege": "dialplan,all", "Priority": "8", "Uniqueid": "ua0-acc-1509639993.1347", "Application": "Set", "Extension": "ID730661", "content": "", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2", "AppData": "ARRAY(cloudcti)=0", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Value": "0", "Variable": "cloudcti", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Privilege": "dialplan,all", "Priority": "9", "Uniqueid": "ua0-acc-1509639993.1347", "Application": "GotoIf", "Extension": "ID730661", "content": "", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2", "AppData": "1?skipcloudcti", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Value": "1", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Value": "SUCCESS", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Value": "IF((SELECT 1 FROM baseaccount_account ba INNER JOIN userdestination_selecteduserdestination udsud ON udsud.phoneaccount_id = ba.id INNER JOIN userdestination_userdestination udud ON udud.id = udsud.userdestination_id INNER JOIN crm_cloudctiuser cccu O", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Privilege": "dialplan,all", "Priority": "8", "Uniqueid": "ua0-acc-1509639993.1345", "Application": "Set", "Extension": "ID730651", "content": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "AppData": "ARRAY(cloudcti)=0", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Value": "0", "Variable": "cloudcti", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Privilege": "dialplan,all", "Priority": "9", "Uniqueid": "ua0-acc-1509639993.1345", "Application": "GotoIf", "Extension": "ID730651", "content": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "AppData": "1?skipcloudcti", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Value": "1", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Value": "SUCCESS", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Value": "GROUP_CONCAT(DISTINCT(cn.url) SEPARATOR ' '),internal_number,GROUP_CONCAT(DISTINCT(ud.internal_number) SEPARATOR ' ')", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Privilege": "dialplan,all", "Priority": "11", "Uniqueid": "ua0-acc-1509639993.1347", "Application": "Set", "Extension": "ID730661", "content": "", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2", "AppData": "ARRAY(webhooks,accountinternalnumber,userinternalnumbers)=,218,", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Value": "", "Variable": "webhooks", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Value": "218", "Variable": "accountinternalnumber", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Value": "", "Variable": "userinternalnumbers", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Privilege": "dialplan,all", "Priority": "13", "Uniqueid": "ua0-acc-1509639993.1347", "Application": "Goto", "Extension": "ID730661", "content": "", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2", "AppData": "osvpi_proc_proxy_out,+31853030903,1", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1347", "Application": "SIPAddHeader", "Extension": "+31853030903", "content": "", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2", "AppData": "X-Accountcode: 126680010", "Event": "Newexten", "Context": "osvpi_proc_proxy_out"}, - {"Value": "X-Accountcode: 126680010", "Variable": "__SIPADDHEADER01", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1347", "Application": "SIPAddHeader", "Extension": "+31853030903", "content": "", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2", "AppData": "X-Insecure-Protection: geheim", "Event": "Newexten", "Context": "osvpi_proc_proxy_out"}, - {"Value": "X-Insecure-Protection: geheim", "Variable": "__SIPADDHEADER02", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1347", "Application": "SIPAddHeader", "Extension": "+31853030903", "content": "", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2", "AppData": "X-Mangle-Cli: from-dutch", "Event": "Newexten", "Context": "osvpi_proc_proxy_out"}, - {"Value": "X-Mangle-Cli: from-dutch", "Variable": "__SIPADDHEADER03", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Privilege": "dialplan,all", "Priority": "4", "Uniqueid": "ua0-acc-1509639993.1347", "Application": "Set", "Extension": "+31853030903", "content": "", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2", "AppData": "_dial_options_callaccept=", "Event": "Newexten", "Context": "osvpi_proc_proxy_out"}, - {"Value": "", "Variable": "_dial_options_callaccept", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Privilege": "dialplan,all", "Priority": "5", "Uniqueid": "ua0-acc-1509639993.1347", "Application": "Set", "Extension": "+31853030903", "content": "", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2", "AppData": "_dial_options_callnotify=", "Event": "Newexten", "Context": "osvpi_proc_proxy_out"}, - {"Value": "", "Variable": "_dial_options_callnotify", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Privilege": "dialplan,all", "Priority": "6", "Uniqueid": "ua0-acc-1509639993.1347", "Application": "ExecIf", "Extension": "+31853030903", "content": "", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2", "AppData": "0?Set(l_proxy=195.35.115.203)", "Event": "Newexten", "Context": "osvpi_proc_proxy_out"}, - {"Privilege": "dialplan,all", "Priority": "7", "Uniqueid": "ua0-acc-1509639993.1347", "Application": "Set", "Extension": "+31853030903", "content": "", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2", "AppData": "l_extra_options=", "Event": "Newexten", "Context": "osvpi_proc_proxy_out"}, - {"Value": "", "Variable": "l_extra_options", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Privilege": "dialplan,all", "Priority": "8", "Uniqueid": "ua0-acc-1509639993.1347", "Application": "Dial", "Extension": "+31853030903", "content": "", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2", "AppData": "SIP/126680010/126680010/195.35.115.203!!0625339196,,", "Event": "Newexten", "Context": "osvpi_proc_proxy_out"}, - {"Value": "", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Value": "", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Value": "", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Value": "", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Value": "", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Value": "1", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Value": "SUCCESS", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Value": "GROUP_CONCAT(DISTINCT(cn.url) SEPARATOR ' '),internal_number,GROUP_CONCAT(DISTINCT(ud.internal_number) SEPARATOR ' ')", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Privilege": "dialplan,all", "Priority": "11", "Uniqueid": "ua0-acc-1509639993.1345", "Application": "Set", "Extension": "ID730651", "content": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "AppData": "ARRAY(webhooks,accountinternalnumber,userinternalnumbers)=,217,", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Value": "", "Variable": "webhooks", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Value": "217", "Variable": "accountinternalnumber", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Value": "", "Variable": "userinternalnumbers", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Privilege": "dialplan,all", "Priority": "13", "Uniqueid": "ua0-acc-1509639993.1345", "Application": "Goto", "Extension": "ID730651", "content": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "AppData": "osvpi_proc_proxy_out,+31853030903,1", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1345", "Application": "SIPAddHeader", "Extension": "+31853030903", "content": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "AppData": "X-Accountcode: 126680005", "Event": "Newexten", "Context": "osvpi_proc_proxy_out"}, - {"Value": "X-Accountcode: 126680005", "Variable": "__SIPADDHEADER01", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1345", "Application": "SIPAddHeader", "Extension": "+31853030903", "content": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "AppData": "X-Insecure-Protection: geheim", "Event": "Newexten", "Context": "osvpi_proc_proxy_out"}, - {"Value": "X-Insecure-Protection: geheim", "Variable": "__SIPADDHEADER02", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1345", "Application": "SIPAddHeader", "Extension": "+31853030903", "content": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "AppData": "X-Mangle-Cli: from-dutch", "Event": "Newexten", "Context": "osvpi_proc_proxy_out"}, - {"Value": "X-Mangle-Cli: from-dutch", "Variable": "__SIPADDHEADER03", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Privilege": "dialplan,all", "Priority": "4", "Uniqueid": "ua0-acc-1509639993.1345", "Application": "Set", "Extension": "+31853030903", "content": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "AppData": "_dial_options_callaccept=", "Event": "Newexten", "Context": "osvpi_proc_proxy_out"}, - {"Value": "", "Variable": "_dial_options_callaccept", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Privilege": "dialplan,all", "Priority": "5", "Uniqueid": "ua0-acc-1509639993.1345", "Application": "Set", "Extension": "+31853030903", "content": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "AppData": "_dial_options_callnotify=", "Event": "Newexten", "Context": "osvpi_proc_proxy_out"}, - {"Value": "", "Variable": "_dial_options_callnotify", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Privilege": "dialplan,all", "Priority": "6", "Uniqueid": "ua0-acc-1509639993.1345", "Application": "ExecIf", "Extension": "+31853030903", "content": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "AppData": "0?Set(l_proxy=195.35.115.203)", "Event": "Newexten", "Context": "osvpi_proc_proxy_out"}, - {"Privilege": "dialplan,all", "Priority": "7", "Uniqueid": "ua0-acc-1509639993.1345", "Application": "Set", "Extension": "+31853030903", "content": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "AppData": "l_extra_options=", "Event": "Newexten", "Context": "osvpi_proc_proxy_out"}, - {"Value": "", "Variable": "l_extra_options", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Privilege": "dialplan,all", "Priority": "8", "Uniqueid": "ua0-acc-1509639993.1345", "Application": "Dial", "Extension": "+31853030903", "content": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "AppData": "SIP/126680005/126680005/195.35.115.203!!0625339196,,", "Event": "Newexten", "Context": "osvpi_proc_proxy_out"}, - {"Value": "", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Value": "", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Value": "", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Value": "", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Value": "", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"ChannelState": "0", "content": "", "Event": "Newchannel", "Channel": "SIP/126680010-00000238", "CallerIDNum": "", "Context": "osvpi_account", "ChannelStateDesc": "Down", "Privilege": "call,all", "Exten": "", "Uniqueid": "ua0-acc-1509639993.1348", "CallerIDName": "", "AccountCode": "126680010"}, - {"Value": "560529ea541466a0229636b83ba4b743@acceptatie.voipgrid.nl", "Variable": "SIPCALLID", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1348", "Event": "VarSet", "Channel": "SIP/126680010-00000238"}, - {"Value": "12668", "Variable": "__client_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1348", "Event": "VarSet", "Channel": "SIP/126680010-00000238"}, - {"Value": "126680010", "Variable": "__account_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1348", "Event": "VarSet", "Channel": "SIP/126680010-00000238"}, - {"Value": "no", "Variable": "__record_call", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1348", "Event": "VarSet", "Channel": "SIP/126680010-00000238"}, - {"Value": "31", "Variable": "__intprefix", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1348", "Event": "VarSet", "Channel": "SIP/126680010-00000238"}, - {"Value": "4", "Variable": "__limit_account", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1348", "Event": "VarSet", "Channel": "SIP/126680010-00000238"}, - {"Value": "0", "Variable": "__limit_client", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1348", "Event": "VarSet", "Channel": "SIP/126680010-00000238"}, - {"Value": "1", "Variable": "__hide_ext_cliname", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1348", "Event": "VarSet", "Channel": "SIP/126680010-00000238"}, - {"Value": "osvpi_account_transfer", "Variable": "__TRANSFER_CONTEXT", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1348", "Event": "VarSet", "Channel": "SIP/126680010-00000238"}, - {"Value": "126680010/126680010/195.35.115.203!!0625339196", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1348", "Event": "VarSet", "Channel": "SIP/126680010-00000238"}, - {"Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Uniqueid": "ua0-acc-1509639993.1348", "Event": "NewCallerid", "content": "", "Channel": "SIP/126680010-00000238", "CallerIDName": "", "CallerIDNum": "+31853030903"}, - {"content": "", "Dialstring": "126680010/126680010/195.35.115.203!!0625339196", "Event": "Dial", "Destination": "SIP/126680010-00000238", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2", "CallerIDNum": "+31625339196", "DestUniqueID": "ua0-acc-1509639993.1348", "ConnectedLineName": "", "ConnectedLineNum": "+31853030903", "Privilege": "call,all", "SubEvent": "Begin", "CallerIDName": "", "UniqueID": "ua0-acc-1509639993.1347"}, - {"ChannelState": "0", "content": "", "Event": "Newchannel", "Channel": "SIP/126680005-00000239", "CallerIDNum": "", "Context": "osvpi_account", "ChannelStateDesc": "Down", "Privilege": "call,all", "Exten": "", "Uniqueid": "ua0-acc-1509639993.1349", "CallerIDName": "", "AccountCode": "126680005"}, - {"Value": "3c5af3e4147fcc0c3aa165920f4d25c5@acceptatie.voipgrid.nl", "Variable": "SIPCALLID", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1349", "Event": "VarSet", "Channel": "SIP/126680005-00000239"}, - {"Value": "12668", "Variable": "__client_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1349", "Event": "VarSet", "Channel": "SIP/126680005-00000239"}, - {"Value": "126680005", "Variable": "__account_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1349", "Event": "VarSet", "Channel": "SIP/126680005-00000239"}, - {"Value": "no", "Variable": "__record_call", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1349", "Event": "VarSet", "Channel": "SIP/126680005-00000239"}, - {"Value": "31", "Variable": "__intprefix", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1349", "Event": "VarSet", "Channel": "SIP/126680005-00000239"}, - {"Value": "4", "Variable": "__limit_account", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1349", "Event": "VarSet", "Channel": "SIP/126680005-00000239"}, - {"Value": "0", "Variable": "__limit_client", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1349", "Event": "VarSet", "Channel": "SIP/126680005-00000239"}, - {"Value": "1", "Variable": "__hide_ext_cliname", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1349", "Event": "VarSet", "Channel": "SIP/126680005-00000239"}, - {"Value": "osvpi_account_transfer", "Variable": "__TRANSFER_CONTEXT", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1349", "Event": "VarSet", "Channel": "SIP/126680005-00000239"}, - {"Value": "126680005/126680005/195.35.115.203!!0625339196", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1349", "Event": "VarSet", "Channel": "SIP/126680005-00000239"}, - {"Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Uniqueid": "ua0-acc-1509639993.1349", "Event": "NewCallerid", "content": "", "Channel": "SIP/126680005-00000239", "CallerIDName": "", "CallerIDNum": "+31853030903"}, - {"content": "", "Dialstring": "126680005/126680005/195.35.115.203!!0625339196", "Event": "Dial", "Destination": "SIP/126680005-00000239", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "CallerIDNum": "+31625339196", "DestUniqueID": "ua0-acc-1509639993.1349", "ConnectedLineName": "", "ConnectedLineNum": "+31853030903", "Privilege": "call,all", "SubEvent": "Begin", "CallerIDName": "", "UniqueID": "ua0-acc-1509639993.1345"}, - {"Value": "sipproxy.acceptatie.voipgrid.nl", "Variable": "SIPDOMAIN", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1348", "Event": "VarSet", "Channel": "SIP/126680010-00000238"}, - {"ChannelState": "0", "content": "", "Event": "Newchannel", "Channel": "Local/220@osvpi_account-00000186;1", "CallerIDNum": "", "Context": "osvpi_account", "ChannelStateDesc": "Down", "Privilege": "call,all", "Exten": "220", "Uniqueid": "ua0-acc-1509639993.1350", "CallerIDName": "", "AccountCode": ""}, - {"ChannelState": "4", "content": "", "Event": "Newchannel", "Channel": "Local/220@osvpi_account-00000186;2", "CallerIDNum": "", "Context": "osvpi_account", "ChannelStateDesc": "Ring", "Privilege": "call,all", "Exten": "220", "Uniqueid": "ua0-acc-1509639993.1351", "CallerIDName": "", "AccountCode": ""}, - {"Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Uniqueid": "ua0-acc-1509639993.1350", "Event": "NewCallerid", "content": "", "Channel": "Local/220@osvpi_account-00000186;1", "CallerIDName": "", "CallerIDNum": "+31853030903"}, - {"LocalOptimization": "Yes", "Privilege": "call,all", "content": "", "Uniqueid2": "ua0-acc-1509639993.1351", "Event": "LocalBridge", "Exten": "220", "Channel1": "Local/220@osvpi_account-00000186;1", "Uniqueid1": "ua0-acc-1509639993.1350", "Channel2": "Local/220@osvpi_account-00000186;2", "Context": "osvpi_account"}, - {"content": "", "Dialstring": "220@osvpi_account", "Event": "Dial", "Destination": "Local/220@osvpi_account-00000186;1", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2", "CallerIDNum": "+31625339196", "DestUniqueID": "ua0-acc-1509639993.1350", "ConnectedLineName": "", "ConnectedLineNum": "+31853030903", "Privilege": "call,all", "SubEvent": "Begin", "CallerIDName": "", "UniqueID": "ua0-acc-1509639993.1347"}, - {"Cause-txt": "Normal Clearing", "content": "", "Event": "Hangup", "Cause": "16", "Channel": "SIP/126680010-00000238", "CallerIDNum": "+31853030903", "ConnectedLineName": "", "ConnectedLineNum": "+31625339196", "Privilege": "call,all", "Uniqueid": "ua0-acc-1509639993.1348", "CallerIDName": "", "AccountCode": "12668"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "ExecIf", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "0?GotoIf(1?osvpi_proc_hangup_insecure,220,1)", "Event": "Newexten", "Context": "osvpi_account"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Gosub", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "osvpi_proc_check_forwards,s,1", "Event": "Newexten", "Context": "osvpi_account"}, - {"Value": "0", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "GotoIf", "Extension": "s", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "2?check,1", "Event": "Newexten", "Context": "osvpi_proc_check_forwards"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Set", "Extension": "check", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "MASTER_CHANNEL(SIP_MAX_FORWARDS)=15", "Event": "Newexten", "Context": "osvpi_proc_check_forwards"}, - {"Value": "15", "Variable": "SIP_MAX_FORWARDS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "NoOp", "Extension": "check", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "DEBUG: MaxForwards: decremented to: 15", "Event": "Newexten", "Context": "osvpi_proc_check_forwards"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "GotoIf", "Extension": "check", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "0?osvpi_handle_loop,ii+31853030903,1", "Event": "Newexten", "Context": "osvpi_proc_check_forwards"}, - {"Privilege": "dialplan,all", "Priority": "4", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Return", "Extension": "check", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "", "Event": "Newexten", "Context": "osvpi_proc_check_forwards"}, - {"Value": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "GotoIf", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "1?osvpi_account_transfer,220,1", "Event": "Newexten", "Context": "osvpi_account"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "NoOp", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "DEBUG: XFER: accountcode=12668 client_id=12668 account_id=", "Event": "Newexten", "Context": "osvpi_account_transfer"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "GotoIf", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "0?accountinfo", "Event": "Newexten", "Context": "osvpi_account_transfer"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Set", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "CALLERID(name)=", "Event": "Newexten", "Context": "osvpi_account_transfer"}, - {"Privilege": "dialplan,all", "Priority": "4", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Set", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "CALLERID(num)=+31625339196", "Event": "Newexten", "Context": "osvpi_account_transfer"}, - {"Privilege": "dialplan,all", "Priority": "5", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Set", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "CALLERID(pres)=allowed_passed_screen", "Event": "Newexten", "Context": "osvpi_account_transfer"}, - {"Privilege": "dialplan,all", "Priority": "6", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Set", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "l_changed=1", "Event": "Newexten", "Context": "osvpi_account_transfer"}, - {"Value": "1", "Variable": "l_changed", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Privilege": "dialplan,all", "Priority": "7", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "ForkCDR", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "ATe", "Event": "Newexten", "Context": "osvpi_account_transfer"}, - {"Privilege": "dialplan,all", "Priority": "8", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "GotoIf", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "0?blindxfer:code302or482", "Event": "Newexten", "Context": "osvpi_account_transfer"}, - {"Privilege": "dialplan,all", "Priority": "27", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "NoOp", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "DEBUG: 302/482: RDNIS=126680010 dst_account_id=126680010", "Event": "Newexten", "Context": "osvpi_account_transfer"}, - {"Privilege": "dialplan,all", "Priority": "28", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "ExecIf", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "0?Hangup()", "Event": "Newexten", "Context": "osvpi_account_transfer"}, - {"Privilege": "dialplan,all", "Priority": "29", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "NoOp", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "New caller is 126680010", "Event": "Newexten", "Context": "osvpi_account_transfer"}, - {"Privilege": "dialplan,all", "Priority": "30", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Set", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "CDR(accountcode)=126680010", "Event": "Newexten", "Context": "osvpi_account_transfer"}, - {"Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "NewAccountCode", "OldAccountCode": "12668", "Channel": "Local/220@osvpi_account-00000186;2", "AccountCode": "126680010"}, - {"Privilege": "dialplan,all", "Priority": "31", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Set", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "__account_id=126680010", "Event": "Newexten", "Context": "osvpi_account_transfer"}, - {"Value": "126680010", "Variable": "__account_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Privilege": "dialplan,all", "Priority": "32", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Set", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "__dst_account_id=", "Event": "Newexten", "Context": "osvpi_account_transfer"}, - {"Value": "", "Variable": "__dst_account_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Privilege": "dialplan,all", "Priority": "33", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Set", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "__TRANSFER_CONTEXT=osvpi_account_transfer", "Event": "Newexten", "Context": "osvpi_account_transfer"}, - {"Value": "osvpi_account_transfer", "Variable": "__TRANSFER_CONTEXT", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Privilege": "dialplan,all", "Priority": "34", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Set", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "user_privacy=0", "Event": "Newexten", "Context": "osvpi_account_transfer"}, - {"Value": "0", "Variable": "user_privacy", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Privilege": "dialplan,all", "Priority": "35", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Set", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "is_transfer=1", "Event": "Newexten", "Context": "osvpi_account_transfer"}, - {"Value": "1", "Variable": "is_transfer", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Value": "sipproxy.acceptatie.voipgrid.nl", "Variable": "SIPDOMAIN", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1349", "Event": "VarSet", "Channel": "SIP/126680005-00000239"}, - {"ChannelState": "0", "content": "", "Event": "Newchannel", "Channel": "Local/221@osvpi_account-00000187;1", "CallerIDNum": "", "Context": "osvpi_account", "ChannelStateDesc": "Down", "Privilege": "call,all", "Exten": "221", "Uniqueid": "ua0-acc-1509639993.1352", "CallerIDName": "", "AccountCode": ""}, - {"ChannelState": "4", "content": "", "Event": "Newchannel", "Channel": "Local/221@osvpi_account-00000187;2", "CallerIDNum": "", "Context": "osvpi_account", "ChannelStateDesc": "Ring", "Privilege": "call,all", "Exten": "221", "Uniqueid": "ua0-acc-1509639993.1353", "CallerIDName": "", "AccountCode": ""}, - {"Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Uniqueid": "ua0-acc-1509639993.1352", "Event": "NewCallerid", "content": "", "Channel": "Local/221@osvpi_account-00000187;1", "CallerIDName": "", "CallerIDNum": "+31853030903"}, - {"LocalOptimization": "Yes", "Privilege": "call,all", "content": "", "Uniqueid2": "ua0-acc-1509639993.1353", "Event": "LocalBridge", "Exten": "221", "Channel1": "Local/221@osvpi_account-00000187;1", "Uniqueid1": "ua0-acc-1509639993.1352", "Channel2": "Local/221@osvpi_account-00000187;2", "Context": "osvpi_account"}, - {"content": "", "Dialstring": "221@osvpi_account", "Event": "Dial", "Destination": "Local/221@osvpi_account-00000187;1", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "CallerIDNum": "+31625339196", "DestUniqueID": "ua0-acc-1509639993.1352", "ConnectedLineName": "", "ConnectedLineNum": "+31853030903", "Privilege": "call,all", "SubEvent": "Begin", "CallerIDName": "", "UniqueID": "ua0-acc-1509639993.1345"}, - {"Cause-txt": "Normal Clearing", "content": "", "Event": "Hangup", "Cause": "16", "Channel": "SIP/126680005-00000239", "CallerIDNum": "+31853030903", "ConnectedLineName": "", "ConnectedLineNum": "+31625339196", "Privilege": "call,all", "Uniqueid": "ua0-acc-1509639993.1349", "CallerIDName": "", "AccountCode": "12668"}, - {"Value": "1", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Value": "SUCCESS", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Value": "client_id,intprefix,internal_number,limit_account,limit_client", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "ExecIf", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "0?GotoIf(1?osvpi_proc_hangup_insecure,221,1)", "Event": "Newexten", "Context": "osvpi_account"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Gosub", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "osvpi_proc_check_forwards,s,1", "Event": "Newexten", "Context": "osvpi_account"}, - {"Value": "0", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "GotoIf", "Extension": "s", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "2?check,1", "Event": "Newexten", "Context": "osvpi_proc_check_forwards"}, - {"Privilege": "dialplan,all", "Priority": "36", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "ExecIf", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "1?Set(ARRAY(__client_id,__intprefix,dummy,__limit_account,__limit_client)=12668,31,218,4,0)", "Event": "Newexten", "Context": "osvpi_account_transfer"}, - {"Value": "12668", "Variable": "__client_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Value": "31", "Variable": "__intprefix", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Value": "218", "Variable": "dummy", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Value": "4", "Variable": "__limit_account", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Value": "0", "Variable": "__limit_client", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Privilege": "dialplan,all", "Priority": "37", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "ExecIf", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "0?Set(CHANNEL(musicclass)=)", "Event": "Newexten", "Context": "osvpi_account_transfer"}, - {"Privilege": "dialplan,all", "Priority": "38", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "NoOp", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "DEBUG: CLI: name=\"\" num=+31625339196 ANI=+31625339196 presence=allowed_passed_screen", "Event": "Newexten", "Context": "osvpi_account_transfer"}, - {"Privilege": "dialplan,all", "Priority": "39", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Goto", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "osvpi_account,220,checkspeeddial", "Event": "Newexten", "Context": "osvpi_account_transfer"}, - {"Privilege": "dialplan,all", "Priority": "19", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "GotoIf", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "1?continue", "Event": "Newexten", "Context": "osvpi_account"}, - {"Privilege": "dialplan,all", "Priority": "22", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Gosub", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "osvpi_proc_set_i18n_region,31,1", "Event": "Newexten", "Context": "osvpi_account"}, - {"Value": "0", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Set", "Extension": "31", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "i18n_region=NL", "Event": "Newexten", "Context": "osvpi_proc_set_i18n_region"}, - {"Value": "NL", "Variable": "i18n_region", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Return", "Extension": "31", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "", "Event": "Newexten", "Context": "osvpi_proc_set_i18n_region"}, - {"Value": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Privilege": "dialplan,all", "Priority": "23", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Goto", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "osvpi_account_emergency_NL,220,1", "Event": "Newexten", "Context": "osvpi_account"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Goto", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "osvpi_account_no_emergency,220,1", "Event": "Newexten", "Context": "osvpi_account_emergency_NL"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Goto", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "osvpi_account,220,no-emergency", "Event": "Newexten", "Context": "osvpi_account_no_emergency"}, - {"Privilege": "dialplan,all", "Priority": "24", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Goto", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "osvpi_account_clean,220,1", "Event": "Newexten", "Context": "osvpi_account"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Set", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "return=osvpi_account_clean", "Event": "Newexten", "Context": "osvpi_account_clean"}, - {"Value": "osvpi_account_clean", "Variable": "return", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Goto", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "osvpi_return_to_canonical,31i220,1", "Event": "Newexten", "Context": "osvpi_account_clean"}, - {"Value": "31i220", "Variable": "INVALID_EXTEN", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Goto", "Extension": "i", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "osvpi_account_clean,220,local", "Event": "Newexten", "Context": "osvpi_return_to_canonical"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "GotoIf", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "0?extern", "Event": "Newexten", "Context": "osvpi_account_clean"}, - {"Privilege": "dialplan,all", "Priority": "4", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Gosub", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "osvpi_proc_set_callerid,220,1(126680010,0,0)", "Event": "Newexten", "Context": "osvpi_account_clean"}, - {"Value": "126680010", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Value": "0", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Value": "0", "Variable": "LOCAL(ARG3)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Value": "3", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "GotoIf", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "1?done", "Event": "Newexten", "Context": "osvpi_proc_set_callerid"}, - {"Privilege": "dialplan,all", "Priority": "10", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Return", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "", "Event": "Newexten", "Context": "osvpi_proc_set_callerid"}, - {"Value": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Privilege": "dialplan,all", "Priority": "5", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "GotoIf", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "3?osvpi_account_call_int,220,1:i,1", "Event": "Newexten", "Context": "osvpi_account_clean"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Gosub", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "osvpi_proc_check_limits,220,1", "Event": "Newexten", "Context": "osvpi_account_call_int"}, - {"Value": "0", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "NoOp", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "DEBUG: call_limit: client 0/0 and account 0/4", "Event": "Newexten", "Context": "osvpi_proc_check_limits"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "GotoIf", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "0?osvpi_handle_limit,220,client", "Event": "Newexten", "Context": "osvpi_proc_check_limits"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "GotoIf", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "0?osvpi_handle_limit,220,account", "Event": "Newexten", "Context": "osvpi_proc_check_limits"}, - {"Privilege": "dialplan,all", "Priority": "4", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Set", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "GROUP(account_lim)=126680010", "Event": "Newexten", "Context": "osvpi_proc_check_limits"}, - {"Privilege": "dialplan,all", "Priority": "5", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Set", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "GROUP(client_lim)=12668", "Event": "Newexten", "Context": "osvpi_proc_check_limits"}, - {"Privilege": "dialplan,all", "Priority": "6", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Return", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "", "Event": "Newexten", "Context": "osvpi_proc_check_limits"}, - {"Value": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Gosub", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "osvpi_proc_check_recurse,220,1(12668)", "Event": "Newexten", "Context": "osvpi_account_call_int"}, - {"Value": "12668", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Value": "1", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Set", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "LOCAL(exten)=12668:220", "Event": "Newexten", "Context": "osvpi_proc_check_recurse"}, - {"Value": "12668:220", "Variable": "LOCAL(exten)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "NoOp", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "Recursion checking 12668:220 against 12668:+31853030903 ", "Event": "Newexten", "Context": "osvpi_proc_check_recurse"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Set", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "LOCAL(n)=2", "Event": "Newexten", "Context": "osvpi_proc_check_recurse"}, - {"Value": "2", "Variable": "LOCAL(n)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Privilege": "dialplan,all", "Priority": "4", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Set", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "LOCAL(i)=1", "Event": "Newexten", "Context": "osvpi_proc_check_recurse"}, - {"Value": "1", "Variable": "LOCAL(i)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Privilege": "dialplan,all", "Priority": "5", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "GotoIf", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "0?add", "Event": "Newexten", "Context": "osvpi_proc_check_recurse"}, - {"Privilege": "dialplan,all", "Priority": "6", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "GotoIf", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "0?osvpi_handle_loop,ii220,1", "Event": "Newexten", "Context": "osvpi_proc_check_recurse"}, - {"Privilege": "dialplan,all", "Priority": "7", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Set", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "i=2", "Event": "Newexten", "Context": "osvpi_proc_check_recurse"}, - {"Value": "2", "Variable": "i", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Privilege": "dialplan,all", "Priority": "8", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Goto", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "while", "Event": "Newexten", "Context": "osvpi_proc_check_recurse"}, - {"Privilege": "dialplan,all", "Priority": "5", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "GotoIf", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "0?add", "Event": "Newexten", "Context": "osvpi_proc_check_recurse"}, - {"Privilege": "dialplan,all", "Priority": "6", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "GotoIf", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "0?osvpi_handle_loop,ii220,1", "Event": "Newexten", "Context": "osvpi_proc_check_recurse"}, - {"Privilege": "dialplan,all", "Priority": "7", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Set", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "i=3", "Event": "Newexten", "Context": "osvpi_proc_check_recurse"}, - {"Value": "3", "Variable": "i", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Privilege": "dialplan,all", "Priority": "8", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Goto", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "while", "Event": "Newexten", "Context": "osvpi_proc_check_recurse"}, - {"Privilege": "dialplan,all", "Priority": "5", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "GotoIf", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "1?add", "Event": "Newexten", "Context": "osvpi_proc_check_recurse"}, - {"Privilege": "dialplan,all", "Priority": "9", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Set", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "__EXTEN_LIST=12668:+31853030903 12668:220 ", "Event": "Newexten", "Context": "osvpi_proc_check_recurse"}, - {"Value": "12668:+31853030903 12668:220 ", "Variable": "__EXTEN_LIST", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Privilege": "dialplan,all", "Priority": "10", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Set", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "__EXTEN_LIST_LAST_EDIT_TIME=1509639993", "Event": "Newexten", "Context": "osvpi_proc_check_recurse"}, - {"Value": "1509639993", "Variable": "__EXTEN_LIST_LAST_EDIT_TIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Privilege": "dialplan,all", "Priority": "11", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Return", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "", "Event": "Newexten", "Context": "osvpi_proc_check_recurse"}, - {"Value": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Set", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "__ORIG_EXTEN=220", "Event": "Newexten", "Context": "osvpi_account_call_int"}, - {"Value": "220", "Variable": "__ORIG_EXTEN", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Set", "Extension": "check", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "MASTER_CHANNEL(SIP_MAX_FORWARDS)=14", "Event": "Newexten", "Context": "osvpi_proc_check_forwards"}, - {"Value": "14", "Variable": "SIP_MAX_FORWARDS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "NoOp", "Extension": "check", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "DEBUG: MaxForwards: decremented to: 14", "Event": "Newexten", "Context": "osvpi_proc_check_forwards"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "GotoIf", "Extension": "check", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "0?osvpi_handle_loop,ii+31853030903,1", "Event": "Newexten", "Context": "osvpi_proc_check_forwards"}, - {"Privilege": "dialplan,all", "Priority": "4", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Return", "Extension": "check", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "", "Event": "Newexten", "Context": "osvpi_proc_check_forwards"}, - {"Value": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "GotoIf", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "1?osvpi_account_transfer,221,1", "Event": "Newexten", "Context": "osvpi_account"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "NoOp", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "DEBUG: XFER: accountcode=12668 client_id=12668 account_id=", "Event": "Newexten", "Context": "osvpi_account_transfer"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "GotoIf", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "0?accountinfo", "Event": "Newexten", "Context": "osvpi_account_transfer"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Set", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "CALLERID(name)=", "Event": "Newexten", "Context": "osvpi_account_transfer"}, - {"Privilege": "dialplan,all", "Priority": "4", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Set", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "CALLERID(num)=+31625339196", "Event": "Newexten", "Context": "osvpi_account_transfer"}, - {"Privilege": "dialplan,all", "Priority": "5", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Set", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "CALLERID(pres)=allowed_passed_screen", "Event": "Newexten", "Context": "osvpi_account_transfer"}, - {"Privilege": "dialplan,all", "Priority": "6", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Set", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "l_changed=1", "Event": "Newexten", "Context": "osvpi_account_transfer"}, - {"Value": "1", "Variable": "l_changed", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Privilege": "dialplan,all", "Priority": "7", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "ForkCDR", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "ATe", "Event": "Newexten", "Context": "osvpi_account_transfer"}, - {"Privilege": "dialplan,all", "Priority": "8", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "GotoIf", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "0?blindxfer:code302or482", "Event": "Newexten", "Context": "osvpi_account_transfer"}, - {"Privilege": "dialplan,all", "Priority": "27", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "NoOp", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "DEBUG: 302/482: RDNIS=126680005 dst_account_id=126680005", "Event": "Newexten", "Context": "osvpi_account_transfer"}, - {"Privilege": "dialplan,all", "Priority": "28", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "ExecIf", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "0?Hangup()", "Event": "Newexten", "Context": "osvpi_account_transfer"}, - {"Privilege": "dialplan,all", "Priority": "29", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "NoOp", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "New caller is 126680005", "Event": "Newexten", "Context": "osvpi_account_transfer"}, - {"Privilege": "dialplan,all", "Priority": "30", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Set", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "CDR(accountcode)=126680005", "Event": "Newexten", "Context": "osvpi_account_transfer"}, - {"Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "NewAccountCode", "OldAccountCode": "12668", "Channel": "Local/221@osvpi_account-00000187;2", "AccountCode": "126680005"}, - {"Privilege": "dialplan,all", "Priority": "31", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Set", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "__account_id=126680005", "Event": "Newexten", "Context": "osvpi_account_transfer"}, - {"Value": "126680005", "Variable": "__account_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Privilege": "dialplan,all", "Priority": "32", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Set", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "__dst_account_id=", "Event": "Newexten", "Context": "osvpi_account_transfer"}, - {"Value": "", "Variable": "__dst_account_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Privilege": "dialplan,all", "Priority": "33", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Set", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "__TRANSFER_CONTEXT=osvpi_account_transfer", "Event": "Newexten", "Context": "osvpi_account_transfer"}, - {"Value": "osvpi_account_transfer", "Variable": "__TRANSFER_CONTEXT", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Privilege": "dialplan,all", "Priority": "34", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Set", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "user_privacy=0", "Event": "Newexten", "Context": "osvpi_account_transfer"}, - {"Value": "0", "Variable": "user_privacy", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Privilege": "dialplan,all", "Priority": "35", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Set", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "is_transfer=1", "Event": "Newexten", "Context": "osvpi_account_transfer"}, - {"Value": "1", "Variable": "is_transfer", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Value": "0", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Value": "NODATA", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Privilege": "dialplan,all", "Priority": "4", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Set", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "ARRAY(conference_id,user_password,admin_password,conference_language)=", "Event": "Newexten", "Context": "osvpi_account_call_int"}, - {"Value": "", "Variable": "conference_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Value": "", "Variable": "user_password", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Value": "", "Variable": "admin_password", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Value": "", "Variable": "conference_language", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Privilege": "dialplan,all", "Priority": "5", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "GotoIf", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "0?osvpi_route_conference,ID,1", "Event": "Newexten", "Context": "osvpi_account_call_int"}, - {"Value": "1", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Value": "SUCCESS", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Value": "client_id,intprefix,internal_number,limit_account,limit_client", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Privilege": "dialplan,all", "Priority": "36", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "ExecIf", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "1?Set(ARRAY(__client_id,__intprefix,dummy,__limit_account,__limit_client)=12668,31,217,4,0)", "Event": "Newexten", "Context": "osvpi_account_transfer"}, - {"Value": "12668", "Variable": "__client_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Value": "31", "Variable": "__intprefix", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Value": "217", "Variable": "dummy", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Value": "4", "Variable": "__limit_account", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Value": "0", "Variable": "__limit_client", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Privilege": "dialplan,all", "Priority": "37", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "ExecIf", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "0?Set(CHANNEL(musicclass)=)", "Event": "Newexten", "Context": "osvpi_account_transfer"}, - {"Privilege": "dialplan,all", "Priority": "38", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "NoOp", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "DEBUG: CLI: name=\"\" num=+31625339196 ANI=+31625339196 presence=allowed_passed_screen", "Event": "Newexten", "Context": "osvpi_account_transfer"}, - {"Privilege": "dialplan,all", "Priority": "39", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Goto", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "osvpi_account,221,checkspeeddial", "Event": "Newexten", "Context": "osvpi_account_transfer"}, - {"Privilege": "dialplan,all", "Priority": "19", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "GotoIf", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "1?continue", "Event": "Newexten", "Context": "osvpi_account"}, - {"Privilege": "dialplan,all", "Priority": "22", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Gosub", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "osvpi_proc_set_i18n_region,31,1", "Event": "Newexten", "Context": "osvpi_account"}, - {"Value": "0", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Set", "Extension": "31", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "i18n_region=NL", "Event": "Newexten", "Context": "osvpi_proc_set_i18n_region"}, - {"Value": "NL", "Variable": "i18n_region", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Return", "Extension": "31", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "", "Event": "Newexten", "Context": "osvpi_proc_set_i18n_region"}, - {"Value": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Privilege": "dialplan,all", "Priority": "23", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Goto", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "osvpi_account_emergency_NL,221,1", "Event": "Newexten", "Context": "osvpi_account"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Goto", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "osvpi_account_no_emergency,221,1", "Event": "Newexten", "Context": "osvpi_account_emergency_NL"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Goto", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "osvpi_account,221,no-emergency", "Event": "Newexten", "Context": "osvpi_account_no_emergency"}, - {"Privilege": "dialplan,all", "Priority": "24", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Goto", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "osvpi_account_clean,221,1", "Event": "Newexten", "Context": "osvpi_account"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Set", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "return=osvpi_account_clean", "Event": "Newexten", "Context": "osvpi_account_clean"}, - {"Value": "osvpi_account_clean", "Variable": "return", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Goto", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "osvpi_return_to_canonical,31i221,1", "Event": "Newexten", "Context": "osvpi_account_clean"}, - {"Value": "31i221", "Variable": "INVALID_EXTEN", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Goto", "Extension": "i", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "osvpi_account_clean,221,local", "Event": "Newexten", "Context": "osvpi_return_to_canonical"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "GotoIf", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "0?extern", "Event": "Newexten", "Context": "osvpi_account_clean"}, - {"Privilege": "dialplan,all", "Priority": "4", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Gosub", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "osvpi_proc_set_callerid,221,1(126680005,0,0)", "Event": "Newexten", "Context": "osvpi_account_clean"}, - {"Value": "126680005", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Value": "0", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Value": "0", "Variable": "LOCAL(ARG3)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Value": "3", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "GotoIf", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "1?done", "Event": "Newexten", "Context": "osvpi_proc_set_callerid"}, - {"Privilege": "dialplan,all", "Priority": "10", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Return", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "", "Event": "Newexten", "Context": "osvpi_proc_set_callerid"}, - {"Value": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Privilege": "dialplan,all", "Priority": "5", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "GotoIf", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "3?osvpi_account_call_int,221,1:i,1", "Event": "Newexten", "Context": "osvpi_account_clean"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Gosub", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "osvpi_proc_check_limits,221,1", "Event": "Newexten", "Context": "osvpi_account_call_int"}, - {"Value": "0", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "NoOp", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "DEBUG: call_limit: client 1/0 and account 0/4", "Event": "Newexten", "Context": "osvpi_proc_check_limits"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "GotoIf", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "0?osvpi_handle_limit,221,client", "Event": "Newexten", "Context": "osvpi_proc_check_limits"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "GotoIf", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "0?osvpi_handle_limit,221,account", "Event": "Newexten", "Context": "osvpi_proc_check_limits"}, - {"Privilege": "dialplan,all", "Priority": "4", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Set", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "GROUP(account_lim)=126680005", "Event": "Newexten", "Context": "osvpi_proc_check_limits"}, - {"Privilege": "dialplan,all", "Priority": "5", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Set", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "GROUP(client_lim)=12668", "Event": "Newexten", "Context": "osvpi_proc_check_limits"}, - {"Privilege": "dialplan,all", "Priority": "6", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Return", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "", "Event": "Newexten", "Context": "osvpi_proc_check_limits"}, - {"Value": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Gosub", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "osvpi_proc_check_recurse,221,1(12668)", "Event": "Newexten", "Context": "osvpi_account_call_int"}, - {"Value": "12668", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Value": "1", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Set", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "LOCAL(exten)=12668:221", "Event": "Newexten", "Context": "osvpi_proc_check_recurse"}, - {"Value": "12668:221", "Variable": "LOCAL(exten)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "NoOp", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "Recursion checking 12668:221 against 12668:+31853030903 ", "Event": "Newexten", "Context": "osvpi_proc_check_recurse"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Set", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "LOCAL(n)=2", "Event": "Newexten", "Context": "osvpi_proc_check_recurse"}, - {"Value": "2", "Variable": "LOCAL(n)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Privilege": "dialplan,all", "Priority": "4", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Set", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "LOCAL(i)=1", "Event": "Newexten", "Context": "osvpi_proc_check_recurse"}, - {"Value": "1", "Variable": "LOCAL(i)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Privilege": "dialplan,all", "Priority": "5", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "GotoIf", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "0?add", "Event": "Newexten", "Context": "osvpi_proc_check_recurse"}, - {"Privilege": "dialplan,all", "Priority": "6", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "GotoIf", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "0?osvpi_handle_loop,ii221,1", "Event": "Newexten", "Context": "osvpi_proc_check_recurse"}, - {"Privilege": "dialplan,all", "Priority": "7", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Set", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "i=2", "Event": "Newexten", "Context": "osvpi_proc_check_recurse"}, - {"Value": "2", "Variable": "i", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Privilege": "dialplan,all", "Priority": "8", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Goto", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "while", "Event": "Newexten", "Context": "osvpi_proc_check_recurse"}, - {"Privilege": "dialplan,all", "Priority": "5", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "GotoIf", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "0?add", "Event": "Newexten", "Context": "osvpi_proc_check_recurse"}, - {"Privilege": "dialplan,all", "Priority": "6", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "GotoIf", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "0?osvpi_handle_loop,ii221,1", "Event": "Newexten", "Context": "osvpi_proc_check_recurse"}, - {"Privilege": "dialplan,all", "Priority": "7", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Set", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "i=3", "Event": "Newexten", "Context": "osvpi_proc_check_recurse"}, - {"Value": "3", "Variable": "i", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Privilege": "dialplan,all", "Priority": "8", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Goto", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "while", "Event": "Newexten", "Context": "osvpi_proc_check_recurse"}, - {"Privilege": "dialplan,all", "Priority": "5", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "GotoIf", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "1?add", "Event": "Newexten", "Context": "osvpi_proc_check_recurse"}, - {"Privilege": "dialplan,all", "Priority": "9", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Set", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "__EXTEN_LIST=12668:+31853030903 12668:221 ", "Event": "Newexten", "Context": "osvpi_proc_check_recurse"}, - {"Value": "12668:+31853030903 12668:221 ", "Variable": "__EXTEN_LIST", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Privilege": "dialplan,all", "Priority": "10", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Set", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "__EXTEN_LIST_LAST_EDIT_TIME=1509639993", "Event": "Newexten", "Context": "osvpi_proc_check_recurse"}, - {"Value": "1509639993", "Variable": "__EXTEN_LIST_LAST_EDIT_TIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Privilege": "dialplan,all", "Priority": "11", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Return", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "", "Event": "Newexten", "Context": "osvpi_proc_check_recurse"}, - {"Value": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Set", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "__ORIG_EXTEN=221", "Event": "Newexten", "Context": "osvpi_account_call_int"}, - {"Value": "221", "Variable": "__ORIG_EXTEN", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Value": "0", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Value": "NODATA", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Privilege": "dialplan,all", "Priority": "6", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Set", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "ARRAY(route_id,client_timezone)=", "Event": "Newexten", "Context": "osvpi_account_call_int"}, - {"Value": "", "Variable": "route_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Value": "", "Variable": "client_timezone", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Privilege": "dialplan,all", "Priority": "7", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "GotoIf", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "0?osvpi_route_root,220,restart", "Event": "Newexten", "Context": "osvpi_account_call_int"}, - {"Value": "0", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Value": "NODATA", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Privilege": "dialplan,all", "Priority": "4", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Set", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "ARRAY(conference_id,user_password,admin_password,conference_language)=", "Event": "Newexten", "Context": "osvpi_account_call_int"}, - {"Value": "", "Variable": "conference_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Value": "", "Variable": "user_password", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Value": "", "Variable": "admin_password", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Value": "", "Variable": "conference_language", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Privilege": "dialplan,all", "Priority": "5", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "GotoIf", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "0?osvpi_route_conference,ID,1", "Event": "Newexten", "Context": "osvpi_account_call_int"}, - {"Value": "0", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Value": "NODATA", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Privilege": "dialplan,all", "Priority": "8", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Set", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "ARRAY(all_extensions,limited_extensions,password,account_spy_language)=", "Event": "Newexten", "Context": "osvpi_account_call_int"}, - {"Value": "", "Variable": "all_extensions", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Value": "", "Variable": "limited_extensions", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Value": "", "Variable": "password", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Value": "", "Variable": "account_spy_language", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Privilege": "dialplan,all", "Priority": "9", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "GotoIf", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "0?osvpi_account_spy,220,1", "Event": "Newexten", "Context": "osvpi_account_call_int"}, - {"Value": "0", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Value": "NODATA", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Privilege": "dialplan,all", "Priority": "6", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Set", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "ARRAY(route_id,client_timezone)=", "Event": "Newexten", "Context": "osvpi_account_call_int"}, - {"Value": "", "Variable": "route_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Value": "", "Variable": "client_timezone", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Privilege": "dialplan,all", "Priority": "7", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "GotoIf", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "0?osvpi_route_root,221,restart", "Event": "Newexten", "Context": "osvpi_account_call_int"}, - {"Value": "1", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Value": "SUCCESS", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Value": "interfaces", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Privilege": "dialplan,all", "Priority": "10", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Set", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "ARRAY(interfaces)=Local/ID730671@osvpi_route_phoneaccount", "Event": "Newexten", "Context": "osvpi_account_call_int"}, - {"Value": "Local/ID730671@osvpi_route_phoneaccount", "Variable": "interfaces", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Privilege": "dialplan,all", "Priority": "11", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "GotoIf", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "0?osvpi_handle_unallocated,220,1", "Event": "Newexten", "Context": "osvpi_account_call_int"}, - {"Privilege": "dialplan,all", "Priority": "12", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "Dial", "Extension": "220", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "Local/ID730671@osvpi_route_phoneaccount", "Event": "Newexten", "Context": "osvpi_account_call_int"}, - {"Value": "", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Value": "", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Value": "", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Value": "", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Value": "", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"ChannelState": "0", "content": "", "Event": "Newchannel", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;1", "CallerIDNum": "", "Context": "osvpi_route_phoneaccount", "ChannelStateDesc": "Down", "Privilege": "call,all", "Exten": "ID730671", "Uniqueid": "ua0-acc-1509639993.1354", "CallerIDName": "", "AccountCode": ""}, - {"ChannelState": "4", "content": "", "Event": "Newchannel", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2", "CallerIDNum": "", "Context": "osvpi_route_phoneaccount", "ChannelStateDesc": "Ring", "Privilege": "call,all", "Exten": "ID730671", "Uniqueid": "ua0-acc-1509639993.1355", "CallerIDName": "", "AccountCode": ""}, - {"Value": "ID730671@osvpi_route_phoneaccount", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1354", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;1"}, - {"Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Uniqueid": "ua0-acc-1509639993.1354", "Event": "NewCallerid", "content": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;1", "CallerIDName": "", "CallerIDNum": "220"}, - {"LocalOptimization": "Yes", "Privilege": "call,all", "content": "", "Uniqueid2": "ua0-acc-1509639993.1355", "Event": "LocalBridge", "Exten": "ID730671", "Channel1": "Local/ID730671@osvpi_route_phoneaccount-00000188;1", "Uniqueid1": "ua0-acc-1509639993.1354", "Channel2": "Local/ID730671@osvpi_route_phoneaccount-00000188;2", "Context": "osvpi_route_phoneaccount"}, - {"content": "", "Dialstring": "ID730671@osvpi_route_phoneaccount", "Event": "Dial", "Destination": "Local/ID730671@osvpi_route_phoneaccount-00000188;1", "Channel": "Local/220@osvpi_account-00000186;2", "CallerIDNum": "+31625339196", "DestUniqueID": "ua0-acc-1509639993.1354", "ConnectedLineName": "", "ConnectedLineNum": "+31853030903", "Privilege": "call,all", "SubEvent": "Begin", "CallerIDName": "", "UniqueID": "ua0-acc-1509639993.1351"}, - {"Value": "0", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Value": "NODATA", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Privilege": "dialplan,all", "Priority": "8", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Set", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "ARRAY(all_extensions,limited_extensions,password,account_spy_language)=", "Event": "Newexten", "Context": "osvpi_account_call_int"}, - {"Value": "", "Variable": "all_extensions", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Value": "", "Variable": "limited_extensions", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Value": "", "Variable": "password", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Value": "", "Variable": "account_spy_language", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Privilege": "dialplan,all", "Priority": "9", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "GotoIf", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "0?osvpi_account_spy,221,1", "Event": "Newexten", "Context": "osvpi_account_call_int"}, - {"Value": "1", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Value": "SUCCESS", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1355", "Application": "Set", "Extension": "ID730671", "content": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2", "AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=126680023,accountid,dutch,from,,0", "Event": "Newexten", "Context": "osvpi_route_phoneaccount"}, - {"Value": "126680023", "Variable": "__dst_account_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Value": "accountid", "Variable": "l_mangle_did", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Value": "dutch", "Variable": "l_mangle_cli", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Value": "from", "Variable": "l_cli_header", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Value": "", "Variable": "l_primary_pickupgroup", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Value": "0", "Variable": "app_account", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1355", "Application": "GotoIf", "Extension": "ID730671", "content": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2", "AppData": "0?vialer", "Event": "Newexten", "Context": "osvpi_route_phoneaccount"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1355", "Application": "Set", "Extension": "ID730671", "content": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2", "AppData": "_PICKUPMARK=", "Event": "Newexten", "Context": "osvpi_route_phoneaccount"}, - {"Value": "", "Variable": "_PICKUPMARK", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Privilege": "dialplan,all", "Priority": "4", "Uniqueid": "ua0-acc-1509639993.1355", "Application": "Set", "Extension": "ID730671", "content": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2", "AppData": "l_trunk=0", "Event": "Newexten", "Context": "osvpi_route_phoneaccount"}, - {"Value": "0", "Variable": "l_trunk", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Privilege": "dialplan,all", "Priority": "5", "Uniqueid": "ua0-acc-1509639993.1355", "Application": "Goto", "Extension": "ID730671", "content": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2", "AppData": "osvpi_route_account,ID730671,1", "Event": "Newexten", "Context": "osvpi_route_phoneaccount"}, - {"Value": "1", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Value": "SUCCESS", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Value": "interfaces", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Privilege": "dialplan,all", "Priority": "10", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Set", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "ARRAY(interfaces)=Local/ID730681@osvpi_route_phoneaccount", "Event": "Newexten", "Context": "osvpi_account_call_int"}, - {"Value": "Local/ID730681@osvpi_route_phoneaccount", "Variable": "interfaces", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Privilege": "dialplan,all", "Priority": "11", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "GotoIf", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "0?osvpi_handle_unallocated,221,1", "Event": "Newexten", "Context": "osvpi_account_call_int"}, - {"Privilege": "dialplan,all", "Priority": "12", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "Dial", "Extension": "221", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "Local/ID730681@osvpi_route_phoneaccount", "Event": "Newexten", "Context": "osvpi_account_call_int"}, - {"Value": "", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Value": "", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Value": "", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Value": "", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Value": "", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"ChannelState": "0", "content": "", "Event": "Newchannel", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;1", "CallerIDNum": "", "Context": "osvpi_route_phoneaccount", "ChannelStateDesc": "Down", "Privilege": "call,all", "Exten": "ID730681", "Uniqueid": "ua0-acc-1509639993.1356", "CallerIDName": "", "AccountCode": ""}, - {"ChannelState": "4", "content": "", "Event": "Newchannel", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "CallerIDNum": "", "Context": "osvpi_route_phoneaccount", "ChannelStateDesc": "Ring", "Privilege": "call,all", "Exten": "ID730681", "Uniqueid": "ua0-acc-1509639993.1357", "CallerIDName": "", "AccountCode": ""}, - {"Value": "ID730681@osvpi_route_phoneaccount", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1356", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;1"}, - {"Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Uniqueid": "ua0-acc-1509639993.1356", "Event": "NewCallerid", "content": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;1", "CallerIDName": "", "CallerIDNum": "221"}, - {"LocalOptimization": "Yes", "Privilege": "call,all", "content": "", "Uniqueid2": "ua0-acc-1509639993.1357", "Event": "LocalBridge", "Exten": "ID730681", "Channel1": "Local/ID730681@osvpi_route_phoneaccount-00000189;1", "Uniqueid1": "ua0-acc-1509639993.1356", "Channel2": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "Context": "osvpi_route_phoneaccount"}, - {"content": "", "Dialstring": "ID730681@osvpi_route_phoneaccount", "Event": "Dial", "Destination": "Local/ID730681@osvpi_route_phoneaccount-00000189;1", "Channel": "Local/221@osvpi_account-00000187;2", "CallerIDNum": "+31625339196", "DestUniqueID": "ua0-acc-1509639993.1356", "ConnectedLineName": "", "ConnectedLineNum": "+31853030903", "Privilege": "call,all", "SubEvent": "Begin", "CallerIDName": "", "UniqueID": "ua0-acc-1509639993.1353"}, - {"Value": "1", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Value": "SUCCESS", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Value": "proxy", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1355", "Application": "Set", "Extension": "ID730671", "content": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2", "AppData": "ARRAY(l_proxy)=195.35.115.203", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Value": "195.35.115.203", "Variable": "l_proxy", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1355", "Application": "Gosub", "Extension": "ID730671", "content": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2", "AppData": "osvpi_proc_mangle_number,accountid,1(126680023,220)", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Value": "126680023", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Value": "220", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Value": "2", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1355", "Application": "Set", "Extension": "accountid", "content": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2", "AppData": "MANGLED_EXTEN=126680023", "Event": "Newexten", "Context": "osvpi_proc_mangle_number"}, - {"Value": "126680023", "Variable": "MANGLED_EXTEN", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1355", "Application": "Return", "Extension": "accountid", "content": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2", "AppData": "", "Event": "Newexten", "Context": "osvpi_proc_mangle_number"}, - {"Value": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1355", "Application": "Set", "Extension": "ID730671", "content": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2", "AppData": "l_did=126680023", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Value": "126680023", "Variable": "l_did", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Privilege": "dialplan,all", "Priority": "4", "Uniqueid": "ua0-acc-1509639993.1355", "Application": "Gosub", "Extension": "ID730671", "content": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2", "AppData": "osvpi_proc_mangle_number,dutch,1(126680023,+31625339196)", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Value": "126680023", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Value": "+31625339196", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Value": "2", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1355", "Application": "GotoIf", "Extension": "dutch", "content": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2", "AppData": "0?fullzero,1", "Event": "Newexten", "Context": "osvpi_proc_mangle_number"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1355", "Application": "Set", "Extension": "dutch", "content": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2", "AppData": "MANGLED_EXTEN=0625339196", "Event": "Newexten", "Context": "osvpi_proc_mangle_number"}, - {"Value": "0625339196", "Variable": "MANGLED_EXTEN", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1355", "Application": "Return", "Extension": "dutch", "content": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2", "AppData": "", "Event": "Newexten", "Context": "osvpi_proc_mangle_number"}, - {"Value": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Privilege": "dialplan,all", "Priority": "5", "Uniqueid": "ua0-acc-1509639993.1355", "Application": "Set", "Extension": "ID730671", "content": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2", "AppData": "l_mangle_cli_hdr=from-dutch", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Value": "from-dutch", "Variable": "l_mangle_cli_hdr", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Privilege": "dialplan,all", "Priority": "6", "Uniqueid": "ua0-acc-1509639993.1355", "Application": "Set", "Extension": "ID730671", "content": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2", "AppData": "l_fromuser=", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Value": "", "Variable": "l_fromuser", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Privilege": "dialplan,all", "Priority": "7", "Uniqueid": "ua0-acc-1509639993.1355", "Application": "ExecIf", "Extension": "ID730671", "content": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2", "AppData": "1?Set(l_fromuser=0625339196)", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Value": "0625339196", "Variable": "l_fromuser", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Value": "1", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Value": "SUCCESS", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1357", "Application": "Set", "Extension": "ID730681", "content": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=126680024,accountid,dutch,from,,0", "Event": "Newexten", "Context": "osvpi_route_phoneaccount"}, - {"Value": "126680024", "Variable": "__dst_account_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Value": "accountid", "Variable": "l_mangle_did", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Value": "dutch", "Variable": "l_mangle_cli", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Value": "from", "Variable": "l_cli_header", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Value": "", "Variable": "l_primary_pickupgroup", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Value": "0", "Variable": "app_account", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1357", "Application": "GotoIf", "Extension": "ID730681", "content": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "AppData": "0?vialer", "Event": "Newexten", "Context": "osvpi_route_phoneaccount"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1357", "Application": "Set", "Extension": "ID730681", "content": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "AppData": "_PICKUPMARK=", "Event": "Newexten", "Context": "osvpi_route_phoneaccount"}, - {"Value": "", "Variable": "_PICKUPMARK", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Privilege": "dialplan,all", "Priority": "4", "Uniqueid": "ua0-acc-1509639993.1357", "Application": "Set", "Extension": "ID730681", "content": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "AppData": "l_trunk=0", "Event": "Newexten", "Context": "osvpi_route_phoneaccount"}, - {"Value": "0", "Variable": "l_trunk", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Privilege": "dialplan,all", "Priority": "5", "Uniqueid": "ua0-acc-1509639993.1357", "Application": "Goto", "Extension": "ID730681", "content": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "AppData": "osvpi_route_account,ID730681,1", "Event": "Newexten", "Context": "osvpi_route_phoneaccount"}, - {"Value": "1", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Value": "SUCCESS", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Value": "IF((SELECT 1 FROM baseaccount_account ba INNER JOIN userdestination_selecteduserdestination udsud ON udsud.phoneaccount_id = ba.id INNER JOIN userdestination_userdestination udud ON udud.id = udsud.userdestination_id INNER JOIN crm_cloudctiuser cccu O", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Privilege": "dialplan,all", "Priority": "8", "Uniqueid": "ua0-acc-1509639993.1355", "Application": "Set", "Extension": "ID730671", "content": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2", "AppData": "ARRAY(cloudcti)=0", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Value": "0", "Variable": "cloudcti", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Privilege": "dialplan,all", "Priority": "9", "Uniqueid": "ua0-acc-1509639993.1355", "Application": "GotoIf", "Extension": "ID730671", "content": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2", "AppData": "1?skipcloudcti", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Value": "1", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Value": "SUCCESS", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Value": "proxy", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1357", "Application": "Set", "Extension": "ID730681", "content": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "AppData": "ARRAY(l_proxy)=195.35.115.203", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Value": "195.35.115.203", "Variable": "l_proxy", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1357", "Application": "Gosub", "Extension": "ID730681", "content": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "AppData": "osvpi_proc_mangle_number,accountid,1(126680024,221)", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Value": "126680024", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Value": "221", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Value": "2", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1357", "Application": "Set", "Extension": "accountid", "content": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "AppData": "MANGLED_EXTEN=126680024", "Event": "Newexten", "Context": "osvpi_proc_mangle_number"}, - {"Value": "126680024", "Variable": "MANGLED_EXTEN", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1357", "Application": "Return", "Extension": "accountid", "content": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "AppData": "", "Event": "Newexten", "Context": "osvpi_proc_mangle_number"}, - {"Value": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1357", "Application": "Set", "Extension": "ID730681", "content": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "AppData": "l_did=126680024", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Value": "126680024", "Variable": "l_did", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Privilege": "dialplan,all", "Priority": "4", "Uniqueid": "ua0-acc-1509639993.1357", "Application": "Gosub", "Extension": "ID730681", "content": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "AppData": "osvpi_proc_mangle_number,dutch,1(126680024,+31625339196)", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Value": "126680024", "Variable": "LOCAL(ARG1)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Value": "+31625339196", "Variable": "LOCAL(ARG2)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Value": "2", "Variable": "LOCAL(ARGC)", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1357", "Application": "GotoIf", "Extension": "dutch", "content": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "AppData": "0?fullzero,1", "Event": "Newexten", "Context": "osvpi_proc_mangle_number"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1357", "Application": "Set", "Extension": "dutch", "content": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "AppData": "MANGLED_EXTEN=0625339196", "Event": "Newexten", "Context": "osvpi_proc_mangle_number"}, - {"Value": "0625339196", "Variable": "MANGLED_EXTEN", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1357", "Application": "Return", "Extension": "dutch", "content": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "AppData": "", "Event": "Newexten", "Context": "osvpi_proc_mangle_number"}, - {"Value": "", "Variable": "GOSUB_RETVAL", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Privilege": "dialplan,all", "Priority": "5", "Uniqueid": "ua0-acc-1509639993.1357", "Application": "Set", "Extension": "ID730681", "content": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "AppData": "l_mangle_cli_hdr=from-dutch", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Value": "from-dutch", "Variable": "l_mangle_cli_hdr", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Privilege": "dialplan,all", "Priority": "6", "Uniqueid": "ua0-acc-1509639993.1357", "Application": "Set", "Extension": "ID730681", "content": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "AppData": "l_fromuser=", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Value": "", "Variable": "l_fromuser", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Privilege": "dialplan,all", "Priority": "7", "Uniqueid": "ua0-acc-1509639993.1357", "Application": "ExecIf", "Extension": "ID730681", "content": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "AppData": "1?Set(l_fromuser=0625339196)", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Value": "0625339196", "Variable": "l_fromuser", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Value": "1", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Value": "SUCCESS", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Value": "GROUP_CONCAT(DISTINCT(cn.url) SEPARATOR ' '),internal_number,GROUP_CONCAT(DISTINCT(ud.internal_number) SEPARATOR ' ')", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Privilege": "dialplan,all", "Priority": "11", "Uniqueid": "ua0-acc-1509639993.1355", "Application": "Set", "Extension": "ID730671", "content": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2", "AppData": "ARRAY(webhooks,accountinternalnumber,userinternalnumbers)=,220,", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Value": "", "Variable": "webhooks", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Value": "220", "Variable": "accountinternalnumber", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Value": "", "Variable": "userinternalnumbers", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Privilege": "dialplan,all", "Priority": "13", "Uniqueid": "ua0-acc-1509639993.1355", "Application": "Goto", "Extension": "ID730671", "content": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2", "AppData": "osvpi_proc_proxy_out,220,1", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1355", "Application": "SIPAddHeader", "Extension": "220", "content": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2", "AppData": "X-Accountcode: 126680023", "Event": "Newexten", "Context": "osvpi_proc_proxy_out"}, - {"Value": "X-Accountcode: 126680023", "Variable": "__SIPADDHEADER04", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1355", "Application": "SIPAddHeader", "Extension": "220", "content": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2", "AppData": "X-Insecure-Protection: geheim", "Event": "Newexten", "Context": "osvpi_proc_proxy_out"}, - {"Value": "X-Insecure-Protection: geheim", "Variable": "__SIPADDHEADER05", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1355", "Application": "SIPAddHeader", "Extension": "220", "content": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2", "AppData": "X-Mangle-Cli: from-dutch", "Event": "Newexten", "Context": "osvpi_proc_proxy_out"}, - {"Value": "X-Mangle-Cli: from-dutch", "Variable": "__SIPADDHEADER06", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Privilege": "dialplan,all", "Priority": "4", "Uniqueid": "ua0-acc-1509639993.1355", "Application": "Set", "Extension": "220", "content": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2", "AppData": "_dial_options_callaccept=", "Event": "Newexten", "Context": "osvpi_proc_proxy_out"}, - {"Value": "", "Variable": "_dial_options_callaccept", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Privilege": "dialplan,all", "Priority": "5", "Uniqueid": "ua0-acc-1509639993.1355", "Application": "Set", "Extension": "220", "content": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2", "AppData": "_dial_options_callnotify=", "Event": "Newexten", "Context": "osvpi_proc_proxy_out"}, - {"Value": "", "Variable": "_dial_options_callnotify", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Privilege": "dialplan,all", "Priority": "6", "Uniqueid": "ua0-acc-1509639993.1355", "Application": "ExecIf", "Extension": "220", "content": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2", "AppData": "0?Set(l_proxy=195.35.115.203)", "Event": "Newexten", "Context": "osvpi_proc_proxy_out"}, - {"Privilege": "dialplan,all", "Priority": "7", "Uniqueid": "ua0-acc-1509639993.1355", "Application": "Set", "Extension": "220", "content": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2", "AppData": "l_extra_options=", "Event": "Newexten", "Context": "osvpi_proc_proxy_out"}, - {"Value": "", "Variable": "l_extra_options", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Privilege": "dialplan,all", "Priority": "8", "Uniqueid": "ua0-acc-1509639993.1355", "Application": "Dial", "Extension": "220", "content": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2", "AppData": "SIP/126680023/126680023/195.35.115.203!!0625339196,,", "Event": "Newexten", "Context": "osvpi_proc_proxy_out"}, - {"Value": "", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Value": "", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Value": "", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Value": "", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Value": "", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Value": "1", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Value": "SUCCESS", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Value": "IF((SELECT 1 FROM baseaccount_account ba INNER JOIN userdestination_selecteduserdestination udsud ON udsud.phoneaccount_id = ba.id INNER JOIN userdestination_userdestination udud ON udud.id = udsud.userdestination_id INNER JOIN crm_cloudctiuser cccu O", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Privilege": "dialplan,all", "Priority": "8", "Uniqueid": "ua0-acc-1509639993.1357", "Application": "Set", "Extension": "ID730681", "content": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "AppData": "ARRAY(cloudcti)=0", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Value": "0", "Variable": "cloudcti", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Privilege": "dialplan,all", "Priority": "9", "Uniqueid": "ua0-acc-1509639993.1357", "Application": "GotoIf", "Extension": "ID730681", "content": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "AppData": "1?skipcloudcti", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Value": "1", "Variable": "ODBCROWS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Value": "SUCCESS", "Variable": "ODBCSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Value": "GROUP_CONCAT(DISTINCT(cn.url) SEPARATOR ' '),internal_number,GROUP_CONCAT(DISTINCT(ud.internal_number) SEPARATOR ' ')", "Variable": "~ODBCFIELDS~", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Privilege": "dialplan,all", "Priority": "11", "Uniqueid": "ua0-acc-1509639993.1357", "Application": "Set", "Extension": "ID730681", "content": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "AppData": "ARRAY(webhooks,accountinternalnumber,userinternalnumbers)=,221,", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Value": "", "Variable": "webhooks", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Value": "221", "Variable": "accountinternalnumber", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Value": "", "Variable": "userinternalnumbers", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Privilege": "dialplan,all", "Priority": "13", "Uniqueid": "ua0-acc-1509639993.1357", "Application": "Goto", "Extension": "ID730681", "content": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "AppData": "osvpi_proc_proxy_out,221,1", "Event": "Newexten", "Context": "osvpi_route_account"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1357", "Application": "SIPAddHeader", "Extension": "221", "content": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "AppData": "X-Accountcode: 126680024", "Event": "Newexten", "Context": "osvpi_proc_proxy_out"}, - {"Value": "X-Accountcode: 126680024", "Variable": "__SIPADDHEADER04", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1357", "Application": "SIPAddHeader", "Extension": "221", "content": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "AppData": "X-Insecure-Protection: geheim", "Event": "Newexten", "Context": "osvpi_proc_proxy_out"}, - {"Value": "X-Insecure-Protection: geheim", "Variable": "__SIPADDHEADER05", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1357", "Application": "SIPAddHeader", "Extension": "221", "content": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "AppData": "X-Mangle-Cli: from-dutch", "Event": "Newexten", "Context": "osvpi_proc_proxy_out"}, - {"Value": "X-Mangle-Cli: from-dutch", "Variable": "__SIPADDHEADER06", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Privilege": "dialplan,all", "Priority": "4", "Uniqueid": "ua0-acc-1509639993.1357", "Application": "Set", "Extension": "221", "content": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "AppData": "_dial_options_callaccept=", "Event": "Newexten", "Context": "osvpi_proc_proxy_out"}, - {"Value": "", "Variable": "_dial_options_callaccept", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Privilege": "dialplan,all", "Priority": "5", "Uniqueid": "ua0-acc-1509639993.1357", "Application": "Set", "Extension": "221", "content": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "AppData": "_dial_options_callnotify=", "Event": "Newexten", "Context": "osvpi_proc_proxy_out"}, - {"Value": "", "Variable": "_dial_options_callnotify", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Privilege": "dialplan,all", "Priority": "6", "Uniqueid": "ua0-acc-1509639993.1357", "Application": "ExecIf", "Extension": "221", "content": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "AppData": "0?Set(l_proxy=195.35.115.203)", "Event": "Newexten", "Context": "osvpi_proc_proxy_out"}, - {"Privilege": "dialplan,all", "Priority": "7", "Uniqueid": "ua0-acc-1509639993.1357", "Application": "Set", "Extension": "221", "content": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "AppData": "l_extra_options=", "Event": "Newexten", "Context": "osvpi_proc_proxy_out"}, - {"Value": "", "Variable": "l_extra_options", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Privilege": "dialplan,all", "Priority": "8", "Uniqueid": "ua0-acc-1509639993.1357", "Application": "Dial", "Extension": "221", "content": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "AppData": "SIP/126680024/126680024/195.35.115.203!!0625339196,,", "Event": "Newexten", "Context": "osvpi_proc_proxy_out"}, - {"Value": "", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Value": "", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Value": "", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Value": "", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Value": "", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"ChannelState": "0", "content": "", "Event": "Newchannel", "Channel": "SIP/126680023-0000023a", "CallerIDNum": "", "Context": "osvpi_account", "ChannelStateDesc": "Down", "Privilege": "call,all", "Exten": "", "Uniqueid": "ua0-acc-1509639993.1358", "CallerIDName": "", "AccountCode": "126680023"}, - {"Value": "29843b6347779dd60880f7134b48e1ed@acceptatie.voipgrid.nl", "Variable": "SIPCALLID", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1358", "Event": "VarSet", "Channel": "SIP/126680023-0000023a"}, - {"Value": "12668", "Variable": "__client_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1358", "Event": "VarSet", "Channel": "SIP/126680023-0000023a"}, - {"Value": "126680023", "Variable": "__account_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1358", "Event": "VarSet", "Channel": "SIP/126680023-0000023a"}, - {"Value": "no", "Variable": "__record_call", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1358", "Event": "VarSet", "Channel": "SIP/126680023-0000023a"}, - {"Value": "31", "Variable": "__intprefix", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1358", "Event": "VarSet", "Channel": "SIP/126680023-0000023a"}, - {"Value": "4", "Variable": "__limit_account", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1358", "Event": "VarSet", "Channel": "SIP/126680023-0000023a"}, - {"Value": "0", "Variable": "__limit_client", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1358", "Event": "VarSet", "Channel": "SIP/126680023-0000023a"}, - {"Value": "1", "Variable": "__hide_ext_cliname", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1358", "Event": "VarSet", "Channel": "SIP/126680023-0000023a"}, - {"Value": "osvpi_account_transfer", "Variable": "__TRANSFER_CONTEXT", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1358", "Event": "VarSet", "Channel": "SIP/126680023-0000023a"}, - {"Value": "126680023/126680023/195.35.115.203!!0625339196", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1358", "Event": "VarSet", "Channel": "SIP/126680023-0000023a"}, - {"Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Uniqueid": "ua0-acc-1509639993.1358", "Event": "NewCallerid", "content": "", "Channel": "SIP/126680023-0000023a", "CallerIDName": "", "CallerIDNum": "220"}, - {"content": "", "Dialstring": "126680023/126680023/195.35.115.203!!0625339196", "Event": "Dial", "Destination": "SIP/126680023-0000023a", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2", "CallerIDNum": "+31625339196", "DestUniqueID": "ua0-acc-1509639993.1358", "ConnectedLineName": "", "ConnectedLineNum": "220", "Privilege": "call,all", "SubEvent": "Begin", "CallerIDName": "", "UniqueID": "ua0-acc-1509639993.1355"}, - {"ChannelState": "0", "content": "", "Event": "Newchannel", "Channel": "SIP/126680024-0000023b", "CallerIDNum": "", "Context": "osvpi_account", "ChannelStateDesc": "Down", "Privilege": "call,all", "Exten": "", "Uniqueid": "ua0-acc-1509639993.1359", "CallerIDName": "", "AccountCode": "126680024"}, - {"Value": "68c648ca3ab2a8ee6ce9ff5f18795c1a@acceptatie.voipgrid.nl", "Variable": "SIPCALLID", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1359", "Event": "VarSet", "Channel": "SIP/126680024-0000023b"}, - {"Value": "12668", "Variable": "__client_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1359", "Event": "VarSet", "Channel": "SIP/126680024-0000023b"}, - {"Value": "126680024", "Variable": "__account_id", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1359", "Event": "VarSet", "Channel": "SIP/126680024-0000023b"}, - {"Value": "no", "Variable": "__record_call", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1359", "Event": "VarSet", "Channel": "SIP/126680024-0000023b"}, - {"Value": "31", "Variable": "__intprefix", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1359", "Event": "VarSet", "Channel": "SIP/126680024-0000023b"}, - {"Value": "4", "Variable": "__limit_account", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1359", "Event": "VarSet", "Channel": "SIP/126680024-0000023b"}, - {"Value": "0", "Variable": "__limit_client", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1359", "Event": "VarSet", "Channel": "SIP/126680024-0000023b"}, - {"Value": "1", "Variable": "__hide_ext_cliname", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1359", "Event": "VarSet", "Channel": "SIP/126680024-0000023b"}, - {"Value": "osvpi_account_transfer", "Variable": "__TRANSFER_CONTEXT", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1359", "Event": "VarSet", "Channel": "SIP/126680024-0000023b"}, - {"Value": "126680024/126680024/195.35.115.203!!0625339196", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1359", "Event": "VarSet", "Channel": "SIP/126680024-0000023b"}, - {"Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Uniqueid": "ua0-acc-1509639993.1359", "Event": "NewCallerid", "content": "", "Channel": "SIP/126680024-0000023b", "CallerIDName": "", "CallerIDNum": "221"}, - {"content": "", "Dialstring": "126680024/126680024/195.35.115.203!!0625339196", "Event": "Dial", "Destination": "SIP/126680024-0000023b", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "CallerIDNum": "+31625339196", "DestUniqueID": "ua0-acc-1509639993.1359", "ConnectedLineName": "", "ConnectedLineNum": "221", "Privilege": "call,all", "SubEvent": "Begin", "CallerIDName": "", "UniqueID": "ua0-acc-1509639993.1357"}, - {"ChannelStateDesc": "Ringing", "ConnectedLineNum": "+31625339196", "Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1359", "Event": "Newstate", "Channel": "SIP/126680024-0000023b", "CallerIDName": "", "ChannelState": "5", "CallerIDNum": "221", "ConnectedLineName": ""}, - {"ChannelStateDesc": "Ringing", "ConnectedLineNum": "+31625339196", "Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1356", "Event": "Newstate", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;1", "CallerIDName": "", "ChannelState": "5", "CallerIDNum": "221", "ConnectedLineName": ""}, - {"ChannelStateDesc": "Ringing", "ConnectedLineNum": "+31625339196", "Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1352", "Event": "Newstate", "Channel": "Local/221@osvpi_account-00000187;1", "CallerIDName": "", "ChannelState": "5", "CallerIDNum": "+31853030903", "ConnectedLineName": ""}, - {"ChannelStateDesc": "Ringing", "ConnectedLineNum": "+31625339196", "Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1344", "Event": "Newstate", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;1", "CallerIDName": "", "ChannelState": "5", "CallerIDNum": "+31853030903", "ConnectedLineName": ""}, - {"ChannelStateDesc": "Ringing", "ConnectedLineNum": "+31625339196", "Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1358", "Event": "Newstate", "Channel": "SIP/126680023-0000023a", "CallerIDName": "", "ChannelState": "5", "CallerIDNum": "220", "ConnectedLineName": ""}, - {"ChannelStateDesc": "Ringing", "ConnectedLineNum": "+31625339196", "Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1354", "Event": "Newstate", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;1", "CallerIDName": "", "ChannelState": "5", "CallerIDNum": "220", "ConnectedLineName": ""}, - {"ChannelStateDesc": "Ringing", "ConnectedLineNum": "+31625339196", "Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1350", "Event": "Newstate", "Channel": "Local/220@osvpi_account-00000186;1", "CallerIDName": "", "ChannelState": "5", "CallerIDNum": "+31853030903", "ConnectedLineName": ""}, - {"ChannelStateDesc": "Ringing", "ConnectedLineNum": "+31625339196", "Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1346", "Event": "Newstate", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;1", "CallerIDName": "", "ChannelState": "5", "CallerIDNum": "+31853030903", "ConnectedLineName": ""}, - {"ChannelStateDesc": "Up", "ConnectedLineNum": "+31625339196", "Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1359", "Event": "Newstate", "Channel": "SIP/126680024-0000023b", "CallerIDName": "", "ChannelState": "6", "CallerIDNum": "221", "ConnectedLineName": ""}, - {"Value": "ANSWER", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Value": "SIP/126680024-0000023b", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Value": "126680024/126680024/195.35.115.203!!0625339196", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Value": "SIP/126680024-0000023b", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Value": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1359", "Event": "VarSet", "Channel": "SIP/126680024-0000023b"}, - {"ChannelStateDesc": "Up", "ConnectedLineNum": "221", "Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "Newstate", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "CallerIDName": "", "ChannelState": "6", "CallerIDNum": "+31625339196", "ConnectedLineName": ""}, - {"Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1359", "Event": "NewAccountCode", "OldAccountCode": "126680005", "Channel": "SIP/126680024-0000023b", "AccountCode": "126680005"}, - {"CallerID2": "221", "Privilege": "call,all", "CallerID1": "+31625339196", "Uniqueid2": "ua0-acc-1509639993.1359", "Event": "Bridge", "content": "", "Channel1": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "Bridgetype": "core", "Uniqueid1": "ua0-acc-1509639993.1357", "Channel2": "SIP/126680024-0000023b", "Bridgestate": "Link"}, - {"Value": "SIP/126680024-0000023b", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Value": "68c648ca3ab2a8ee6ce9ff5f18795c1a@acceptatie.voipgrid.nl", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Value": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1359", "Event": "VarSet", "Channel": "SIP/126680024-0000023b"}, - {"Value": "SIP/126680024-0000023b", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Value": "68c648ca3ab2a8ee6ce9ff5f18795c1a@acceptatie.voipgrid.nl", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Value": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1359", "Event": "VarSet", "Channel": "SIP/126680024-0000023b"}, - {"ChannelStateDesc": "Up", "ConnectedLineNum": "+31625339196", "Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1356", "Event": "Newstate", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;1", "CallerIDName": "", "ChannelState": "6", "CallerIDNum": "221", "ConnectedLineName": ""}, - {"Value": "ANSWER", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Value": "Local/ID730681@osvpi_route_phoneaccount-00000189;1", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Value": "ID730681@osvpi_route_phoneaccount", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Value": "Local/ID730681@osvpi_route_phoneaccount-00000189;1", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Value": "Local/221@osvpi_account-00000187;2", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1356", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;1"}, - {"ChannelStateDesc": "Up", "ConnectedLineNum": "+31853030903", "Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "Newstate", "Channel": "Local/221@osvpi_account-00000187;2", "CallerIDName": "", "ChannelState": "6", "CallerIDNum": "+31625339196", "ConnectedLineName": ""}, - {"Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1356", "Event": "NewAccountCode", "OldAccountCode": "126680005", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;1", "AccountCode": "126680005"}, - {"CallerID2": "221", "Privilege": "call,all", "CallerID1": "+31625339196", "Uniqueid2": "ua0-acc-1509639993.1356", "Event": "Bridge", "content": "", "Channel1": "Local/221@osvpi_account-00000187;2", "Bridgetype": "core", "Uniqueid1": "ua0-acc-1509639993.1353", "Channel2": "Local/ID730681@osvpi_route_phoneaccount-00000189;1", "Bridgestate": "Link"}, - {"Value": "Local/ID730681@osvpi_route_phoneaccount-00000189;1", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Value": "Local/221@osvpi_account-00000187;2", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1356", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;1"}, - {"Value": "Local/ID730681@osvpi_route_phoneaccount-00000189;1", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Value": "Local/221@osvpi_account-00000187;2", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1356", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;1"}, - {"ChannelStateDesc": "Up", "ConnectedLineNum": "+31625339196", "Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1352", "Event": "Newstate", "Channel": "Local/221@osvpi_account-00000187;1", "CallerIDName": "", "ChannelState": "6", "CallerIDNum": "+31853030903", "ConnectedLineName": ""}, - {"Value": "ANSWER", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Value": "Local/221@osvpi_account-00000187;1", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Value": "Local/221@osvpi_account-00000187;1", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Value": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1352", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;1"}, - {"ChannelStateDesc": "Up", "ConnectedLineNum": "+31853030903", "Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "Newstate", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "CallerIDName": "", "ChannelState": "6", "CallerIDNum": "+31625339196", "ConnectedLineName": ""}, - {"Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1352", "Event": "NewAccountCode", "OldAccountCode": "12668", "Channel": "Local/221@osvpi_account-00000187;1", "AccountCode": "12668"}, - {"CallerID2": "+31853030903", "Privilege": "call,all", "CallerID1": "+31625339196", "Uniqueid2": "ua0-acc-1509639993.1352", "Event": "Bridge", "content": "", "Channel1": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "Bridgetype": "core", "Uniqueid1": "ua0-acc-1509639993.1345", "Channel2": "Local/221@osvpi_account-00000187;1", "Bridgestate": "Link"}, - {"Value": "Local/221@osvpi_account-00000187;1", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Value": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1352", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;1"}, - {"Value": "Local/221@osvpi_account-00000187;1", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Value": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1352", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;1"}, - {"ChannelStateDesc": "Up", "ConnectedLineNum": "+31625339196", "Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1344", "Event": "Newstate", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;1", "CallerIDName": "", "ChannelState": "6", "CallerIDNum": "+31853030903", "ConnectedLineName": ""}, - {"Value": "ANSWER", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2", "Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "HangupRequest"}, - {"Cause-txt": "Answered elsewhere", "content": "", "Event": "Hangup", "Cause": "26", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;1", "CallerIDNum": "+31853030903", "ConnectedLineName": "", "ConnectedLineNum": "+31625339196", "Privilege": "call,all", "Uniqueid": "ua0-acc-1509639993.1346", "CallerIDName": "", "AccountCode": "12668"}, - {"Value": "Local/ID730651@osvpi_route_phoneaccount-00000184;1", "Variable": "DIALEDPEERNAME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "ID730651@osvpi_route_phoneaccount", "Variable": "DIALEDPEERNUMBER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "Local/ID730651@osvpi_route_phoneaccount-00000184;1", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "SIP/voipgrid-siproute-dev-00000237", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1344", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;1"}, - {"ChannelStateDesc": "Up", "ConnectedLineNum": "", "Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "Newstate", "Channel": "SIP/voipgrid-siproute-dev-00000237", "CallerIDName": "", "ChannelState": "6", "CallerIDNum": "+31625339196", "ConnectedLineName": ""}, - {"Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1344", "Event": "NewAccountCode", "OldAccountCode": "12668", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;1", "AccountCode": "12668"}, - {"CallerID2": "+31853030903", "Privilege": "call,all", "CallerID1": "+31625339196", "Uniqueid2": "ua0-acc-1509639993.1344", "Event": "Bridge", "content": "", "Channel1": "SIP/voipgrid-siproute-dev-00000237", "Bridgetype": "core", "Uniqueid1": "ua0-acc-1509639993.1343", "Channel2": "Local/ID730651@osvpi_route_phoneaccount-00000184;1", "Bridgestate": "Link"}, - {"Value": "Local/ID730651@osvpi_route_phoneaccount-00000184;1", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "SIP/voipgrid-siproute-dev-00000237", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1344", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;1"}, - {"Value": "~{}~7a74ef9244ae387a35d894f22ebc07ac@voipgrid.nl", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1344", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;1"}, - {"Value": "Local/ID730651@osvpi_route_phoneaccount-00000184;1", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "SIP/voipgrid-siproute-dev-00000237", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1344", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;1"}, - {"Value": "~{}~7a74ef9244ae387a35d894f22ebc07ac@voipgrid.nl", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1344", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;1"}, - {"Channel": "Local/220@osvpi_account-00000186;2", "Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "HangupRequest"}, - {"Cause-txt": "Answered elsewhere", "content": "", "Event": "Hangup", "Cause": "26", "Channel": "Local/220@osvpi_account-00000186;1", "CallerIDNum": "+31853030903", "ConnectedLineName": "", "ConnectedLineNum": "+31625339196", "Privilege": "call,all", "Uniqueid": "ua0-acc-1509639993.1350", "CallerIDName": "", "AccountCode": "12668"}, - {"Value": "CANCEL", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "VarSet", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2"}, - {"Privilege": "call,all", "content": "", "SubEvent": "End", "Event": "Dial", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2", "DialStatus": "CANCEL", "UniqueID": "ua0-acc-1509639993.1347"}, - {"Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1347", "Event": "SoftHangupRequest", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2", "Cause": "16"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1347", "Application": "GotoIf", "Extension": "onhangup", "content": "", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2", "AppData": "1?nosip", "Event": "Newexten", "Context": "handlers"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1347", "Application": "GosubIf", "Extension": "onhangup", "content": "", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2", "AppData": "0?osvpi_proc_httptouch,s,1()", "Event": "Newexten", "Context": "handlers"}, - {"Cause-txt": "Answered elsewhere", "content": "", "Event": "Hangup", "Cause": "26", "Channel": "Local/ID730661@osvpi_route_phoneaccount-00000185;2", "CallerIDNum": "+31625339196", "ConnectedLineName": "", "ConnectedLineNum": "+31853030903", "Privilege": "call,all", "Uniqueid": "ua0-acc-1509639993.1347", "CallerIDName": "", "AccountCode": "12668"}, - {"Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2", "Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "HangupRequest"}, - {"Cause-txt": "Answered elsewhere", "content": "", "Event": "Hangup", "Cause": "26", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;1", "CallerIDNum": "220", "ConnectedLineName": "", "ConnectedLineNum": "+31625339196", "Privilege": "call,all", "Uniqueid": "ua0-acc-1509639993.1354", "CallerIDName": "", "AccountCode": "126680010"}, - {"Value": "CANCEL", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "VarSet", "Channel": "Local/220@osvpi_account-00000186;2"}, - {"Privilege": "call,all", "content": "", "SubEvent": "End", "Event": "Dial", "Channel": "Local/220@osvpi_account-00000186;2", "DialStatus": "CANCEL", "UniqueID": "ua0-acc-1509639993.1351"}, - {"Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1351", "Event": "SoftHangupRequest", "Channel": "Local/220@osvpi_account-00000186;2", "Cause": "16"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "GotoIf", "Extension": "onhangup", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "1?nosip", "Event": "Newexten", "Context": "handlers"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1351", "Application": "GosubIf", "Extension": "onhangup", "content": "", "Channel": "Local/220@osvpi_account-00000186;2", "AppData": "0?osvpi_proc_httptouch,s,1()", "Event": "Newexten", "Context": "handlers"}, - {"Cause-txt": "Answered elsewhere", "content": "", "Event": "Hangup", "Cause": "26", "Channel": "Local/220@osvpi_account-00000186;2", "CallerIDNum": "+31625339196", "ConnectedLineName": "", "ConnectedLineNum": "+31853030903", "Privilege": "call,all", "Uniqueid": "ua0-acc-1509639993.1351", "CallerIDName": "", "AccountCode": "126680010"}, - {"Cause-txt": "Answered elsewhere", "content": "", "Event": "Hangup", "Cause": "26", "Channel": "SIP/126680023-0000023a", "CallerIDNum": "220", "ConnectedLineName": "", "ConnectedLineNum": "+31625339196", "Privilege": "call,all", "Uniqueid": "ua0-acc-1509639993.1358", "CallerIDName": "", "AccountCode": "126680010"}, - {"Value": "CANCEL", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "VarSet", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2"}, - {"Privilege": "call,all", "content": "", "SubEvent": "End", "Event": "Dial", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2", "DialStatus": "CANCEL", "UniqueID": "ua0-acc-1509639993.1355"}, - {"Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1355", "Event": "SoftHangupRequest", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2", "Cause": "16"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1355", "Application": "GotoIf", "Extension": "onhangup", "content": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2", "AppData": "1?nosip", "Event": "Newexten", "Context": "handlers"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1355", "Application": "GosubIf", "Extension": "onhangup", "content": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2", "AppData": "0?osvpi_proc_httptouch,s,1()", "Event": "Newexten", "Context": "handlers"}, - {"Cause-txt": "Answered elsewhere", "content": "", "Event": "Hangup", "Cause": "26", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000188;2", "CallerIDNum": "+31625339196", "ConnectedLineName": "", "ConnectedLineNum": "220", "Privilege": "call,all", "Uniqueid": "ua0-acc-1509639993.1355", "CallerIDName": "", "AccountCode": "126680010"}, - {"CloneState": "Up", "Privilege": "call,all", "content": "", "Event": "Masquerade", "OriginalState": "Up", "Original": "Local/ID730681@osvpi_route_phoneaccount-00000189;1", "Clone": "SIP/126680024-0000023b"}, - {"Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1359", "Newname": "SIP/126680024-0000023b", "Event": "Rename", "Channel": "SIP/126680024-0000023b"}, - {"Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1356", "Newname": "SIP/126680024-0000023b", "Event": "Rename", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;1"}, - {"Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1359", "Newname": "Local/ID730681@osvpi_route_phoneaccount-00000189;1", "Event": "Rename", "Channel": "SIP/126680024-0000023b"}, - {"Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Uniqueid": "ua0-acc-1509639993.1356", "Event": "NewCallerid", "content": "", "Channel": "SIP/126680024-0000023b", "CallerIDName": "", "CallerIDNum": "221"}, - {"CallerID2": "221", "Privilege": "call,all", "CallerID1": "+31625339196", "Uniqueid2": "ua0-acc-1509639993.1359", "Event": "Bridge", "content": "", "Channel1": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "Bridgetype": "core", "Uniqueid1": "ua0-acc-1509639993.1357", "Channel2": "Local/ID730681@osvpi_route_phoneaccount-00000189;1", "Bridgestate": "Unlink"}, - {"Value": "1", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Value": "8", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Value": "SIP/126680024-0000023b", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Value": "68c648ca3ab2a8ee6ce9ff5f18795c1a@acceptatie.voipgrid.nl", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Value": "Local/221@osvpi_account-00000187;2", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1356", "Event": "VarSet", "Channel": "SIP/126680024-0000023b"}, - {"Value": "SIP/126680024-0000023b", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Value": "68c648ca3ab2a8ee6ce9ff5f18795c1a@acceptatie.voipgrid.nl", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Value": "Local/221@osvpi_account-00000187;2", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1356", "Event": "VarSet", "Channel": "SIP/126680024-0000023b"}, - {"Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "HangupRequest"}, - {"Cause-txt": "Normal Clearing", "content": "", "Event": "Hangup", "Cause": "16", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;1", "CallerIDNum": "221", "ConnectedLineName": "", "ConnectedLineNum": "+31625339196", "Privilege": "call,all", "Uniqueid": "ua0-acc-1509639993.1359", "CallerIDName": "", "AccountCode": "126680005"}, - {"CloneState": "Up", "Privilege": "call,all", "content": "", "Event": "Masquerade", "OriginalState": "Up", "Original": "Local/221@osvpi_account-00000187;1", "Clone": "SIP/126680024-0000023b"}, - {"Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1356", "Newname": "SIP/126680024-0000023b", "Event": "Rename", "Channel": "SIP/126680024-0000023b"}, - {"Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1352", "Newname": "SIP/126680024-0000023b", "Event": "Rename", "Channel": "Local/221@osvpi_account-00000187;1"}, - {"Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1356", "Newname": "Local/221@osvpi_account-00000187;1", "Event": "Rename", "Channel": "SIP/126680024-0000023b"}, - {"Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Uniqueid": "ua0-acc-1509639993.1352", "Event": "NewCallerid", "content": "", "Channel": "SIP/126680024-0000023b", "CallerIDName": "", "CallerIDNum": "+31853030903"}, - {"CallerID2": "221", "Privilege": "call,all", "CallerID1": "+31625339196", "Uniqueid2": "ua0-acc-1509639993.1356", "Event": "Bridge", "content": "", "Channel1": "Local/221@osvpi_account-00000187;2", "Bridgetype": "core", "Uniqueid1": "ua0-acc-1509639993.1353", "Channel2": "Local/221@osvpi_account-00000187;1", "Bridgestate": "Unlink"}, - {"Value": "8", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Value": "SIP/126680024-0000023b", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Value": "68c648ca3ab2a8ee6ce9ff5f18795c1a@acceptatie.voipgrid.nl", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Value": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1352", "Event": "VarSet", "Channel": "SIP/126680024-0000023b"}, - {"Value": "SIP/126680024-0000023b", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Value": "68c648ca3ab2a8ee6ce9ff5f18795c1a@acceptatie.voipgrid.nl", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Value": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1352", "Event": "VarSet", "Channel": "SIP/126680024-0000023b"}, - {"Value": "ANSWER", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "VarSet", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2"}, - {"Privilege": "call,all", "content": "", "SubEvent": "End", "Event": "Dial", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "DialStatus": "ANSWER", "UniqueID": "ua0-acc-1509639993.1357"}, - {"Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1357", "Event": "SoftHangupRequest", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "Cause": "16"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1357", "Application": "GotoIf", "Extension": "onhangup", "content": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "AppData": "1?nosip", "Event": "Newexten", "Context": "handlers"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1357", "Application": "GosubIf", "Extension": "onhangup", "content": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "AppData": "0?osvpi_proc_httptouch,s,1()", "Event": "Newexten", "Context": "handlers"}, - {"Cause-txt": "Normal Clearing", "content": "", "Event": "Hangup", "Cause": "16", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000189;2", "CallerIDNum": "+31625339196", "ConnectedLineName": "", "ConnectedLineNum": "221", "Privilege": "call,all", "Uniqueid": "ua0-acc-1509639993.1357", "CallerIDName": "", "AccountCode": "126680005"}, - {"Channel": "Local/221@osvpi_account-00000187;2", "Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "HangupRequest"}, - {"Cause-txt": "Normal Clearing", "content": "", "Event": "Hangup", "Cause": "16", "Channel": "Local/221@osvpi_account-00000187;1", "CallerIDNum": "221", "ConnectedLineName": "", "ConnectedLineNum": "+31625339196", "Privilege": "call,all", "Uniqueid": "ua0-acc-1509639993.1356", "CallerIDName": "", "AccountCode": "126680005"}, - {"Value": "ANSWER", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "VarSet", "Channel": "Local/221@osvpi_account-00000187;2"}, - {"Privilege": "call,all", "content": "", "SubEvent": "End", "Event": "Dial", "Channel": "Local/221@osvpi_account-00000187;2", "DialStatus": "ANSWER", "UniqueID": "ua0-acc-1509639993.1353"}, - {"Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1353", "Event": "SoftHangupRequest", "Channel": "Local/221@osvpi_account-00000187;2", "Cause": "16"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "GotoIf", "Extension": "onhangup", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "1?nosip", "Event": "Newexten", "Context": "handlers"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1353", "Application": "GosubIf", "Extension": "onhangup", "content": "", "Channel": "Local/221@osvpi_account-00000187;2", "AppData": "0?osvpi_proc_httptouch,s,1()", "Event": "Newexten", "Context": "handlers"}, - {"Cause-txt": "Normal Clearing", "content": "", "Event": "Hangup", "Cause": "16", "Channel": "Local/221@osvpi_account-00000187;2", "CallerIDNum": "+31625339196", "ConnectedLineName": "", "ConnectedLineNum": "+31853030903", "Privilege": "call,all", "Uniqueid": "ua0-acc-1509639993.1353", "CallerIDName": "", "AccountCode": "126680005"}, - {"CloneState": "Up", "Privilege": "call,all", "content": "", "Event": "Masquerade", "OriginalState": "Up", "Original": "Local/ID730651@osvpi_route_phoneaccount-00000184;1", "Clone": "SIP/126680024-0000023b"}, - {"Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1352", "Newname": "SIP/126680024-0000023b", "Event": "Rename", "Channel": "SIP/126680024-0000023b"}, - {"Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1344", "Newname": "SIP/126680024-0000023b", "Event": "Rename", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;1"}, - {"Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1352", "Newname": "Local/ID730651@osvpi_route_phoneaccount-00000184;1", "Event": "Rename", "Channel": "SIP/126680024-0000023b"}, - {"Privilege": "call,all", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Uniqueid": "ua0-acc-1509639993.1344", "Event": "NewCallerid", "content": "", "Channel": "SIP/126680024-0000023b", "CallerIDName": "", "CallerIDNum": "+31853030903"}, - {"CallerID2": "+31853030903", "Privilege": "call,all", "CallerID1": "+31625339196", "Uniqueid2": "ua0-acc-1509639993.1352", "Event": "Bridge", "content": "", "Channel1": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "Bridgetype": "core", "Uniqueid1": "ua0-acc-1509639993.1345", "Channel2": "Local/ID730651@osvpi_route_phoneaccount-00000184;1", "Bridgestate": "Unlink"}, - {"Value": "1", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Value": "8", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Value": "SIP/126680024-0000023b", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "68c648ca3ab2a8ee6ce9ff5f18795c1a@acceptatie.voipgrid.nl", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "SIP/voipgrid-siproute-dev-00000237", "Variable": "BRIDGEPEER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1344", "Event": "VarSet", "Channel": "SIP/126680024-0000023b"}, - {"Value": "~{}~7a74ef9244ae387a35d894f22ebc07ac@voipgrid.nl", "Variable": "BRIDGEPVTCALLID", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1344", "Event": "VarSet", "Channel": "SIP/126680024-0000023b"}, - {"Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "HangupRequest"}, - {"Cause-txt": "Normal Clearing", "content": "", "Event": "Hangup", "Cause": "16", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;1", "CallerIDNum": "+31853030903", "ConnectedLineName": "", "ConnectedLineNum": "+31625339196", "Privilege": "call,all", "Uniqueid": "ua0-acc-1509639993.1352", "CallerIDName": "", "AccountCode": "126680005"}, - {"Value": "ANSWER", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "VarSet", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2"}, - {"Privilege": "call,all", "content": "", "SubEvent": "End", "Event": "Dial", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "DialStatus": "ANSWER", "UniqueID": "ua0-acc-1509639993.1345"}, - {"Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1345", "Event": "SoftHangupRequest", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "Cause": "16"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1345", "Application": "GotoIf", "Extension": "onhangup", "content": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "AppData": "1?nosip", "Event": "Newexten", "Context": "handlers"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1345", "Application": "GosubIf", "Extension": "onhangup", "content": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "AppData": "0?osvpi_proc_httptouch,s,1()", "Event": "Newexten", "Context": "handlers"}, - {"Cause-txt": "Normal Clearing", "content": "", "Event": "Hangup", "Cause": "16", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000184;2", "CallerIDNum": "+31625339196", "ConnectedLineName": "", "ConnectedLineNum": "+31853030903", "Privilege": "call,all", "Uniqueid": "ua0-acc-1509639993.1345", "CallerIDName": "", "AccountCode": "12668"}, - {"FractionLost": "0", "From": "217.21.195.34:5009", "content": "", "Event": "RTCPReceived", "PacketsLost": "0", "PT": "200(Sender Report)", "SequenceNumberCycles": "0", "ReceptionReports": "1", "Privilege": "reporting,all", "DLSR": "32768.0000(sec)", "LastSR": "0.0000000000", "HighestSequence": "25752", "IAJitter": "1", "SenderSSRC": "0"}, - {"TheirLastSR": "1195591532", "FractionLost": "0", "CumulativeLoss": "0", "OurSSRC": "1939148558", "SentPackets": "1", "Event": "RTCPSent", "SentNTP": "1509640006.0227348480", "SentOctets": "160", "Privilege": "reporting,all", "To": "217.21.195.34:5009", "DLSR": "2.7090 (sec)", "IAJitter": "0.0043", "content": "", "SentRTP": "2147479344"}, - {"TheirLastSR": "0", "FractionLost": "0", "CumulativeLoss": "0", "OurSSRC": "1481253003", "SentPackets": "2", "Event": "RTCPSent", "SentNTP": "1509640006.0326471680", "SentOctets": "320", "Privilege": "reporting,all", "To": "195.35.115.106:10379", "DLSR": "18246.0790 (sec)", "IAJitter": "0.0000", "content": "", "SentRTP": "640"}, - {"Value": "ssrc=1939148558;themssrc=3758160331;lp=0;rxjitter=0.000000;rxcount=5;txjitter=0.004335;txcount=1;rlp=0;rtt=0.000000", "Variable": "RTPAUDIOQOS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1344", "Event": "VarSet", "Channel": "SIP/126680024-0000023b"}, - {"Value": "ssrc=1939148558;themssrc=3758160331;lp=0;rxjitter=0.000000;rxcount=5;txjitter=0.004335;txcount=1;rlp=0;rtt=0.000000", "Variable": "RTPAUDIOQOSBRIDGED", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Variable": "RTPAUDIOQOSJITTER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1344", "Event": "VarSet", "Channel": "SIP/126680024-0000023b"}, - {"Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Variable": "RTPAUDIOQOSJITTERBRIDGED", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Variable": "RTPAUDIOQOSLOSS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1344", "Event": "VarSet", "Channel": "SIP/126680024-0000023b"}, - {"Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Variable": "RTPAUDIOQOSLOSSBRIDGED", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Variable": "RTPAUDIOQOSRTT", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1344", "Event": "VarSet", "Channel": "SIP/126680024-0000023b"}, - {"Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Variable": "RTPAUDIOQOSRTTBRIDGED", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "ssrc=1481253003;themssrc=863110214;lp=0;rxjitter=0.000000;rxcount=1;txjitter=0.000000;txcount=2;rlp=0;rtt=0.000000", "Variable": "RTPAUDIOQOS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "ssrc=1481253003;themssrc=863110214;lp=0;rxjitter=0.000000;rxcount=1;txjitter=0.000000;txcount=2;rlp=0;rtt=0.000000", "Variable": "RTPAUDIOQOSBRIDGED", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1344", "Event": "VarSet", "Channel": "SIP/126680024-0000023b"}, - {"Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Variable": "RTPAUDIOQOSJITTER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Variable": "RTPAUDIOQOSJITTERBRIDGED", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1344", "Event": "VarSet", "Channel": "SIP/126680024-0000023b"}, - {"Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Variable": "RTPAUDIOQOSLOSS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Variable": "RTPAUDIOQOSLOSSBRIDGED", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1344", "Event": "VarSet", "Channel": "SIP/126680024-0000023b"}, - {"Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Variable": "RTPAUDIOQOSRTT", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Variable": "RTPAUDIOQOSRTTBRIDGED", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1344", "Event": "VarSet", "Channel": "SIP/126680024-0000023b"}, - {"Channel": "SIP/126680024-0000023b", "Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1344", "Event": "HangupRequest"}, - {"CallerID2": "+31853030903", "Privilege": "call,all", "CallerID1": "+31625339196", "Uniqueid2": "ua0-acc-1509639993.1344", "Event": "Bridge", "content": "", "Channel1": "SIP/voipgrid-siproute-dev-00000237", "Bridgetype": "core", "Uniqueid1": "ua0-acc-1509639993.1343", "Channel2": "SIP/126680024-0000023b", "Bridgestate": "Unlink"}, - {"Value": "7", "Variable": "ANSWEREDTIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "14", "Variable": "DIALEDTIME", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Cause-txt": "Normal Clearing", "content": "", "Event": "Hangup", "Cause": "16", "Channel": "SIP/126680024-0000023b", "CallerIDNum": "+31853030903", "ConnectedLineName": "", "ConnectedLineNum": "+31625339196", "Privilege": "call,all", "Uniqueid": "ua0-acc-1509639993.1344", "CallerIDName": "", "AccountCode": "126680005"}, - {"Value": "ANSWER", "Variable": "DIALSTATUS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Privilege": "call,all", "content": "", "SubEvent": "End", "Event": "Dial", "Channel": "SIP/voipgrid-siproute-dev-00000237", "DialStatus": "ANSWER", "UniqueID": "ua0-acc-1509639993.1343"}, - {"Privilege": "call,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "SoftHangupRequest", "Channel": "SIP/voipgrid-siproute-dev-00000237", "Cause": "16"}, - {"Privilege": "dialplan,all", "Priority": "1", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "GotoIf", "Extension": "onhangup", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "0?nosip", "Event": "Newexten", "Context": "handlers"}, - {"Privilege": "dialplan,all", "Priority": "2", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "NoOp", "Extension": "onhangup", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "LOG: rtpqos: caller=195.35.115.106:10378;asterisk=195.35.115.202:13514;ssrc=1481253003;themssrc=863110214;lp=0;rxjitter=0.000000;rxcount=1;txjitter=0.000000;txcount=2;rlp=0;rtt=0.000000;billsec=0", "Event": "Newexten", "Context": "handlers"}, - {"Privilege": "dialplan,all", "Priority": "3", "Uniqueid": "ua0-acc-1509639993.1343", "Application": "GosubIf", "Extension": "onhangup", "content": "", "Channel": "SIP/voipgrid-siproute-dev-00000237", "AppData": "0?osvpi_proc_httptouch,s,1()", "Event": "Newexten", "Context": "handlers"}, - {"Value": "ssrc=1481253003;themssrc=863110214;lp=0;rxjitter=0.000000;rxcount=1;txjitter=0.000000;txcount=2;rlp=0;rtt=0.000000", "Variable": "RTPAUDIOQOS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Variable": "RTPAUDIOQOSJITTER", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Variable": "RTPAUDIOQOSLOSS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Variable": "RTPAUDIOQOSRTT", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Value": "ssrc=1481253003;themssrc=863110214;lp=0;rxjitter=0.000000;rxcount=1;txjitter=0.000000;txcount=2;rlp=0;rtt=0.000000", "Variable": "RTPAUDIOQOS", "Privilege": "dialplan,all", "content": "", "Uniqueid": "ua0-acc-1509639993.1343", "Event": "VarSet", "Channel": "SIP/voipgrid-siproute-dev-00000237"}, - {"Cause-txt": "Normal Clearing", "content": "", "Event": "Hangup", "Cause": "16", "Channel": "SIP/voipgrid-siproute-dev-00000237", "CallerIDNum": "+31625339196", "ConnectedLineName": "", "ConnectedLineNum": "", "Privilege": "call,all", "Uniqueid": "ua0-acc-1509639993.1343", "CallerIDName": "", "AccountCode": "12668"} -] diff --git a/tests/fixtures/xfer_misc/call_forwarding_to_from_group.json b/tests/fixtures/xfer_misc/call_forwarding_to_from_group.json deleted file mode 100644 index dd6f474..0000000 --- a/tests/fixtures/xfer_misc/call_forwarding_to_from_group.json +++ /dev/null @@ -1,124 +0,0 @@ -[ - {"Privilege": "system,all", "content": "", "Event": "FullyBooted", "Status": "Fully Booted"}, - {"Uniqueid": "ua0-acc-1509631559.1176", "Context": "voipgrid_in", "CallerIDNum": "+31612345678", "CallerIDName": "", "ChannelStateDesc": "Down", "content": "", "Event": "Newchannel", "ChannelState": "0", "Channel": "SIP/voipgrid-siproute-dev-000001fc", "AccountCode": "", "Exten": "+31853030903", "Privilege": "call,all"}, - {"ChannelState": "4", "Uniqueid": "ua0-acc-1509631559.1176", "ChannelStateDesc": "Ring", "CallerIDNum": "+31612345678", "ConnectedLineName": "", "CallerIDName": "", "Channel": "SIP/voipgrid-siproute-dev-000001fc", "Privilege": "call,all", "content": "", "Event": "Newstate", "ConnectedLineNum": ""}, - {"Uniqueid": "ua0-acc-1509631559.1176", "Channel": "SIP/voipgrid-siproute-dev-000001fc", "AccountCode": "12668", "Privilege": "call,all", "content": "", "Event": "NewAccountCode"}, - {"Uniqueid": "ua0-acc-1509631559.1177", "Context": "osvpi_route_phoneaccount", "CallerIDNum": "", "CallerIDName": "", "ChannelStateDesc": "Down", "content": "", "Event": "Newchannel", "ChannelState": "0", "Channel": "Local/ID730651@osvpi_route_phoneaccount-0000014e;1", "AccountCode": "", "Exten": "ID730651", "Privilege": "call,all"}, - {"Uniqueid": "ua0-acc-1509631559.1178", "Context": "osvpi_route_phoneaccount", "CallerIDNum": "", "CallerIDName": "", "ChannelStateDesc": "Ring", "content": "", "Event": "Newchannel", "ChannelState": "4", "Channel": "Local/ID730651@osvpi_route_phoneaccount-0000014e;2", "AccountCode": "", "Exten": "ID730651", "Privilege": "call,all"}, - {"Uniqueid": "ua0-acc-1509631559.1177", "CallerIDNum": "+31853030903", "CallerIDName": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Channel": "Local/ID730651@osvpi_route_phoneaccount-0000014e;1", "Privilege": "call,all", "content": "", "Event": "NewCallerid"}, - {"Uniqueid": "ua0-acc-1509631559.1179", "Context": "osvpi_route_phoneaccount", "CallerIDNum": "", "CallerIDName": "", "ChannelStateDesc": "Down", "content": "", "Event": "Newchannel", "ChannelState": "0", "Channel": "Local/ID730661@osvpi_route_phoneaccount-0000014f;1", "AccountCode": "", "Exten": "ID730661", "Privilege": "call,all"}, - {"Uniqueid": "ua0-acc-1509631559.1180", "Context": "osvpi_route_phoneaccount", "CallerIDNum": "", "CallerIDName": "", "ChannelStateDesc": "Ring", "content": "", "Event": "Newchannel", "ChannelState": "4", "Channel": "Local/ID730661@osvpi_route_phoneaccount-0000014f;2", "AccountCode": "", "Exten": "ID730661", "Privilege": "call,all"}, - {"Uniqueid": "ua0-acc-1509631559.1179", "CallerIDNum": "+31853030903", "CallerIDName": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Channel": "Local/ID730661@osvpi_route_phoneaccount-0000014f;1", "Privilege": "call,all", "content": "", "Event": "NewCallerid"}, - {"LocalOptimization": "Yes", "content": "", "Uniqueid2": "ua0-acc-1509631559.1178", "Uniqueid1": "ua0-acc-1509631559.1177", "Channel2": "Local/ID730651@osvpi_route_phoneaccount-0000014e;2", "Exten": "ID730651", "Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Privilege": "call,all", "Channel1": "Local/ID730651@osvpi_route_phoneaccount-0000014e;1"}, - {"CallerIDNum": "+31612345678", "Destination": "Local/ID730651@osvpi_route_phoneaccount-0000014e;1", "SubEvent": "Begin", "ConnectedLineName": "", "content": "", "Event": "Dial", "Dialstring": "ID730651@osvpi_route_phoneaccount", "ConnectedLineNum": "", "DestUniqueID": "ua0-acc-1509631559.1177", "CallerIDName": "", "Channel": "SIP/voipgrid-siproute-dev-000001fc", "UniqueID": "ua0-acc-1509631559.1176", "Privilege": "call,all"}, - {"LocalOptimization": "Yes", "content": "", "Uniqueid2": "ua0-acc-1509631559.1180", "Uniqueid1": "ua0-acc-1509631559.1179", "Channel2": "Local/ID730661@osvpi_route_phoneaccount-0000014f;2", "Exten": "ID730661", "Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Privilege": "call,all", "Channel1": "Local/ID730661@osvpi_route_phoneaccount-0000014f;1"}, - {"CallerIDNum": "+31612345678", "Destination": "Local/ID730661@osvpi_route_phoneaccount-0000014f;1", "SubEvent": "Begin", "ConnectedLineName": "", "content": "", "Event": "Dial", "Dialstring": "ID730661@osvpi_route_phoneaccount", "ConnectedLineNum": "", "DestUniqueID": "ua0-acc-1509631559.1179", "CallerIDName": "", "Channel": "SIP/voipgrid-siproute-dev-000001fc", "UniqueID": "ua0-acc-1509631559.1176", "Privilege": "call,all"}, - {"Uniqueid": "ua0-acc-1509631559.1181", "Context": "osvpi_account", "CallerIDNum": "", "CallerIDName": "", "ChannelStateDesc": "Down", "content": "", "Event": "Newchannel", "ChannelState": "0", "Channel": "SIP/126680010-000001fd", "AccountCode": "126680010", "Exten": "", "Privilege": "call,all"}, - {"Uniqueid": "ua0-acc-1509631559.1181", "CallerIDNum": "+31853030903", "CallerIDName": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Channel": "SIP/126680010-000001fd", "Privilege": "call,all", "content": "", "Event": "NewCallerid"}, - {"CallerIDNum": "+31612345678", "Destination": "SIP/126680010-000001fd", "SubEvent": "Begin", "ConnectedLineName": "", "content": "", "Event": "Dial", "Dialstring": "126680010/126680010/195.35.115.203!!0625339196", "ConnectedLineNum": "+31853030903", "DestUniqueID": "ua0-acc-1509631559.1181", "CallerIDName": "", "Channel": "Local/ID730661@osvpi_route_phoneaccount-0000014f;2", "UniqueID": "ua0-acc-1509631559.1180", "Privilege": "call,all"}, - {"Uniqueid": "ua0-acc-1509631559.1182", "Context": "osvpi_account", "CallerIDNum": "", "CallerIDName": "", "ChannelStateDesc": "Down", "content": "", "Event": "Newchannel", "ChannelState": "0", "Channel": "SIP/126680005-000001fe", "AccountCode": "126680005", "Exten": "", "Privilege": "call,all"}, - {"Uniqueid": "ua0-acc-1509631559.1182", "CallerIDNum": "+31853030903", "CallerIDName": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Channel": "SIP/126680005-000001fe", "Privilege": "call,all", "content": "", "Event": "NewCallerid"}, - {"CallerIDNum": "+31612345678", "Destination": "SIP/126680005-000001fe", "SubEvent": "Begin", "ConnectedLineName": "", "content": "", "Event": "Dial", "Dialstring": "126680005/126680005/195.35.115.203!!0625339196", "ConnectedLineNum": "+31853030903", "DestUniqueID": "ua0-acc-1509631559.1182", "CallerIDName": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-0000014e;2", "UniqueID": "ua0-acc-1509631559.1178", "Privilege": "call,all"}, - {"Uniqueid": "ua0-acc-1509631559.1183", "Context": "osvpi_account", "CallerIDNum": "", "CallerIDName": "", "ChannelStateDesc": "Down", "content": "", "Event": "Newchannel", "ChannelState": "0", "Channel": "Local/402@osvpi_account-00000150;1", "AccountCode": "", "Exten": "402", "Privilege": "call,all"}, - {"Uniqueid": "ua0-acc-1509631559.1184", "Context": "osvpi_account", "CallerIDNum": "", "CallerIDName": "", "ChannelStateDesc": "Ring", "content": "", "Event": "Newchannel", "ChannelState": "4", "Channel": "Local/402@osvpi_account-00000150;2", "AccountCode": "", "Exten": "402", "Privilege": "call,all"}, - {"Uniqueid": "ua0-acc-1509631559.1183", "CallerIDNum": "+31853030903", "CallerIDName": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Channel": "Local/402@osvpi_account-00000150;1", "Privilege": "call,all", "content": "", "Event": "NewCallerid"}, - {"LocalOptimization": "Yes", "content": "", "Uniqueid2": "ua0-acc-1509631559.1184", "Uniqueid1": "ua0-acc-1509631559.1183", "Channel2": "Local/402@osvpi_account-00000150;2", "Exten": "402", "Context": "osvpi_account", "Event": "LocalBridge", "Privilege": "call,all", "Channel1": "Local/402@osvpi_account-00000150;1"}, - {"CallerIDNum": "+31612345678", "Destination": "Local/402@osvpi_account-00000150;1", "SubEvent": "Begin", "ConnectedLineName": "", "content": "", "Event": "Dial", "Dialstring": "402@osvpi_account", "ConnectedLineNum": "+31853030903", "DestUniqueID": "ua0-acc-1509631559.1183", "CallerIDName": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-0000014e;2", "UniqueID": "ua0-acc-1509631559.1178", "Privilege": "call,all"}, - {"Uniqueid": "ua0-acc-1509631559.1182", "Cause": "16", "Cause-txt": "Normal Clearing", "Privilege": "call,all", "content": "", "Event": "Hangup", "ConnectedLineNum": "+31612345678", "CallerIDName": "", "Channel": "SIP/126680005-000001fe", "CallerIDNum": "+31853030903", "AccountCode": "12668", "ConnectedLineName": ""}, - {"ChannelState": "5", "Uniqueid": "ua0-acc-1509631559.1181", "ChannelStateDesc": "Ringing", "CallerIDNum": "+31853030903", "ConnectedLineName": "", "CallerIDName": "", "Channel": "SIP/126680010-000001fd", "Privilege": "call,all", "content": "", "Event": "Newstate", "ConnectedLineNum": "+31612345678"}, - {"ChannelState": "5", "Uniqueid": "ua0-acc-1509631559.1179", "ChannelStateDesc": "Ringing", "CallerIDNum": "+31853030903", "ConnectedLineName": "", "CallerIDName": "", "Channel": "Local/ID730661@osvpi_route_phoneaccount-0000014f;1", "Privilege": "call,all", "content": "", "Event": "Newstate", "ConnectedLineNum": "+31612345678"}, - {"Uniqueid": "ua0-acc-1509631559.1184", "OldAccountCode": "12668", "AccountCode": "126680005", "Channel": "Local/402@osvpi_account-00000150;2", "Privilege": "call,all", "content": "", "Event": "NewAccountCode"}, - {"Uniqueid": "ua0-acc-1509631559.1185", "Context": "osvpi_route_phoneaccount", "CallerIDNum": "", "CallerIDName": "", "ChannelStateDesc": "Down", "content": "", "Event": "Newchannel", "ChannelState": "0", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000151;1", "AccountCode": "", "Exten": "ID730671", "Privilege": "call,all"}, - {"Uniqueid": "ua0-acc-1509631559.1186", "Context": "osvpi_route_phoneaccount", "CallerIDNum": "", "CallerIDName": "", "ChannelStateDesc": "Ring", "content": "", "Event": "Newchannel", "ChannelState": "4", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000151;2", "AccountCode": "", "Exten": "ID730671", "Privilege": "call,all"}, - {"Uniqueid": "ua0-acc-1509631559.1185", "CallerIDNum": "402", "CallerIDName": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000151;1", "Privilege": "call,all", "content": "", "Event": "NewCallerid"}, - {"Uniqueid": "ua0-acc-1509631559.1187", "Context": "osvpi_route_phoneaccount", "CallerIDNum": "", "CallerIDName": "", "ChannelStateDesc": "Down", "content": "", "Event": "Newchannel", "ChannelState": "0", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000152;1", "AccountCode": "", "Exten": "ID730681", "Privilege": "call,all"}, - {"Uniqueid": "ua0-acc-1509631559.1188", "Context": "osvpi_route_phoneaccount", "CallerIDNum": "", "CallerIDName": "", "ChannelStateDesc": "Ring", "content": "", "Event": "Newchannel", "ChannelState": "4", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000152;2", "AccountCode": "", "Exten": "ID730681", "Privilege": "call,all"}, - {"Uniqueid": "ua0-acc-1509631559.1187", "CallerIDNum": "402", "CallerIDName": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000152;1", "Privilege": "call,all", "content": "", "Event": "NewCallerid"}, - {"LocalOptimization": "Yes", "content": "", "Uniqueid2": "ua0-acc-1509631559.1186", "Uniqueid1": "ua0-acc-1509631559.1185", "Channel2": "Local/ID730671@osvpi_route_phoneaccount-00000151;2", "Exten": "ID730671", "Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Privilege": "call,all", "Channel1": "Local/ID730671@osvpi_route_phoneaccount-00000151;1"}, - {"CallerIDNum": "+31612345678", "Destination": "Local/ID730671@osvpi_route_phoneaccount-00000151;1", "SubEvent": "Begin", "ConnectedLineName": "", "content": "", "Event": "Dial", "Dialstring": "ID730671@osvpi_route_phoneaccount", "ConnectedLineNum": "+31853030903", "DestUniqueID": "ua0-acc-1509631559.1185", "CallerIDName": "", "Channel": "Local/402@osvpi_account-00000150;2", "UniqueID": "ua0-acc-1509631559.1184", "Privilege": "call,all"}, - {"LocalOptimization": "Yes", "content": "", "Uniqueid2": "ua0-acc-1509631559.1188", "Uniqueid1": "ua0-acc-1509631559.1187", "Channel2": "Local/ID730681@osvpi_route_phoneaccount-00000152;2", "Exten": "ID730681", "Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Privilege": "call,all", "Channel1": "Local/ID730681@osvpi_route_phoneaccount-00000152;1"}, - {"CallerIDNum": "+31612345678", "Destination": "Local/ID730681@osvpi_route_phoneaccount-00000152;1", "SubEvent": "Begin", "ConnectedLineName": "", "content": "", "Event": "Dial", "Dialstring": "ID730681@osvpi_route_phoneaccount", "ConnectedLineNum": "+31853030903", "DestUniqueID": "ua0-acc-1509631559.1187", "CallerIDName": "", "Channel": "Local/402@osvpi_account-00000150;2", "UniqueID": "ua0-acc-1509631559.1184", "Privilege": "call,all"}, - {"Uniqueid": "ua0-acc-1509631559.1189", "Context": "osvpi_account", "CallerIDNum": "", "CallerIDName": "", "ChannelStateDesc": "Down", "content": "", "Event": "Newchannel", "ChannelState": "0", "Channel": "SIP/126680024-000001ff", "AccountCode": "126680024", "Exten": "", "Privilege": "call,all"}, - {"Uniqueid": "ua0-acc-1509631559.1189", "CallerIDNum": "402", "CallerIDName": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Channel": "SIP/126680024-000001ff", "Privilege": "call,all", "content": "", "Event": "NewCallerid"}, - {"CallerIDNum": "+31612345678", "Destination": "SIP/126680024-000001ff", "SubEvent": "Begin", "ConnectedLineName": "", "content": "", "Event": "Dial", "Dialstring": "126680024/126680024/195.35.115.203!!0625339196", "ConnectedLineNum": "402", "DestUniqueID": "ua0-acc-1509631559.1189", "CallerIDName": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000152;2", "UniqueID": "ua0-acc-1509631559.1188", "Privilege": "call,all"}, - {"Uniqueid": "ua0-acc-1509631559.1190", "Context": "osvpi_account", "CallerIDNum": "", "CallerIDName": "", "ChannelStateDesc": "Down", "content": "", "Event": "Newchannel", "ChannelState": "0", "Channel": "SIP/126680023-00000200", "AccountCode": "126680023", "Exten": "", "Privilege": "call,all"}, - {"Uniqueid": "ua0-acc-1509631559.1190", "CallerIDNum": "402", "CallerIDName": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Channel": "SIP/126680023-00000200", "Privilege": "call,all", "content": "", "Event": "NewCallerid"}, - {"CallerIDNum": "+31612345678", "Destination": "SIP/126680023-00000200", "SubEvent": "Begin", "ConnectedLineName": "", "content": "", "Event": "Dial", "Dialstring": "126680023/126680023/195.35.115.203!!0625339196", "ConnectedLineNum": "402", "DestUniqueID": "ua0-acc-1509631559.1190", "CallerIDName": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000151;2", "UniqueID": "ua0-acc-1509631559.1186", "Privilege": "call,all"}, - {"ChannelState": "5", "Uniqueid": "ua0-acc-1509631559.1189", "ChannelStateDesc": "Ringing", "CallerIDNum": "402", "ConnectedLineName": "", "CallerIDName": "", "Channel": "SIP/126680024-000001ff", "Privilege": "call,all", "content": "", "Event": "Newstate", "ConnectedLineNum": "+31612345678"}, - {"ChannelState": "5", "Uniqueid": "ua0-acc-1509631559.1187", "ChannelStateDesc": "Ringing", "CallerIDNum": "402", "ConnectedLineName": "", "CallerIDName": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000152;1", "Privilege": "call,all", "content": "", "Event": "Newstate", "ConnectedLineNum": "+31612345678"}, - {"ChannelState": "5", "Uniqueid": "ua0-acc-1509631559.1183", "ChannelStateDesc": "Ringing", "CallerIDNum": "+31853030903", "ConnectedLineName": "", "CallerIDName": "", "Channel": "Local/402@osvpi_account-00000150;1", "Privilege": "call,all", "content": "", "Event": "Newstate", "ConnectedLineNum": "+31612345678"}, - {"ChannelState": "5", "Uniqueid": "ua0-acc-1509631559.1177", "ChannelStateDesc": "Ringing", "CallerIDNum": "+31853030903", "ConnectedLineName": "", "CallerIDName": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-0000014e;1", "Privilege": "call,all", "content": "", "Event": "Newstate", "ConnectedLineNum": "+31612345678"}, - {"ChannelState": "5", "Uniqueid": "ua0-acc-1509631559.1190", "ChannelStateDesc": "Ringing", "CallerIDNum": "402", "ConnectedLineName": "", "CallerIDName": "", "Channel": "SIP/126680023-00000200", "Privilege": "call,all", "content": "", "Event": "Newstate", "ConnectedLineNum": "+31612345678"}, - {"ChannelState": "5", "Uniqueid": "ua0-acc-1509631559.1185", "ChannelStateDesc": "Ringing", "CallerIDNum": "402", "ConnectedLineName": "", "CallerIDName": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000151;1", "Privilege": "call,all", "content": "", "Event": "Newstate", "ConnectedLineNum": "+31612345678"}, - {"ChannelState": "6", "Uniqueid": "ua0-acc-1509631559.1189", "ChannelStateDesc": "Up", "CallerIDNum": "402", "ConnectedLineName": "", "CallerIDName": "", "Channel": "SIP/126680024-000001ff", "Privilege": "call,all", "content": "", "Event": "Newstate", "ConnectedLineNum": "+31612345678"}, - {"ChannelState": "6", "Uniqueid": "ua0-acc-1509631559.1188", "ChannelStateDesc": "Up", "CallerIDNum": "+31612345678", "ConnectedLineName": "", "CallerIDName": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000152;2", "Privilege": "call,all", "content": "", "Event": "Newstate", "ConnectedLineNum": "402"}, - {"Uniqueid": "ua0-acc-1509631559.1189", "OldAccountCode": "126680005", "AccountCode": "126680005", "Channel": "SIP/126680024-000001ff", "Privilege": "call,all", "content": "", "Event": "NewAccountCode"}, - {"Bridgetype": "core", "CallerID2": "402", "Uniqueid2": "ua0-acc-1509631559.1189", "CallerID1": "+31612345678", "Uniqueid1": "ua0-acc-1509631559.1188", "Channel2": "SIP/126680024-000001ff", "Bridgestate": "Link", "content": "", "Event": "Bridge", "Privilege": "call,all", "Channel1": "Local/ID730681@osvpi_route_phoneaccount-00000152;2"}, - {"ChannelState": "6", "Uniqueid": "ua0-acc-1509631559.1187", "ChannelStateDesc": "Up", "CallerIDNum": "402", "ConnectedLineName": "", "CallerIDName": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000152;1", "Privilege": "call,all", "content": "", "Event": "Newstate", "ConnectedLineNum": "+31612345678"}, - {"Channel": "Local/ID730671@osvpi_route_phoneaccount-00000151;2", "Privilege": "call,all", "content": "", "Event": "HangupRequest", "Uniqueid": "ua0-acc-1509631559.1186"}, - {"Uniqueid": "ua0-acc-1509631559.1185", "Cause": "26", "Cause-txt": "Answered elsewhere", "Privilege": "call,all", "content": "", "Event": "Hangup", "ConnectedLineNum": "+31612345678", "CallerIDName": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000151;1", "CallerIDNum": "402", "AccountCode": "126680005", "ConnectedLineName": ""}, - {"ChannelState": "6", "Uniqueid": "ua0-acc-1509631559.1184", "ChannelStateDesc": "Up", "CallerIDNum": "+31612345678", "ConnectedLineName": "", "CallerIDName": "", "Channel": "Local/402@osvpi_account-00000150;2", "Privilege": "call,all", "content": "", "Event": "Newstate", "ConnectedLineNum": "+31853030903"}, - {"Uniqueid": "ua0-acc-1509631559.1187", "OldAccountCode": "126680005", "AccountCode": "126680005", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000152;1", "Privilege": "call,all", "content": "", "Event": "NewAccountCode"}, - {"Bridgetype": "core", "CallerID2": "402", "Uniqueid2": "ua0-acc-1509631559.1187", "CallerID1": "+31612345678", "Uniqueid1": "ua0-acc-1509631559.1184", "Channel2": "Local/ID730681@osvpi_route_phoneaccount-00000152;1", "Bridgestate": "Link", "content": "", "Event": "Bridge", "Privilege": "call,all", "Channel1": "Local/402@osvpi_account-00000150;2"}, - {"ChannelState": "6", "Uniqueid": "ua0-acc-1509631559.1183", "ChannelStateDesc": "Up", "CallerIDNum": "+31853030903", "ConnectedLineName": "", "CallerIDName": "", "Channel": "Local/402@osvpi_account-00000150;1", "Privilege": "call,all", "content": "", "Event": "Newstate", "ConnectedLineNum": "+31612345678"}, - {"ChannelState": "6", "Uniqueid": "ua0-acc-1509631559.1178", "ChannelStateDesc": "Up", "CallerIDNum": "+31612345678", "ConnectedLineName": "", "CallerIDName": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-0000014e;2", "Privilege": "call,all", "content": "", "Event": "Newstate", "ConnectedLineNum": "+31853030903"}, - {"Uniqueid": "ua0-acc-1509631559.1183", "OldAccountCode": "12668", "AccountCode": "12668", "Channel": "Local/402@osvpi_account-00000150;1", "Privilege": "call,all", "content": "", "Event": "NewAccountCode"}, - {"Bridgetype": "core", "CallerID2": "+31853030903", "Uniqueid2": "ua0-acc-1509631559.1183", "CallerID1": "+31612345678", "Uniqueid1": "ua0-acc-1509631559.1178", "Channel2": "Local/402@osvpi_account-00000150;1", "Bridgestate": "Link", "content": "", "Event": "Bridge", "Privilege": "call,all", "Channel1": "Local/ID730651@osvpi_route_phoneaccount-0000014e;2"}, - {"Uniqueid": "ua0-acc-1509631559.1190", "Cause": "26", "Cause-txt": "Answered elsewhere", "Privilege": "call,all", "content": "", "Event": "Hangup", "ConnectedLineNum": "+31612345678", "CallerIDName": "", "Channel": "SIP/126680023-00000200", "CallerIDNum": "402", "AccountCode": "126680005", "ConnectedLineName": ""}, - {"DialStatus": "CANCEL", "SubEvent": "End", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000151;2", "UniqueID": "ua0-acc-1509631559.1186", "content": "", "Event": "Dial", "Privilege": "call,all"}, - {"Uniqueid": "ua0-acc-1509631559.1186", "Cause": "16", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000151;2", "Privilege": "call,all", "content": "", "Event": "SoftHangupRequest"}, - {"Uniqueid": "ua0-acc-1509631559.1186", "Cause": "26", "Cause-txt": "Answered elsewhere", "Privilege": "call,all", "content": "", "Event": "Hangup", "ConnectedLineNum": "402", "CallerIDName": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000151;2", "CallerIDNum": "+31612345678", "AccountCode": "126680005", "ConnectedLineName": ""}, - {"ChannelState": "6", "Uniqueid": "ua0-acc-1509631559.1177", "ChannelStateDesc": "Up", "CallerIDNum": "+31853030903", "ConnectedLineName": "", "CallerIDName": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-0000014e;1", "Privilege": "call,all", "content": "", "Event": "Newstate", "ConnectedLineNum": "+31612345678"}, - {"Channel": "Local/ID730661@osvpi_route_phoneaccount-0000014f;2", "Privilege": "call,all", "content": "", "Event": "HangupRequest", "Uniqueid": "ua0-acc-1509631559.1180"}, - {"Uniqueid": "ua0-acc-1509631559.1179", "Cause": "26", "Cause-txt": "Answered elsewhere", "Privilege": "call,all", "content": "", "Event": "Hangup", "ConnectedLineNum": "+31612345678", "CallerIDName": "", "Channel": "Local/ID730661@osvpi_route_phoneaccount-0000014f;1", "CallerIDNum": "+31853030903", "AccountCode": "12668", "ConnectedLineName": ""}, - {"ChannelState": "6", "Uniqueid": "ua0-acc-1509631559.1176", "ChannelStateDesc": "Up", "CallerIDNum": "+31612345678", "ConnectedLineName": "", "CallerIDName": "", "Channel": "SIP/voipgrid-siproute-dev-000001fc", "Privilege": "call,all", "content": "", "Event": "Newstate", "ConnectedLineNum": ""}, - {"Uniqueid": "ua0-acc-1509631559.1177", "OldAccountCode": "12668", "AccountCode": "12668", "Channel": "Local/ID730651@osvpi_route_phoneaccount-0000014e;1", "Privilege": "call,all", "content": "", "Event": "NewAccountCode"}, - {"Bridgetype": "core", "CallerID2": "+31853030903", "Uniqueid2": "ua0-acc-1509631559.1177", "CallerID1": "+31612345678", "Uniqueid1": "ua0-acc-1509631559.1176", "Channel2": "Local/ID730651@osvpi_route_phoneaccount-0000014e;1", "Bridgestate": "Link", "content": "", "Event": "Bridge", "Privilege": "call,all", "Channel1": "SIP/voipgrid-siproute-dev-000001fc"}, - {"Uniqueid": "ua0-acc-1509631559.1181", "Cause": "26", "Cause-txt": "Answered elsewhere", "Privilege": "call,all", "content": "", "Event": "Hangup", "ConnectedLineNum": "+31612345678", "CallerIDName": "", "Channel": "SIP/126680010-000001fd", "CallerIDNum": "+31853030903", "AccountCode": "12668", "ConnectedLineName": ""}, - {"DialStatus": "CANCEL", "SubEvent": "End", "Channel": "Local/ID730661@osvpi_route_phoneaccount-0000014f;2", "UniqueID": "ua0-acc-1509631559.1180", "content": "", "Event": "Dial", "Privilege": "call,all"}, - {"Uniqueid": "ua0-acc-1509631559.1180", "Cause": "16", "Channel": "Local/ID730661@osvpi_route_phoneaccount-0000014f;2", "Privilege": "call,all", "content": "", "Event": "SoftHangupRequest"}, - {"Uniqueid": "ua0-acc-1509631559.1180", "Cause": "26", "Cause-txt": "Answered elsewhere", "Privilege": "call,all", "content": "", "Event": "Hangup", "ConnectedLineNum": "+31853030903", "CallerIDName": "", "Channel": "Local/ID730661@osvpi_route_phoneaccount-0000014f;2", "CallerIDNum": "+31612345678", "AccountCode": "12668", "ConnectedLineName": ""}, - {"Clone": "SIP/126680024-000001ff", "Original": "Local/ID730681@osvpi_route_phoneaccount-00000152;1", "CloneState": "Up", "Privilege": "call,all", "content": "", "Event": "Masquerade", "OriginalState": "Up"}, - {"Uniqueid": "ua0-acc-1509631559.1189", "Channel": "SIP/126680024-000001ff", "Newname": "SIP/126680024-000001ff", "content": "", "Event": "Rename", "Privilege": "call,all"}, - {"Uniqueid": "ua0-acc-1509631559.1187", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000152;1", "Newname": "SIP/126680024-000001ff", "content": "", "Event": "Rename", "Privilege": "call,all"}, - {"Uniqueid": "ua0-acc-1509631559.1189", "Channel": "SIP/126680024-000001ff", "Newname": "Local/ID730681@osvpi_route_phoneaccount-00000152;1", "content": "", "Event": "Rename", "Privilege": "call,all"}, - {"Uniqueid": "ua0-acc-1509631559.1187", "CallerIDNum": "402", "CallerIDName": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Channel": "SIP/126680024-000001ff", "Privilege": "call,all", "content": "", "Event": "NewCallerid"}, - {"Bridgetype": "core", "CallerID2": "402", "Uniqueid2": "ua0-acc-1509631559.1189", "CallerID1": "+31612345678", "Uniqueid1": "ua0-acc-1509631559.1188", "Channel2": "Local/ID730681@osvpi_route_phoneaccount-00000152;1", "Bridgestate": "Unlink", "content": "", "Event": "Bridge", "Privilege": "call,all", "Channel1": "Local/ID730681@osvpi_route_phoneaccount-00000152;2"}, - {"Channel": "Local/ID730681@osvpi_route_phoneaccount-00000152;2", "Privilege": "call,all", "content": "", "Event": "HangupRequest", "Uniqueid": "ua0-acc-1509631559.1188"}, - {"Uniqueid": "ua0-acc-1509631559.1189", "Cause": "16", "Cause-txt": "Normal Clearing", "Privilege": "call,all", "content": "", "Event": "Hangup", "ConnectedLineNum": "+31612345678", "CallerIDName": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000152;1", "CallerIDNum": "402", "AccountCode": "126680005", "ConnectedLineName": ""}, - {"Clone": "SIP/126680024-000001ff", "Original": "Local/402@osvpi_account-00000150;1", "CloneState": "Up", "Privilege": "call,all", "content": "", "Event": "Masquerade", "OriginalState": "Up"}, - {"Uniqueid": "ua0-acc-1509631559.1187", "Channel": "SIP/126680024-000001ff", "Newname": "SIP/126680024-000001ff", "content": "", "Event": "Rename", "Privilege": "call,all"}, - {"Uniqueid": "ua0-acc-1509631559.1183", "Channel": "Local/402@osvpi_account-00000150;1", "Newname": "SIP/126680024-000001ff", "content": "", "Event": "Rename", "Privilege": "call,all"}, - {"Uniqueid": "ua0-acc-1509631559.1187", "Channel": "SIP/126680024-000001ff", "Newname": "Local/402@osvpi_account-00000150;1", "content": "", "Event": "Rename", "Privilege": "call,all"}, - {"Uniqueid": "ua0-acc-1509631559.1183", "CallerIDNum": "+31853030903", "CallerIDName": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Channel": "SIP/126680024-000001ff", "Privilege": "call,all", "content": "", "Event": "NewCallerid"}, - {"Bridgetype": "core", "CallerID2": "402", "Uniqueid2": "ua0-acc-1509631559.1187", "CallerID1": "+31612345678", "Uniqueid1": "ua0-acc-1509631559.1184", "Channel2": "Local/402@osvpi_account-00000150;1", "Bridgestate": "Unlink", "content": "", "Event": "Bridge", "Privilege": "call,all", "Channel1": "Local/402@osvpi_account-00000150;2"}, - {"DialStatus": "ANSWER", "SubEvent": "End", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000152;2", "UniqueID": "ua0-acc-1509631559.1188", "content": "", "Event": "Dial", "Privilege": "call,all"}, - {"Uniqueid": "ua0-acc-1509631559.1188", "Cause": "16", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000152;2", "Privilege": "call,all", "content": "", "Event": "SoftHangupRequest"}, - {"Uniqueid": "ua0-acc-1509631559.1188", "Cause": "16", "Cause-txt": "Normal Clearing", "Privilege": "call,all", "content": "", "Event": "Hangup", "ConnectedLineNum": "402", "CallerIDName": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000152;2", "CallerIDNum": "+31612345678", "AccountCode": "126680005", "ConnectedLineName": ""}, - {"Channel": "Local/402@osvpi_account-00000150;2", "Privilege": "call,all", "content": "", "Event": "HangupRequest", "Uniqueid": "ua0-acc-1509631559.1184"}, - {"Uniqueid": "ua0-acc-1509631559.1187", "Cause": "16", "Cause-txt": "Normal Clearing", "Privilege": "call,all", "content": "", "Event": "Hangup", "ConnectedLineNum": "+31612345678", "CallerIDName": "", "Channel": "Local/402@osvpi_account-00000150;1", "CallerIDNum": "402", "AccountCode": "126680005", "ConnectedLineName": ""}, - {"Clone": "SIP/126680024-000001ff", "Original": "Local/ID730651@osvpi_route_phoneaccount-0000014e;1", "CloneState": "Up", "Privilege": "call,all", "content": "", "Event": "Masquerade", "OriginalState": "Up"}, - {"Uniqueid": "ua0-acc-1509631559.1183", "Channel": "SIP/126680024-000001ff", "Newname": "SIP/126680024-000001ff", "content": "", "Event": "Rename", "Privilege": "call,all"}, - {"Uniqueid": "ua0-acc-1509631559.1177", "Channel": "Local/ID730651@osvpi_route_phoneaccount-0000014e;1", "Newname": "SIP/126680024-000001ff", "content": "", "Event": "Rename", "Privilege": "call,all"}, - {"Uniqueid": "ua0-acc-1509631559.1183", "Channel": "SIP/126680024-000001ff", "Newname": "Local/ID730651@osvpi_route_phoneaccount-0000014e;1", "content": "", "Event": "Rename", "Privilege": "call,all"}, - {"Uniqueid": "ua0-acc-1509631559.1177", "CallerIDNum": "+31853030903", "CallerIDName": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "Channel": "SIP/126680024-000001ff", "Privilege": "call,all", "content": "", "Event": "NewCallerid"}, - {"Bridgetype": "core", "CallerID2": "+31853030903", "Uniqueid2": "ua0-acc-1509631559.1183", "CallerID1": "+31612345678", "Uniqueid1": "ua0-acc-1509631559.1178", "Channel2": "Local/ID730651@osvpi_route_phoneaccount-0000014e;1", "Bridgestate": "Unlink", "content": "", "Event": "Bridge", "Privilege": "call,all", "Channel1": "Local/ID730651@osvpi_route_phoneaccount-0000014e;2"}, - {"DialStatus": "ANSWER", "SubEvent": "End", "Channel": "Local/402@osvpi_account-00000150;2", "UniqueID": "ua0-acc-1509631559.1184", "content": "", "Event": "Dial", "Privilege": "call,all"}, - {"Uniqueid": "ua0-acc-1509631559.1184", "Cause": "16", "Channel": "Local/402@osvpi_account-00000150;2", "Privilege": "call,all", "content": "", "Event": "SoftHangupRequest"}, - {"Uniqueid": "ua0-acc-1509631559.1184", "Cause": "16", "Cause-txt": "Normal Clearing", "Privilege": "call,all", "content": "", "Event": "Hangup", "ConnectedLineNum": "+31853030903", "CallerIDName": "", "Channel": "Local/402@osvpi_account-00000150;2", "CallerIDNum": "+31612345678", "AccountCode": "126680005", "ConnectedLineName": ""}, - {"Channel": "Local/ID730651@osvpi_route_phoneaccount-0000014e;2", "Privilege": "call,all", "content": "", "Event": "HangupRequest", "Uniqueid": "ua0-acc-1509631559.1178"}, - {"Uniqueid": "ua0-acc-1509631559.1183", "Cause": "16", "Cause-txt": "Normal Clearing", "Privilege": "call,all", "content": "", "Event": "Hangup", "ConnectedLineNum": "+31612345678", "CallerIDName": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-0000014e;1", "CallerIDNum": "+31853030903", "AccountCode": "126680005", "ConnectedLineName": ""}, - {"DialStatus": "ANSWER", "SubEvent": "End", "Channel": "Local/ID730651@osvpi_route_phoneaccount-0000014e;2", "UniqueID": "ua0-acc-1509631559.1178", "content": "", "Event": "Dial", "Privilege": "call,all"}, - {"Uniqueid": "ua0-acc-1509631559.1178", "Cause": "16", "Channel": "Local/ID730651@osvpi_route_phoneaccount-0000014e;2", "Privilege": "call,all", "content": "", "Event": "SoftHangupRequest"}, - {"Uniqueid": "ua0-acc-1509631559.1178", "Cause": "16", "Cause-txt": "Normal Clearing", "Privilege": "call,all", "content": "", "Event": "Hangup", "ConnectedLineNum": "+31853030903", "CallerIDName": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-0000014e;2", "CallerIDNum": "+31612345678", "AccountCode": "12668", "ConnectedLineName": ""}, - {"SenderSSRC": "0", "PT": "200(Sender Report)", "SequenceNumberCycles": "0", "ReceptionReports": "1", "Privilege": "reporting,all", "content": "", "Event": "RTCPReceived", "From": "217.21.195.34:5007", "FractionLost": "0", "DLSR": "32768.0000(sec)", "LastSR": "0.0000000000", "PacketsLost": "0", "HighestSequence": "5383", "IAJitter": "5"}, - {"SentNTP": "1509631571.0006361088", "OurSSRC": "2104994258", "CumulativeLoss": "0", "TheirLastSR": "0", "SentPackets": "2", "FractionLost": "0", "content": "", "Event": "RTCPSent", "To": "195.35.114.106:13095", "DLSR": "9811.0010 (sec)", "SentRTP": "480", "SentOctets": "320", "Privilege": "reporting,all", "IAJitter": "0.0000"}, - {"SentNTP": "1509631571.0006619136", "OurSSRC": "1359255607", "CumulativeLoss": "0", "TheirLastSR": "642809855", "SentPackets": "4", "FractionLost": "0", "content": "", "Event": "RTCPSent", "To": "217.21.195.34:5007", "DLSR": "2.4920 (sec)", "SentRTP": "3202406432", "SentOctets": "640", "Privilege": "reporting,all", "IAJitter": "0.0026"}, - {"SenderSSRC": "0", "PT": "200(Sender Report)", "SequenceNumberCycles": "0", "ReceptionReports": "1", "Privilege": "reporting,all", "content": "", "Event": "RTCPReceived", "From": "217.21.195.34:5007", "FractionLost": "0", "DLSR": "32768.0000(sec)", "LastSR": "0.0000000000", "PacketsLost": "0", "HighestSequence": "5576", "IAJitter": "2"}, - {"Channel": "SIP/126680024-000001ff", "Privilege": "call,all", "content": "", "Event": "HangupRequest", "Uniqueid": "ua0-acc-1509631559.1177"}, - {"Bridgetype": "core", "CallerID2": "+31853030903", "Uniqueid2": "ua0-acc-1509631559.1177", "CallerID1": "+31612345678", "Uniqueid1": "ua0-acc-1509631559.1176", "Channel2": "SIP/126680024-000001ff", "Bridgestate": "Unlink", "content": "", "Event": "Bridge", "Privilege": "call,all", "Channel1": "SIP/voipgrid-siproute-dev-000001fc"}, - {"Uniqueid": "ua0-acc-1509631559.1177", "Cause": "16", "Cause-txt": "Normal Clearing", "Privilege": "call,all", "content": "", "Event": "Hangup", "ConnectedLineNum": "+31612345678", "CallerIDName": "", "Channel": "SIP/126680024-000001ff", "CallerIDNum": "+31853030903", "AccountCode": "126680005", "ConnectedLineName": ""}, - {"DialStatus": "ANSWER", "SubEvent": "End", "Channel": "SIP/voipgrid-siproute-dev-000001fc", "UniqueID": "ua0-acc-1509631559.1176", "content": "", "Event": "Dial", "Privilege": "call,all"}, - {"Uniqueid": "ua0-acc-1509631559.1176", "Cause": "16", "Channel": "SIP/voipgrid-siproute-dev-000001fc", "Privilege": "call,all", "content": "", "Event": "SoftHangupRequest"}, - {"Uniqueid": "ua0-acc-1509631559.1176", "Cause": "16", "Cause-txt": "Normal Clearing", "Privilege": "call,all", "content": "", "Event": "Hangup", "ConnectedLineNum": "", "CallerIDName": "", "Channel": "SIP/voipgrid-siproute-dev-000001fc", "CallerIDNum": "+31612345678", "AccountCode": "12668", "ConnectedLineName": ""} -] diff --git a/tests/fixtures/xfer_misc/call_forwarding_to_group.json b/tests/fixtures/xfer_misc/call_forwarding_to_group.json index 009144e..2842d29 100644 --- a/tests/fixtures/xfer_misc/call_forwarding_to_group.json +++ b/tests/fixtures/xfer_misc/call_forwarding_to_group.json @@ -1,759 +1,130 @@ [ - {"Privilege": "system,all", "Event": "FullyBooted", "Status": "Fully Booted", "content": ""}, - {"Privilege": "call,all", "AccountCode": "", "CallerIDName": "", "Channel": "SIP/voipgrid-siproute-dev-000001ed", "CallerIDNum": "+31508009000", "Event": "Newchannel", "Uniqueid": "ua0-acc-1509629983.1135", "content": "", "ChannelState": "0", "ChannelStateDesc": "Down", "Context": "voipgrid_in", "Exten": "+31853030903"}, - {"Privilege": "dialplan,all", "Value": "sip:198750006@195.35.115.104:5060", "Event": "VarSet", "Variable": "SIPURI", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "195.35.115.202", "Event": "VarSet", "Variable": "SIPDOMAIN", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "~{}~4b7858722815385e6336d4ad11359070@voipgrid.nl", "Event": "VarSet", "Variable": "SIPCALLID", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "call,all", "CallerIDNum": "+31508009000", "Event": "Newstate", "Uniqueid": "ua0-acc-1509629983.1135", "content": "", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "CallerIDName": "", "ConnectedLineNum": "", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "voipgrid_in", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "1", "Application": "NoOp", "content": "", "Extension": "+31853030903", "AppData": "ENTRY POINT username=upstream,num=+31508009000,name=,callerpres=allowed_not_screened", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "voipgrid_in", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "2", "Application": "Set", "content": "", "Extension": "+31853030903", "AppData": "l_tmp=", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "l_tmp", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "voipgrid_in", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "3", "Application": "Set", "content": "", "Extension": "+31853030903", "AppData": "l_tmp=", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "l_tmp", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "voipgrid_in", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "4", "Application": "Set", "content": "", "Extension": "+31853030903", "AppData": "l_tmp=", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "l_tmp", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "voipgrid_in", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "5", "Application": "Set", "content": "", "Extension": "+31853030903", "AppData": "CALLERID(name)=", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "voipgrid_in", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "6", "Application": "Gosub", "content": "", "Extension": "+31853030903", "AppData": "osvpi_proc_check_forwards,s,1", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "0", "Event": "VarSet", "Variable": "LOCAL(ARGC)", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "1", "Application": "GotoIf", "content": "", "Extension": "s", "AppData": "0?check,1", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "2", "Application": "Set", "content": "", "Extension": "s", "AppData": "LOCAL(tmp)=70", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "70", "Event": "VarSet", "Variable": "LOCAL(tmp)", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "3", "Application": "ExecIf", "content": "", "Extension": "s", "AppData": "0?Goto(init,1)", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "4", "Application": "ExecIf", "content": "", "Extension": "s", "AppData": "1?Goto(init,1)", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "1", "Application": "Set", "content": "", "Extension": "init", "AppData": "MASTER_CHANNEL(SIP_MAX_FORWARDS)=16", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "16", "Event": "VarSet", "Variable": "SIP_MAX_FORWARDS", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "2", "Application": "NoOp", "content": "", "Extension": "init", "AppData": "DEBUG: MaxForwards: initialized to: 16", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "3", "Application": "Return", "content": "", "Extension": "init", "AppData": "", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "GOSUB_RETVAL", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "voipgrid_in", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "7", "Application": "Set", "content": "", "Extension": "+31853030903", "AppData": "__supports_progress=1", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "1", "Event": "VarSet", "Variable": "__supports_progress", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "voipgrid_in", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "8", "Application": "Set", "content": "", "Extension": "+31853030903", "AppData": "__hide_ext_cliname=0", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "0", "Event": "VarSet", "Variable": "__hide_ext_cliname", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "voipgrid_in", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "9", "Application": "Set", "content": "", "Extension": "+31853030903", "AppData": "CALLERID(pres)=allowed_passed_screen", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "voipgrid_in", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "10", "Application": "Goto", "content": "", "Extension": "+31853030903", "AppData": "osvpi_world,+31853030903,1", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_world", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "1", "Application": "ExecIf", "content": "", "Extension": "+31853030903", "AppData": "0?GotoIf(0?osvpi_proc_hangup_insecure,+31853030903,1)", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_world", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "2", "Application": "Set", "content": "", "Extension": "+31853030903", "AppData": "CDR(amaflags)=BILLING", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_world", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "3", "Application": "Gosub", "content": "", "Extension": "+31853030903", "AppData": "osvpi_proc_set_callerid_internal,+31853030903,1", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "0", "Event": "VarSet", "Variable": "LOCAL(ARGC)", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid_internal", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "1", "Application": "GotoIf", "content": "", "Extension": "+31853030903", "AppData": "1?nop", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid_internal", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "5", "Application": "ExecIf", "content": "", "Extension": "+31853030903", "AppData": "0?Set(CALLERID(ANI)=+3150800900)", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid_internal", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "6", "Application": "Return", "content": "", "Extension": "+31853030903", "AppData": "", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "GOSUB_RETVAL", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_world", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "4", "Application": "GotoIf", "content": "", "Extension": "+31853030903", "AppData": "11?:osvpi_handle_invalid,+31853030903,1", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "1", "Event": "VarSet", "Variable": "ODBCROWS", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "SUCCESS", "Event": "VarSet", "Variable": "ODBCSTATUS", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "client_id,route_id,intprefix,lookup_callerid,client_timezone", "Event": "VarSet", "Variable": "~ODBCFIELDS~", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_world", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "5", "Application": "Set", "content": "", "Extension": "+31853030903", "AppData": "ARRAY(client_id,route_id,__intprefix,l_lookup_callerid,client_timezone)=12668,550301,31,1,Europe/Amsterdam", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "12668", "Event": "VarSet", "Variable": "client_id", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "550301", "Event": "VarSet", "Variable": "route_id", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "31", "Event": "VarSet", "Variable": "__intprefix", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "1", "Event": "VarSet", "Variable": "l_lookup_callerid", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "Europe/Amsterdam", "Event": "VarSet", "Variable": "client_timezone", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_world", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "6", "Application": "Gosub", "content": "", "Extension": "+31853030903", "AppData": "osvpi_proc_set_i18n_region,31,1", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "0", "Event": "VarSet", "Variable": "LOCAL(ARGC)", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_set_i18n_region", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "1", "Application": "Set", "content": "", "Extension": "31", "AppData": "i18n_region=NL", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "NL", "Event": "VarSet", "Variable": "i18n_region", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_set_i18n_region", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "2", "Application": "Return", "content": "", "Extension": "31", "AppData": "", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "GOSUB_RETVAL", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_world", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "7", "Application": "Gosub", "content": "", "Extension": "+31853030903", "AppData": "osvpi_proc_check_perms_inbound,+31853030903,1", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "0", "Event": "VarSet", "Variable": "LOCAL(ARGC)", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "1", "Event": "VarSet", "Variable": "ODBCROWS", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "SUCCESS", "Event": "VarSet", "Variable": "ODBCSTATUS", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "IFNULL((SELECT cb.reason FROM relation_callblock cb LEFT JOIN relation_relation r ON cb.relation_id = r.id WHERE r.code = '12668' ORDER BY cb.created\\, cb.id ASC LIMIT 1)\\, '')", "Event": "VarSet", "Variable": "~ODBCFIELDS~", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_perms_inbound", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "1", "Application": "ExecIf", "content": "", "Extension": "+31853030903", "AppData": "1?Return()", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "GOSUB_RETVAL", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_world", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "8", "Application": "GotoIf", "content": "", "Extension": "+31853030903", "AppData": "0?osvpi_handle_unallocated,+31853030903,1", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_world", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "9", "Application": "Set", "content": "", "Extension": "+31853030903", "AppData": "__client_id=12668", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "12668", "Event": "VarSet", "Variable": "__client_id", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_world", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "10", "Application": "Set", "content": "", "Extension": "+31853030903", "AppData": "CDR(accountcode)=12668", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "call,all", "Event": "NewAccountCode", "Uniqueid": "ua0-acc-1509629983.1135", "content": "", "AccountCode": "12668", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_world", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "11", "Application": "Gosub", "content": "", "Extension": "+31853030903", "AppData": "osvpi_proc_callerid_lookup,+31853030903,1(1)", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "1", "Event": "VarSet", "Variable": "LOCAL(ARG1)", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "1", "Event": "VarSet", "Variable": "LOCAL(ARGC)", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_callerid_lookup", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "1", "Application": "ExecIf", "content": "", "Extension": "+31853030903", "AppData": "0?Return()", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_callerid_lookup", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "2", "Application": "Ringing", "content": "", "Extension": "+31853030903", "AppData": "", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_callerid_lookup", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "3", "Application": "Set", "content": "", "Extension": "+31853030903", "AppData": "CURLOPT(hashcompat)=legacy", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_callerid_lookup", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "4", "Application": "Set", "content": "", "Extension": "+31853030903", "AppData": "CURLOPT(dnstimeout)=1", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_callerid_lookup", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "5", "Application": "Set", "content": "", "Extension": "+31853030903", "AppData": "CURLOPT(conntimeout)=1", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_callerid_lookup", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "6", "Application": "Set", "content": "", "Extension": "+31853030903", "AppData": "CURLOPT(httptimeout)=1", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_callerid_lookup", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "7", "Application": "Set", "content": "", "Extension": "+31853030903", "AppData": "CURLOPT(maxredirs)=1", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "~ODBCFIELDS~", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_callerid_lookup", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "8", "Application": "Set", "content": "", "Extension": "+31853030903", "AppData": "HASH(lookup_callername)=\"white\">", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "white>", "Event": "VarSet", "Variable": "~HASH~lookup_callername~", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_callerid_lookup", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "9", "Application": "ExecIf", "content": "", "Extension": "+31853030903", "AppData": "1?Return()", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "GOSUB_RETVAL", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_world", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "12", "Application": "GotoIf", "content": "", "Extension": "+31853030903", "AppData": "0?done", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_world", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "13", "Application": "Set", "content": "", "Extension": "+31853030903", "AppData": "l_tmpkey=vg:clistm:12668:+31508009000", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "vg:clistm:12668:+31508009000", "Event": "VarSet", "Variable": "l_tmpkey", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_world", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "14", "Application": "Set", "content": "", "Extension": "+31853030903", "AppData": "l_tmp=OK\n", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "OK\n", "Event": "VarSet", "Variable": "l_tmp", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_world", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "15", "Application": "Goto", "content": "", "Extension": "+31853030903", "AppData": "osvpi_route_root,+31853030903,1", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_root", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "1", "Application": "Gosub", "content": "", "Extension": "+31853030903", "AppData": "osvpi_proc_check_recurse,+31853030903,1(12668)", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "12668", "Event": "VarSet", "Variable": "LOCAL(ARG1)", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "1", "Event": "VarSet", "Variable": "LOCAL(ARGC)", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "1", "Application": "Set", "content": "", "Extension": "+31853030903", "AppData": "LOCAL(exten)=12668:+31853030903", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "12668:+31853030903", "Event": "VarSet", "Variable": "LOCAL(exten)", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "2", "Application": "NoOp", "content": "", "Extension": "+31853030903", "AppData": "Recursion checking 12668:+31853030903 against ", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "3", "Application": "Set", "content": "", "Extension": "+31853030903", "AppData": "LOCAL(n)=0", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "0", "Event": "VarSet", "Variable": "LOCAL(n)", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "4", "Application": "Set", "content": "", "Extension": "+31853030903", "AppData": "LOCAL(i)=1", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "1", "Event": "VarSet", "Variable": "LOCAL(i)", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "5", "Application": "GotoIf", "content": "", "Extension": "+31853030903", "AppData": "1?add", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "9", "Application": "Set", "content": "", "Extension": "+31853030903", "AppData": "__EXTEN_LIST=12668:+31853030903 ", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "12668:+31853030903 ", "Event": "VarSet", "Variable": "__EXTEN_LIST", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "10", "Application": "Set", "content": "", "Extension": "+31853030903", "AppData": "__EXTEN_LIST_LAST_EDIT_TIME=1509629983", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "1509629983", "Event": "VarSet", "Variable": "__EXTEN_LIST_LAST_EDIT_TIME", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "11", "Application": "Return", "content": "", "Extension": "+31853030903", "AppData": "", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "GOSUB_RETVAL", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_root", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "2", "Application": "Set", "content": "", "Extension": "+31853030903", "AppData": "__ORIG_EXTEN=+31853030903", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "+31853030903", "Event": "VarSet", "Variable": "__ORIG_EXTEN", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_root", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "3", "Application": "ExecIf", "content": "", "Extension": "+31853030903", "AppData": "1?Set(__ORIG_EXTEN_FQ=+31853030903)", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "+31853030903", "Event": "VarSet", "Variable": "__ORIG_EXTEN_FQ", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_root", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "4", "Application": "Set", "content": "", "Extension": "+31853030903", "AppData": "route_loop=1", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "1", "Event": "VarSet", "Variable": "route_loop", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_root", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "5", "Application": "Set", "content": "", "Extension": "+31853030903", "AppData": "route_step=1", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "1", "Event": "VarSet", "Variable": "route_step", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_root", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "6", "Application": "Set", "content": "", "Extension": "+31853030903", "AppData": "route_parentstep_id=", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "route_parentstep_id", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "1", "Event": "VarSet", "Variable": "ODBCROWS", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "SUCCESS", "Event": "VarSet", "Variable": "ODBCSTATUS", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "step_id,module,ringtime,blocked", "Event": "VarSet", "Variable": "~ODBCFIELDS~", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_root", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "7", "Application": "Set", "content": "", "Extension": "+31853030903", "AppData": "ARRAY(l_route_step_id,l_route_module,ring_time,blocked)=551001,phoneaccount,60,0", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "551001", "Event": "VarSet", "Variable": "l_route_step_id", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "phoneaccount", "Event": "VarSet", "Variable": "l_route_module", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "60", "Event": "VarSet", "Variable": "ring_time", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "0", "Event": "VarSet", "Variable": "blocked", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_root", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "8", "Application": "GotoIf", "content": "", "Extension": "+31853030903", "AppData": "0?done", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_root", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "9", "Application": "GotoIf", "content": "", "Extension": "+31853030903", "AppData": "0?skipblocked", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_root", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "10", "Application": "Gosub", "content": "", "Extension": "+31853030903", "AppData": "osvpi_route_phoneaccount_step,ID551001,1", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "0", "Event": "VarSet", "Variable": "LOCAL(ARGC)", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "1", "Event": "VarSet", "Variable": "ODBCROWS", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "SUCCESS", "Event": "VarSet", "Variable": "ODBCSTATUS", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "interfaces", "Event": "VarSet", "Variable": "~ODBCFIELDS~", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount_step", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "1", "Application": "Set", "content": "", "Extension": "ID551001", "AppData": "ARRAY(LOCAL(interfaces))=Local/ID730651@osvpi_route_phoneaccount", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "Local/ID730651@osvpi_route_phoneaccount", "Event": "VarSet", "Variable": "LOCAL(interfaces)", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount_step", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "2", "Application": "ExecIf", "content": "", "Extension": "ID551001", "AppData": "0?Return()", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount_step", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "3", "Application": "Goto", "content": "", "Extension": "ID551001", "AppData": "+31853030903,1", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount_step", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "1", "Application": "Dial", "content": "", "Extension": "+31853030903", "AppData": "Local/ID730651@osvpi_route_phoneaccount,60", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "DIALSTATUS", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "DIALEDPEERNAME", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "ANSWEREDTIME", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "DIALEDTIME", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "call,all", "AccountCode": "", "CallerIDName": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;1", "CallerIDNum": "", "Event": "Newchannel", "Uniqueid": "ua0-acc-1509629983.1136", "content": "", "ChannelState": "0", "ChannelStateDesc": "Down", "Context": "osvpi_route_phoneaccount", "Exten": "ID730651"}, - {"Privilege": "call,all", "AccountCode": "", "CallerIDName": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2", "CallerIDNum": "", "Event": "Newchannel", "Uniqueid": "ua0-acc-1509629983.1137", "content": "", "ChannelState": "4", "ChannelStateDesc": "Ring", "Context": "osvpi_route_phoneaccount", "Exten": "ID730651"}, - {"Privilege": "dialplan,all", "Value": "ID730651@osvpi_route_phoneaccount", "Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "content": "", "Uniqueid": "ua0-acc-1509629983.1136", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;1"}, - {"Privilege": "call,all", "CallerIDNum": "+31853030903", "Event": "NewCallerid", "Uniqueid": "ua0-acc-1509629983.1136", "content": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;1"}, - {"Privilege": "call,all", "LocalOptimization": "Yes", "Event": "LocalBridge", "Channel2": "Local/ID730651@osvpi_route_phoneaccount-00000141;2", "content": "", "Channel1": "Local/ID730651@osvpi_route_phoneaccount-00000141;1", "Exten": "ID730651", "Uniqueid1": "ua0-acc-1509629983.1136", "Context": "osvpi_route_phoneaccount", "Uniqueid2": "ua0-acc-1509629983.1137"}, - {"Privilege": "call,all", "DestUniqueID": "ua0-acc-1509629983.1136", "Dialstring": "ID730651@osvpi_route_phoneaccount", "CallerIDName": "", "Channel": "SIP/voipgrid-siproute-dev-000001ed", "CallerIDNum": "+31508009000", "Event": "Dial", "Destination": "Local/ID730651@osvpi_route_phoneaccount-00000141;1", "UniqueID": "ua0-acc-1509629983.1135", "SubEvent": "Begin", "ConnectedLineName": "", "ConnectedLineNum": "", "content": ""}, - {"Privilege": "dialplan,all", "Value": "1", "Event": "VarSet", "Variable": "ODBCROWS", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "SUCCESS", "Event": "VarSet", "Variable": "ODBCSTATUS", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account", "Event": "VarSet", "Variable": "~ODBCFIELDS~", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1137", "Priority": "1", "Application": "Set", "content": "", "Extension": "ID730651", "AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=126680005,accountid,dutch,from,,0", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "126680005", "Event": "VarSet", "Variable": "__dst_account_id", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "accountid", "Event": "VarSet", "Variable": "l_mangle_did", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "dutch", "Event": "VarSet", "Variable": "l_mangle_cli", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "from", "Event": "VarSet", "Variable": "l_cli_header", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "l_primary_pickupgroup", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "0", "Event": "VarSet", "Variable": "app_account", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1137", "Priority": "2", "Application": "GotoIf", "content": "", "Extension": "ID730651", "AppData": "0?vialer", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1137", "Priority": "3", "Application": "Set", "content": "", "Extension": "ID730651", "AppData": "_PICKUPMARK=", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "_PICKUPMARK", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1137", "Priority": "4", "Application": "Set", "content": "", "Extension": "ID730651", "AppData": "l_trunk=0", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "0", "Event": "VarSet", "Variable": "l_trunk", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1137", "Priority": "5", "Application": "Goto", "content": "", "Extension": "ID730651", "AppData": "osvpi_route_account,ID730651,1", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "1", "Event": "VarSet", "Variable": "ODBCROWS", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "SUCCESS", "Event": "VarSet", "Variable": "ODBCSTATUS", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "proxy", "Event": "VarSet", "Variable": "~ODBCFIELDS~", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_account", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1137", "Priority": "1", "Application": "Set", "content": "", "Extension": "ID730651", "AppData": "ARRAY(l_proxy)=195.35.115.203", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "195.35.115.203", "Event": "VarSet", "Variable": "l_proxy", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_account", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1137", "Priority": "2", "Application": "Gosub", "content": "", "Extension": "ID730651", "AppData": "osvpi_proc_mangle_number,accountid,1(126680005,+31853030903)", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "126680005", "Event": "VarSet", "Variable": "LOCAL(ARG1)", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "+31853030903", "Event": "VarSet", "Variable": "LOCAL(ARG2)", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "2", "Event": "VarSet", "Variable": "LOCAL(ARGC)", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1137", "Priority": "1", "Application": "Set", "content": "", "Extension": "accountid", "AppData": "MANGLED_EXTEN=126680005", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "126680005", "Event": "VarSet", "Variable": "MANGLED_EXTEN", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1137", "Priority": "2", "Application": "Return", "content": "", "Extension": "accountid", "AppData": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "GOSUB_RETVAL", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_account", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1137", "Priority": "3", "Application": "Set", "content": "", "Extension": "ID730651", "AppData": "l_did=126680005", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "126680005", "Event": "VarSet", "Variable": "l_did", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_account", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1137", "Priority": "4", "Application": "Gosub", "content": "", "Extension": "ID730651", "AppData": "osvpi_proc_mangle_number,dutch,1(126680005,+31508009000)", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "126680005", "Event": "VarSet", "Variable": "LOCAL(ARG1)", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "+31508009000", "Event": "VarSet", "Variable": "LOCAL(ARG2)", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "2", "Event": "VarSet", "Variable": "LOCAL(ARGC)", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1137", "Priority": "1", "Application": "GotoIf", "content": "", "Extension": "dutch", "AppData": "0?fullzero,1", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1137", "Priority": "2", "Application": "Set", "content": "", "Extension": "dutch", "AppData": "MANGLED_EXTEN=0508009000", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "0508009000", "Event": "VarSet", "Variable": "MANGLED_EXTEN", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1137", "Priority": "3", "Application": "Return", "content": "", "Extension": "dutch", "AppData": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "GOSUB_RETVAL", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_account", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1137", "Priority": "5", "Application": "Set", "content": "", "Extension": "ID730651", "AppData": "l_mangle_cli_hdr=from-dutch", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "from-dutch", "Event": "VarSet", "Variable": "l_mangle_cli_hdr", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_account", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1137", "Priority": "6", "Application": "Set", "content": "", "Extension": "ID730651", "AppData": "l_fromuser=", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "l_fromuser", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_account", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1137", "Priority": "7", "Application": "ExecIf", "content": "", "Extension": "ID730651", "AppData": "1?Set(l_fromuser=0508009000)", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "0508009000", "Event": "VarSet", "Variable": "l_fromuser", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "1", "Event": "VarSet", "Variable": "ODBCROWS", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "SUCCESS", "Event": "VarSet", "Variable": "ODBCSTATUS", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "IF((SELECT 1 FROM baseaccount_account ba INNER JOIN userdestination_selecteduserdestination udsud ON udsud.phoneaccount_id = ba.id INNER JOIN userdestination_userdestination udud ON udud.id = udsud.userdestination_id INNER JOIN crm_cloudctiuser cccu O", "Event": "VarSet", "Variable": "~ODBCFIELDS~", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_account", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1137", "Priority": "8", "Application": "Set", "content": "", "Extension": "ID730651", "AppData": "ARRAY(cloudcti)=0", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "0", "Event": "VarSet", "Variable": "cloudcti", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_account", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1137", "Priority": "9", "Application": "GotoIf", "content": "", "Extension": "ID730651", "AppData": "1?skipcloudcti", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "1", "Event": "VarSet", "Variable": "ODBCROWS", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "SUCCESS", "Event": "VarSet", "Variable": "ODBCSTATUS", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "GROUP_CONCAT(DISTINCT(cn.url) SEPARATOR ' '),internal_number,GROUP_CONCAT(DISTINCT(ud.internal_number) SEPARATOR ' ')", "Event": "VarSet", "Variable": "~ODBCFIELDS~", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_account", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1137", "Priority": "11", "Application": "Set", "content": "", "Extension": "ID730651", "AppData": "ARRAY(webhooks,accountinternalnumber,userinternalnumbers)=,217,", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "webhooks", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "217", "Event": "VarSet", "Variable": "accountinternalnumber", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "userinternalnumbers", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_account", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1137", "Priority": "13", "Application": "Goto", "content": "", "Extension": "ID730651", "AppData": "osvpi_proc_proxy_out,+31853030903,1", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1137", "Priority": "1", "Application": "SIPAddHeader", "content": "", "Extension": "+31853030903", "AppData": "X-Accountcode: 126680005", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "X-Accountcode: 126680005", "Event": "VarSet", "Variable": "__SIPADDHEADER01", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1137", "Priority": "2", "Application": "SIPAddHeader", "content": "", "Extension": "+31853030903", "AppData": "X-Insecure-Protection: geheim", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "X-Insecure-Protection: geheim", "Event": "VarSet", "Variable": "__SIPADDHEADER02", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1137", "Priority": "3", "Application": "SIPAddHeader", "content": "", "Extension": "+31853030903", "AppData": "X-Mangle-Cli: from-dutch", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "X-Mangle-Cli: from-dutch", "Event": "VarSet", "Variable": "__SIPADDHEADER03", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1137", "Priority": "4", "Application": "Set", "content": "", "Extension": "+31853030903", "AppData": "_dial_options_callaccept=", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "_dial_options_callaccept", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1137", "Priority": "5", "Application": "Set", "content": "", "Extension": "+31853030903", "AppData": "_dial_options_callnotify=", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "_dial_options_callnotify", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1137", "Priority": "6", "Application": "ExecIf", "content": "", "Extension": "+31853030903", "AppData": "0?Set(l_proxy=195.35.115.203)", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1137", "Priority": "7", "Application": "Set", "content": "", "Extension": "+31853030903", "AppData": "l_extra_options=", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "l_extra_options", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1137", "Priority": "8", "Application": "Dial", "content": "", "Extension": "+31853030903", "AppData": "SIP/126680005/126680005/195.35.115.203!!0508009000,,", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "DIALSTATUS", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "DIALEDPEERNAME", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "ANSWEREDTIME", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "DIALEDTIME", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "call,all", "AccountCode": "126680005", "CallerIDName": "", "Channel": "SIP/126680005-000001ee", "CallerIDNum": "", "Event": "Newchannel", "Uniqueid": "ua0-acc-1509629983.1138", "content": "", "ChannelState": "0", "ChannelStateDesc": "Down", "Context": "osvpi_account", "Exten": ""}, - {"Privilege": "dialplan,all", "Value": "6fe0041110c182f86cca897948e3b0db@acceptatie.voipgrid.nl", "Event": "VarSet", "Variable": "SIPCALLID", "content": "", "Uniqueid": "ua0-acc-1509629983.1138", "Channel": "SIP/126680005-000001ee"}, - {"Privilege": "dialplan,all", "Value": "12668", "Event": "VarSet", "Variable": "__client_id", "content": "", "Uniqueid": "ua0-acc-1509629983.1138", "Channel": "SIP/126680005-000001ee"}, - {"Privilege": "dialplan,all", "Value": "126680005", "Event": "VarSet", "Variable": "__account_id", "content": "", "Uniqueid": "ua0-acc-1509629983.1138", "Channel": "SIP/126680005-000001ee"}, - {"Privilege": "dialplan,all", "Value": "no", "Event": "VarSet", "Variable": "__record_call", "content": "", "Uniqueid": "ua0-acc-1509629983.1138", "Channel": "SIP/126680005-000001ee"}, - {"Privilege": "dialplan,all", "Value": "31", "Event": "VarSet", "Variable": "__intprefix", "content": "", "Uniqueid": "ua0-acc-1509629983.1138", "Channel": "SIP/126680005-000001ee"}, - {"Privilege": "dialplan,all", "Value": "4", "Event": "VarSet", "Variable": "__limit_account", "content": "", "Uniqueid": "ua0-acc-1509629983.1138", "Channel": "SIP/126680005-000001ee"}, - {"Privilege": "dialplan,all", "Value": "0", "Event": "VarSet", "Variable": "__limit_client", "content": "", "Uniqueid": "ua0-acc-1509629983.1138", "Channel": "SIP/126680005-000001ee"}, - {"Privilege": "dialplan,all", "Value": "1", "Event": "VarSet", "Variable": "__hide_ext_cliname", "content": "", "Uniqueid": "ua0-acc-1509629983.1138", "Channel": "SIP/126680005-000001ee"}, - {"Privilege": "dialplan,all", "Value": "osvpi_account_transfer", "Event": "VarSet", "Variable": "__TRANSFER_CONTEXT", "content": "", "Uniqueid": "ua0-acc-1509629983.1138", "Channel": "SIP/126680005-000001ee"}, - {"Privilege": "dialplan,all", "Value": "126680005/126680005/195.35.115.203!!0508009000", "Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "content": "", "Uniqueid": "ua0-acc-1509629983.1138", "Channel": "SIP/126680005-000001ee"}, - {"Privilege": "call,all", "CallerIDNum": "+31853030903", "Event": "NewCallerid", "Uniqueid": "ua0-acc-1509629983.1138", "content": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "Channel": "SIP/126680005-000001ee"}, - {"Privilege": "call,all", "DestUniqueID": "ua0-acc-1509629983.1138", "Dialstring": "126680005/126680005/195.35.115.203!!0508009000", "CallerIDName": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2", "CallerIDNum": "+31508009000", "Event": "Dial", "Destination": "SIP/126680005-000001ee", "UniqueID": "ua0-acc-1509629983.1137", "SubEvent": "Begin", "ConnectedLineName": "", "ConnectedLineNum": "+31853030903", "content": ""}, - {"Privilege": "dialplan,all", "Value": "sipproxy.acceptatie.voipgrid.nl", "Event": "VarSet", "Variable": "SIPDOMAIN", "content": "", "Uniqueid": "ua0-acc-1509629983.1138", "Channel": "SIP/126680005-000001ee"}, - {"Privilege": "call,all", "AccountCode": "", "CallerIDName": "", "Channel": "Local/402@osvpi_account-00000142;1", "CallerIDNum": "", "Event": "Newchannel", "Uniqueid": "ua0-acc-1509629984.1139", "content": "", "ChannelState": "0", "ChannelStateDesc": "Down", "Context": "osvpi_account", "Exten": "402"}, - {"Privilege": "call,all", "AccountCode": "", "CallerIDName": "", "Channel": "Local/402@osvpi_account-00000142;2", "CallerIDNum": "", "Event": "Newchannel", "Uniqueid": "ua0-acc-1509629984.1140", "content": "", "ChannelState": "4", "ChannelStateDesc": "Ring", "Context": "osvpi_account", "Exten": "402"}, - {"Privilege": "call,all", "CallerIDNum": "+31853030903", "Event": "NewCallerid", "Uniqueid": "ua0-acc-1509629984.1139", "content": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "Channel": "Local/402@osvpi_account-00000142;1"}, - {"Privilege": "call,all", "LocalOptimization": "Yes", "Event": "LocalBridge", "Channel2": "Local/402@osvpi_account-00000142;2", "content": "", "Channel1": "Local/402@osvpi_account-00000142;1", "Exten": "402", "Uniqueid1": "ua0-acc-1509629984.1139", "Context": "osvpi_account", "Uniqueid2": "ua0-acc-1509629984.1140"}, - {"Privilege": "call,all", "DestUniqueID": "ua0-acc-1509629984.1139", "Dialstring": "402@osvpi_account", "CallerIDName": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2", "CallerIDNum": "+31508009000", "Event": "Dial", "Destination": "Local/402@osvpi_account-00000142;1", "UniqueID": "ua0-acc-1509629983.1137", "SubEvent": "Begin", "ConnectedLineName": "", "ConnectedLineNum": "+31853030903", "content": ""}, - {"Privilege": "call,all", "AccountCode": "12668", "CallerIDName": "", "Channel": "SIP/126680005-000001ee", "CallerIDNum": "+31853030903", "Event": "Hangup", "Uniqueid": "ua0-acc-1509629983.1138", "content": "", "Cause": "16", "ConnectedLineName": "", "Cause-txt": "Normal Clearing", "ConnectedLineNum": "+31508009000"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "1", "Application": "ExecIf", "content": "", "Extension": "402", "AppData": "0?GotoIf(1?osvpi_proc_hangup_insecure,402,1)", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "2", "Application": "Gosub", "content": "", "Extension": "402", "AppData": "osvpi_proc_check_forwards,s,1", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "0", "Event": "VarSet", "Variable": "LOCAL(ARGC)", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "1", "Application": "GotoIf", "content": "", "Extension": "s", "AppData": "2?check,1", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "1", "Application": "Set", "content": "", "Extension": "check", "AppData": "MASTER_CHANNEL(SIP_MAX_FORWARDS)=15", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "15", "Event": "VarSet", "Variable": "SIP_MAX_FORWARDS", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "2", "Application": "NoOp", "content": "", "Extension": "check", "AppData": "DEBUG: MaxForwards: decremented to: 15", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "3", "Application": "GotoIf", "content": "", "Extension": "check", "AppData": "0?osvpi_handle_loop,ii+31853030903,1", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_forwards", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "4", "Application": "Return", "content": "", "Extension": "check", "AppData": "", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "GOSUB_RETVAL", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "3", "Application": "GotoIf", "content": "", "Extension": "402", "AppData": "1?osvpi_account_transfer,402,1", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "1", "Application": "NoOp", "content": "", "Extension": "402", "AppData": "DEBUG: XFER: accountcode=12668 client_id=12668 account_id=", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "2", "Application": "GotoIf", "content": "", "Extension": "402", "AppData": "0?accountinfo", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "3", "Application": "Set", "content": "", "Extension": "402", "AppData": "CALLERID(name)=", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "4", "Application": "Set", "content": "", "Extension": "402", "AppData": "CALLERID(num)=+31508009000", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "5", "Application": "Set", "content": "", "Extension": "402", "AppData": "CALLERID(pres)=allowed_passed_screen", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "6", "Application": "Set", "content": "", "Extension": "402", "AppData": "l_changed=1", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "1", "Event": "VarSet", "Variable": "l_changed", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "7", "Application": "ForkCDR", "content": "", "Extension": "402", "AppData": "ATe", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "8", "Application": "GotoIf", "content": "", "Extension": "402", "AppData": "0?blindxfer:code302or482", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "27", "Application": "NoOp", "content": "", "Extension": "402", "AppData": "DEBUG: 302/482: RDNIS=126680005 dst_account_id=126680005", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "28", "Application": "ExecIf", "content": "", "Extension": "402", "AppData": "0?Hangup()", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "29", "Application": "NoOp", "content": "", "Extension": "402", "AppData": "New caller is 126680005", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "30", "Application": "Set", "content": "", "Extension": "402", "AppData": "CDR(accountcode)=126680005", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "call,all", "Event": "NewAccountCode", "Uniqueid": "ua0-acc-1509629984.1140", "content": "", "OldAccountCode": "12668", "AccountCode": "126680005", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "31", "Application": "Set", "content": "", "Extension": "402", "AppData": "__account_id=126680005", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "126680005", "Event": "VarSet", "Variable": "__account_id", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "32", "Application": "Set", "content": "", "Extension": "402", "AppData": "__dst_account_id=", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "__dst_account_id", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "33", "Application": "Set", "content": "", "Extension": "402", "AppData": "__TRANSFER_CONTEXT=osvpi_account_transfer", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "osvpi_account_transfer", "Event": "VarSet", "Variable": "__TRANSFER_CONTEXT", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "34", "Application": "Set", "content": "", "Extension": "402", "AppData": "user_privacy=0", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "0", "Event": "VarSet", "Variable": "user_privacy", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "35", "Application": "Set", "content": "", "Extension": "402", "AppData": "is_transfer=1", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "1", "Event": "VarSet", "Variable": "is_transfer", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "1", "Event": "VarSet", "Variable": "ODBCROWS", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "SUCCESS", "Event": "VarSet", "Variable": "ODBCSTATUS", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "client_id,intprefix,internal_number,limit_account,limit_client", "Event": "VarSet", "Variable": "~ODBCFIELDS~", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "36", "Application": "ExecIf", "content": "", "Extension": "402", "AppData": "1?Set(ARRAY(__client_id,__intprefix,dummy,__limit_account,__limit_client)=12668,31,217,4,0)", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "12668", "Event": "VarSet", "Variable": "__client_id", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "31", "Event": "VarSet", "Variable": "__intprefix", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "217", "Event": "VarSet", "Variable": "dummy", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "4", "Event": "VarSet", "Variable": "__limit_account", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "0", "Event": "VarSet", "Variable": "__limit_client", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "37", "Application": "ExecIf", "content": "", "Extension": "402", "AppData": "0?Set(CHANNEL(musicclass)=)", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "38", "Application": "NoOp", "content": "", "Extension": "402", "AppData": "DEBUG: CLI: name=\"\" num=+31508009000 ANI=+31508009000 presence=allowed_passed_screen", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account_transfer", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "39", "Application": "Goto", "content": "", "Extension": "402", "AppData": "osvpi_account,402,checkspeeddial", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "19", "Application": "GotoIf", "content": "", "Extension": "402", "AppData": "1?continue", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "22", "Application": "Gosub", "content": "", "Extension": "402", "AppData": "osvpi_proc_set_i18n_region,31,1", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "0", "Event": "VarSet", "Variable": "LOCAL(ARGC)", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_set_i18n_region", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "1", "Application": "Set", "content": "", "Extension": "31", "AppData": "i18n_region=NL", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "NL", "Event": "VarSet", "Variable": "i18n_region", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_set_i18n_region", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "2", "Application": "Return", "content": "", "Extension": "31", "AppData": "", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "GOSUB_RETVAL", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "23", "Application": "Goto", "content": "", "Extension": "402", "AppData": "osvpi_account_emergency_NL,402,1", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account_emergency_NL", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "1", "Application": "Goto", "content": "", "Extension": "402", "AppData": "osvpi_account_no_emergency,402,1", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account_no_emergency", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "1", "Application": "Goto", "content": "", "Extension": "402", "AppData": "osvpi_account,402,no-emergency", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "24", "Application": "Goto", "content": "", "Extension": "402", "AppData": "osvpi_account_clean,402,1", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "1", "Application": "Set", "content": "", "Extension": "402", "AppData": "return=osvpi_account_clean", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "osvpi_account_clean", "Event": "VarSet", "Variable": "return", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "2", "Application": "Goto", "content": "", "Extension": "402", "AppData": "osvpi_return_to_canonical,31i402,1", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "31i402", "Event": "VarSet", "Variable": "INVALID_EXTEN", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_return_to_canonical", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "1", "Application": "Goto", "content": "", "Extension": "i", "AppData": "osvpi_account_clean,402,local", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "3", "Application": "GotoIf", "content": "", "Extension": "402", "AppData": "0?extern", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "4", "Application": "Gosub", "content": "", "Extension": "402", "AppData": "osvpi_proc_set_callerid,402,1(126680005,0,0)", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "126680005", "Event": "VarSet", "Variable": "LOCAL(ARG1)", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "0", "Event": "VarSet", "Variable": "LOCAL(ARG2)", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "0", "Event": "VarSet", "Variable": "LOCAL(ARG3)", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "3", "Event": "VarSet", "Variable": "LOCAL(ARGC)", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "1", "Application": "GotoIf", "content": "", "Extension": "402", "AppData": "1?done", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_set_callerid", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "10", "Application": "Return", "content": "", "Extension": "402", "AppData": "", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "GOSUB_RETVAL", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account_clean", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "5", "Application": "GotoIf", "content": "", "Extension": "402", "AppData": "3?osvpi_account_call_int,402,1:i,1", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "1", "Application": "Gosub", "content": "", "Extension": "402", "AppData": "osvpi_proc_check_limits,402,1", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "0", "Event": "VarSet", "Variable": "LOCAL(ARGC)", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "1", "Application": "NoOp", "content": "", "Extension": "402", "AppData": "DEBUG: call_limit: client 0/0 and account 0/4", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "2", "Application": "GotoIf", "content": "", "Extension": "402", "AppData": "0?osvpi_handle_limit,402,client", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "3", "Application": "GotoIf", "content": "", "Extension": "402", "AppData": "0?osvpi_handle_limit,402,account", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "4", "Application": "Set", "content": "", "Extension": "402", "AppData": "GROUP(account_lim)=126680005", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "5", "Application": "Set", "content": "", "Extension": "402", "AppData": "GROUP(client_lim)=12668", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_limits", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "6", "Application": "Return", "content": "", "Extension": "402", "AppData": "", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "GOSUB_RETVAL", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "2", "Application": "Gosub", "content": "", "Extension": "402", "AppData": "osvpi_proc_check_recurse,402,1(12668)", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "12668", "Event": "VarSet", "Variable": "LOCAL(ARG1)", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "1", "Event": "VarSet", "Variable": "LOCAL(ARGC)", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "1", "Application": "Set", "content": "", "Extension": "402", "AppData": "LOCAL(exten)=12668:402", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "12668:402", "Event": "VarSet", "Variable": "LOCAL(exten)", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "2", "Application": "NoOp", "content": "", "Extension": "402", "AppData": "Recursion checking 12668:402 against 12668:+31853030903 ", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "3", "Application": "Set", "content": "", "Extension": "402", "AppData": "LOCAL(n)=2", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "2", "Event": "VarSet", "Variable": "LOCAL(n)", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "4", "Application": "Set", "content": "", "Extension": "402", "AppData": "LOCAL(i)=1", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "1", "Event": "VarSet", "Variable": "LOCAL(i)", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "5", "Application": "GotoIf", "content": "", "Extension": "402", "AppData": "0?add", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "6", "Application": "GotoIf", "content": "", "Extension": "402", "AppData": "0?osvpi_handle_loop,ii402,1", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "7", "Application": "Set", "content": "", "Extension": "402", "AppData": "i=2", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "2", "Event": "VarSet", "Variable": "i", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "8", "Application": "Goto", "content": "", "Extension": "402", "AppData": "while", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "5", "Application": "GotoIf", "content": "", "Extension": "402", "AppData": "0?add", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "6", "Application": "GotoIf", "content": "", "Extension": "402", "AppData": "0?osvpi_handle_loop,ii402,1", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "7", "Application": "Set", "content": "", "Extension": "402", "AppData": "i=3", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "3", "Event": "VarSet", "Variable": "i", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "8", "Application": "Goto", "content": "", "Extension": "402", "AppData": "while", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "5", "Application": "GotoIf", "content": "", "Extension": "402", "AppData": "1?add", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "9", "Application": "Set", "content": "", "Extension": "402", "AppData": "__EXTEN_LIST=12668:+31853030903 12668:402 ", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "12668:+31853030903 12668:402 ", "Event": "VarSet", "Variable": "__EXTEN_LIST", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "10", "Application": "Set", "content": "", "Extension": "402", "AppData": "__EXTEN_LIST_LAST_EDIT_TIME=1509629984", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "1509629984", "Event": "VarSet", "Variable": "__EXTEN_LIST_LAST_EDIT_TIME", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_check_recurse", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "11", "Application": "Return", "content": "", "Extension": "402", "AppData": "", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "GOSUB_RETVAL", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "3", "Application": "Set", "content": "", "Extension": "402", "AppData": "__ORIG_EXTEN=402", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "402", "Event": "VarSet", "Variable": "__ORIG_EXTEN", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "0", "Event": "VarSet", "Variable": "ODBCROWS", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "NODATA", "Event": "VarSet", "Variable": "ODBCSTATUS", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "4", "Application": "Set", "content": "", "Extension": "402", "AppData": "ARRAY(conference_id,user_password,admin_password,conference_language)=", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "conference_id", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "user_password", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "admin_password", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "conference_language", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "5", "Application": "GotoIf", "content": "", "Extension": "402", "AppData": "0?osvpi_route_conference,ID,1", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "0", "Event": "VarSet", "Variable": "ODBCROWS", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "NODATA", "Event": "VarSet", "Variable": "ODBCSTATUS", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "6", "Application": "Set", "content": "", "Extension": "402", "AppData": "ARRAY(route_id,client_timezone)=", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "route_id", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "client_timezone", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "7", "Application": "GotoIf", "content": "", "Extension": "402", "AppData": "0?osvpi_route_root,402,restart", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "0", "Event": "VarSet", "Variable": "ODBCROWS", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "NODATA", "Event": "VarSet", "Variable": "ODBCSTATUS", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "8", "Application": "Set", "content": "", "Extension": "402", "AppData": "ARRAY(all_extensions,limited_extensions,password,account_spy_language)=", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "all_extensions", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "limited_extensions", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "password", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "account_spy_language", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "9", "Application": "GotoIf", "content": "", "Extension": "402", "AppData": "0?osvpi_account_spy,402,1", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "1", "Event": "VarSet", "Variable": "ODBCROWS", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "SUCCESS", "Event": "VarSet", "Variable": "ODBCSTATUS", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "interfaces", "Event": "VarSet", "Variable": "~ODBCFIELDS~", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "10", "Application": "Set", "content": "", "Extension": "402", "AppData": "ARRAY(interfaces)=Local/ID730671@osvpi_route_phoneaccount&Local/ID730681@osvpi_route_phoneaccount", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "Local/ID730671@osvpi_route_phoneaccount&Local/ID730681@osvpi_route_phoneaccount", "Event": "VarSet", "Variable": "interfaces", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "11", "Application": "GotoIf", "content": "", "Extension": "402", "AppData": "0?osvpi_handle_unallocated,402,1", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_account_call_int", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "12", "Application": "Dial", "content": "", "Extension": "402", "AppData": "Local/ID730671@osvpi_route_phoneaccount&Local/ID730681@osvpi_route_phoneaccount", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "DIALSTATUS", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "DIALEDPEERNAME", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "ANSWEREDTIME", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "DIALEDTIME", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "call,all", "AccountCode": "", "CallerIDName": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;1", "CallerIDNum": "", "Event": "Newchannel", "Uniqueid": "ua0-acc-1509629984.1141", "content": "", "ChannelState": "0", "ChannelStateDesc": "Down", "Context": "osvpi_route_phoneaccount", "Exten": "ID730671"}, - {"Privilege": "call,all", "AccountCode": "", "CallerIDName": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2", "CallerIDNum": "", "Event": "Newchannel", "Uniqueid": "ua0-acc-1509629984.1142", "content": "", "ChannelState": "4", "ChannelStateDesc": "Ring", "Context": "osvpi_route_phoneaccount", "Exten": "ID730671"}, - {"Privilege": "dialplan,all", "Value": "ID730671@osvpi_route_phoneaccount", "Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "content": "", "Uniqueid": "ua0-acc-1509629984.1141", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;1"}, - {"Privilege": "call,all", "CallerIDNum": "402", "Event": "NewCallerid", "Uniqueid": "ua0-acc-1509629984.1141", "content": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;1"}, - {"Privilege": "call,all", "AccountCode": "", "CallerIDName": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;1", "CallerIDNum": "", "Event": "Newchannel", "Uniqueid": "ua0-acc-1509629984.1143", "content": "", "ChannelState": "0", "ChannelStateDesc": "Down", "Context": "osvpi_route_phoneaccount", "Exten": "ID730681"}, - {"Privilege": "call,all", "AccountCode": "", "CallerIDName": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2", "CallerIDNum": "", "Event": "Newchannel", "Uniqueid": "ua0-acc-1509629984.1144", "content": "", "ChannelState": "4", "ChannelStateDesc": "Ring", "Context": "osvpi_route_phoneaccount", "Exten": "ID730681"}, - {"Privilege": "dialplan,all", "Value": "ID730681@osvpi_route_phoneaccount", "Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "content": "", "Uniqueid": "ua0-acc-1509629984.1143", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;1"}, - {"Privilege": "call,all", "CallerIDNum": "402", "Event": "NewCallerid", "Uniqueid": "ua0-acc-1509629984.1143", "content": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;1"}, - {"Privilege": "call,all", "LocalOptimization": "Yes", "Event": "LocalBridge", "Channel2": "Local/ID730671@osvpi_route_phoneaccount-00000143;2", "content": "", "Channel1": "Local/ID730671@osvpi_route_phoneaccount-00000143;1", "Exten": "ID730671", "Uniqueid1": "ua0-acc-1509629984.1141", "Context": "osvpi_route_phoneaccount", "Uniqueid2": "ua0-acc-1509629984.1142"}, - {"Privilege": "call,all", "DestUniqueID": "ua0-acc-1509629984.1141", "Dialstring": "ID730671@osvpi_route_phoneaccount", "CallerIDName": "", "Channel": "Local/402@osvpi_account-00000142;2", "CallerIDNum": "+31508009000", "Event": "Dial", "Destination": "Local/ID730671@osvpi_route_phoneaccount-00000143;1", "UniqueID": "ua0-acc-1509629984.1140", "SubEvent": "Begin", "ConnectedLineName": "", "ConnectedLineNum": "+31853030903", "content": ""}, - {"Privilege": "call,all", "LocalOptimization": "Yes", "Event": "LocalBridge", "Channel2": "Local/ID730681@osvpi_route_phoneaccount-00000144;2", "content": "", "Channel1": "Local/ID730681@osvpi_route_phoneaccount-00000144;1", "Exten": "ID730681", "Uniqueid1": "ua0-acc-1509629984.1143", "Context": "osvpi_route_phoneaccount", "Uniqueid2": "ua0-acc-1509629984.1144"}, - {"Privilege": "call,all", "DestUniqueID": "ua0-acc-1509629984.1143", "Dialstring": "ID730681@osvpi_route_phoneaccount", "CallerIDName": "", "Channel": "Local/402@osvpi_account-00000142;2", "CallerIDNum": "+31508009000", "Event": "Dial", "Destination": "Local/ID730681@osvpi_route_phoneaccount-00000144;1", "UniqueID": "ua0-acc-1509629984.1140", "SubEvent": "Begin", "ConnectedLineName": "", "ConnectedLineNum": "+31853030903", "content": ""}, - {"Privilege": "dialplan,all", "Value": "1", "Event": "VarSet", "Variable": "ODBCROWS", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "SUCCESS", "Event": "VarSet", "Variable": "ODBCSTATUS", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account", "Event": "VarSet", "Variable": "~ODBCFIELDS~", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1144", "Priority": "1", "Application": "Set", "content": "", "Extension": "ID730681", "AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=126680024,accountid,dutch,from,,0", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "126680024", "Event": "VarSet", "Variable": "__dst_account_id", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "accountid", "Event": "VarSet", "Variable": "l_mangle_did", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "dutch", "Event": "VarSet", "Variable": "l_mangle_cli", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "from", "Event": "VarSet", "Variable": "l_cli_header", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "l_primary_pickupgroup", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "0", "Event": "VarSet", "Variable": "app_account", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1144", "Priority": "2", "Application": "GotoIf", "content": "", "Extension": "ID730681", "AppData": "0?vialer", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1144", "Priority": "3", "Application": "Set", "content": "", "Extension": "ID730681", "AppData": "_PICKUPMARK=", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "_PICKUPMARK", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1144", "Priority": "4", "Application": "Set", "content": "", "Extension": "ID730681", "AppData": "l_trunk=0", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "0", "Event": "VarSet", "Variable": "l_trunk", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1144", "Priority": "5", "Application": "Goto", "content": "", "Extension": "ID730681", "AppData": "osvpi_route_account,ID730681,1", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "1", "Event": "VarSet", "Variable": "ODBCROWS", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "SUCCESS", "Event": "VarSet", "Variable": "ODBCSTATUS", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "account_id,mangle_did,mangle_cli,cli_header,asterisk_primary_pickupgroup(a.id),app_account", "Event": "VarSet", "Variable": "~ODBCFIELDS~", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1142", "Priority": "1", "Application": "Set", "content": "", "Extension": "ID730671", "AppData": "ARRAY(__dst_account_id,l_mangle_did,l_mangle_cli,l_cli_header,l_primary_pickupgroup,app_account)=126680023,accountid,dutch,from,,0", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "126680023", "Event": "VarSet", "Variable": "__dst_account_id", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "accountid", "Event": "VarSet", "Variable": "l_mangle_did", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "dutch", "Event": "VarSet", "Variable": "l_mangle_cli", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "from", "Event": "VarSet", "Variable": "l_cli_header", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "l_primary_pickupgroup", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "0", "Event": "VarSet", "Variable": "app_account", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1142", "Priority": "2", "Application": "GotoIf", "content": "", "Extension": "ID730671", "AppData": "0?vialer", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1142", "Priority": "3", "Application": "Set", "content": "", "Extension": "ID730671", "AppData": "_PICKUPMARK=", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "_PICKUPMARK", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1142", "Priority": "4", "Application": "Set", "content": "", "Extension": "ID730671", "AppData": "l_trunk=0", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "0", "Event": "VarSet", "Variable": "l_trunk", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_phoneaccount", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1142", "Priority": "5", "Application": "Goto", "content": "", "Extension": "ID730671", "AppData": "osvpi_route_account,ID730671,1", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "1", "Event": "VarSet", "Variable": "ODBCROWS", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "SUCCESS", "Event": "VarSet", "Variable": "ODBCSTATUS", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "proxy", "Event": "VarSet", "Variable": "~ODBCFIELDS~", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_account", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1144", "Priority": "1", "Application": "Set", "content": "", "Extension": "ID730681", "AppData": "ARRAY(l_proxy)=195.35.115.203", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "195.35.115.203", "Event": "VarSet", "Variable": "l_proxy", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_account", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1144", "Priority": "2", "Application": "Gosub", "content": "", "Extension": "ID730681", "AppData": "osvpi_proc_mangle_number,accountid,1(126680024,402)", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "126680024", "Event": "VarSet", "Variable": "LOCAL(ARG1)", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "402", "Event": "VarSet", "Variable": "LOCAL(ARG2)", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "2", "Event": "VarSet", "Variable": "LOCAL(ARGC)", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1144", "Priority": "1", "Application": "Set", "content": "", "Extension": "accountid", "AppData": "MANGLED_EXTEN=126680024", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "126680024", "Event": "VarSet", "Variable": "MANGLED_EXTEN", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1144", "Priority": "2", "Application": "Return", "content": "", "Extension": "accountid", "AppData": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "GOSUB_RETVAL", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_account", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1144", "Priority": "3", "Application": "Set", "content": "", "Extension": "ID730681", "AppData": "l_did=126680024", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "126680024", "Event": "VarSet", "Variable": "l_did", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_account", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1144", "Priority": "4", "Application": "Gosub", "content": "", "Extension": "ID730681", "AppData": "osvpi_proc_mangle_number,dutch,1(126680024,+31508009000)", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "126680024", "Event": "VarSet", "Variable": "LOCAL(ARG1)", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "+31508009000", "Event": "VarSet", "Variable": "LOCAL(ARG2)", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "2", "Event": "VarSet", "Variable": "LOCAL(ARGC)", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1144", "Priority": "1", "Application": "GotoIf", "content": "", "Extension": "dutch", "AppData": "0?fullzero,1", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1144", "Priority": "2", "Application": "Set", "content": "", "Extension": "dutch", "AppData": "MANGLED_EXTEN=0508009000", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "0508009000", "Event": "VarSet", "Variable": "MANGLED_EXTEN", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1144", "Priority": "3", "Application": "Return", "content": "", "Extension": "dutch", "AppData": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "GOSUB_RETVAL", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_account", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1144", "Priority": "5", "Application": "Set", "content": "", "Extension": "ID730681", "AppData": "l_mangle_cli_hdr=from-dutch", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "from-dutch", "Event": "VarSet", "Variable": "l_mangle_cli_hdr", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_account", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1144", "Priority": "6", "Application": "Set", "content": "", "Extension": "ID730681", "AppData": "l_fromuser=", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "l_fromuser", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_account", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1144", "Priority": "7", "Application": "ExecIf", "content": "", "Extension": "ID730681", "AppData": "1?Set(l_fromuser=0508009000)", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "0508009000", "Event": "VarSet", "Variable": "l_fromuser", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "1", "Event": "VarSet", "Variable": "ODBCROWS", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "SUCCESS", "Event": "VarSet", "Variable": "ODBCSTATUS", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "proxy", "Event": "VarSet", "Variable": "~ODBCFIELDS~", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_account", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1142", "Priority": "1", "Application": "Set", "content": "", "Extension": "ID730671", "AppData": "ARRAY(l_proxy)=195.35.115.203", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "195.35.115.203", "Event": "VarSet", "Variable": "l_proxy", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_account", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1142", "Priority": "2", "Application": "Gosub", "content": "", "Extension": "ID730671", "AppData": "osvpi_proc_mangle_number,accountid,1(126680023,402)", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "126680023", "Event": "VarSet", "Variable": "LOCAL(ARG1)", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "402", "Event": "VarSet", "Variable": "LOCAL(ARG2)", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "2", "Event": "VarSet", "Variable": "LOCAL(ARGC)", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1142", "Priority": "1", "Application": "Set", "content": "", "Extension": "accountid", "AppData": "MANGLED_EXTEN=126680023", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "126680023", "Event": "VarSet", "Variable": "MANGLED_EXTEN", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1142", "Priority": "2", "Application": "Return", "content": "", "Extension": "accountid", "AppData": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "GOSUB_RETVAL", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_account", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1142", "Priority": "3", "Application": "Set", "content": "", "Extension": "ID730671", "AppData": "l_did=126680023", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "126680023", "Event": "VarSet", "Variable": "l_did", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_account", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1142", "Priority": "4", "Application": "Gosub", "content": "", "Extension": "ID730671", "AppData": "osvpi_proc_mangle_number,dutch,1(126680023,+31508009000)", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "126680023", "Event": "VarSet", "Variable": "LOCAL(ARG1)", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "+31508009000", "Event": "VarSet", "Variable": "LOCAL(ARG2)", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "2", "Event": "VarSet", "Variable": "LOCAL(ARGC)", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1142", "Priority": "1", "Application": "GotoIf", "content": "", "Extension": "dutch", "AppData": "0?fullzero,1", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1142", "Priority": "2", "Application": "Set", "content": "", "Extension": "dutch", "AppData": "MANGLED_EXTEN=0508009000", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "0508009000", "Event": "VarSet", "Variable": "MANGLED_EXTEN", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_mangle_number", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1142", "Priority": "3", "Application": "Return", "content": "", "Extension": "dutch", "AppData": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "GOSUB_RETVAL", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_account", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1142", "Priority": "5", "Application": "Set", "content": "", "Extension": "ID730671", "AppData": "l_mangle_cli_hdr=from-dutch", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "from-dutch", "Event": "VarSet", "Variable": "l_mangle_cli_hdr", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_account", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1142", "Priority": "6", "Application": "Set", "content": "", "Extension": "ID730671", "AppData": "l_fromuser=", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "l_fromuser", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_account", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1142", "Priority": "7", "Application": "ExecIf", "content": "", "Extension": "ID730671", "AppData": "1?Set(l_fromuser=0508009000)", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "0508009000", "Event": "VarSet", "Variable": "l_fromuser", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "1", "Event": "VarSet", "Variable": "ODBCROWS", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "SUCCESS", "Event": "VarSet", "Variable": "ODBCSTATUS", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "IF((SELECT 1 FROM baseaccount_account ba INNER JOIN userdestination_selecteduserdestination udsud ON udsud.phoneaccount_id = ba.id INNER JOIN userdestination_userdestination udud ON udud.id = udsud.userdestination_id INNER JOIN crm_cloudctiuser cccu O", "Event": "VarSet", "Variable": "~ODBCFIELDS~", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_account", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1144", "Priority": "8", "Application": "Set", "content": "", "Extension": "ID730681", "AppData": "ARRAY(cloudcti)=0", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "0", "Event": "VarSet", "Variable": "cloudcti", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_account", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1144", "Priority": "9", "Application": "GotoIf", "content": "", "Extension": "ID730681", "AppData": "1?skipcloudcti", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "1", "Event": "VarSet", "Variable": "ODBCROWS", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "SUCCESS", "Event": "VarSet", "Variable": "ODBCSTATUS", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "IF((SELECT 1 FROM baseaccount_account ba INNER JOIN userdestination_selecteduserdestination udsud ON udsud.phoneaccount_id = ba.id INNER JOIN userdestination_userdestination udud ON udud.id = udsud.userdestination_id INNER JOIN crm_cloudctiuser cccu O", "Event": "VarSet", "Variable": "~ODBCFIELDS~", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_account", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1142", "Priority": "8", "Application": "Set", "content": "", "Extension": "ID730671", "AppData": "ARRAY(cloudcti)=0", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "0", "Event": "VarSet", "Variable": "cloudcti", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_account", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1142", "Priority": "9", "Application": "GotoIf", "content": "", "Extension": "ID730671", "AppData": "1?skipcloudcti", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "1", "Event": "VarSet", "Variable": "ODBCROWS", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "SUCCESS", "Event": "VarSet", "Variable": "ODBCSTATUS", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "GROUP_CONCAT(DISTINCT(cn.url) SEPARATOR ' '),internal_number,GROUP_CONCAT(DISTINCT(ud.internal_number) SEPARATOR ' ')", "Event": "VarSet", "Variable": "~ODBCFIELDS~", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_account", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1144", "Priority": "11", "Application": "Set", "content": "", "Extension": "ID730681", "AppData": "ARRAY(webhooks,accountinternalnumber,userinternalnumbers)=,221,", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "webhooks", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "221", "Event": "VarSet", "Variable": "accountinternalnumber", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "userinternalnumbers", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_account", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1144", "Priority": "13", "Application": "Goto", "content": "", "Extension": "ID730681", "AppData": "osvpi_proc_proxy_out,402,1", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1144", "Priority": "1", "Application": "SIPAddHeader", "content": "", "Extension": "402", "AppData": "X-Accountcode: 126680024", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "X-Accountcode: 126680024", "Event": "VarSet", "Variable": "__SIPADDHEADER04", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1144", "Priority": "2", "Application": "SIPAddHeader", "content": "", "Extension": "402", "AppData": "X-Insecure-Protection: geheim", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "X-Insecure-Protection: geheim", "Event": "VarSet", "Variable": "__SIPADDHEADER05", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1144", "Priority": "3", "Application": "SIPAddHeader", "content": "", "Extension": "402", "AppData": "X-Mangle-Cli: from-dutch", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "X-Mangle-Cli: from-dutch", "Event": "VarSet", "Variable": "__SIPADDHEADER06", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1144", "Priority": "4", "Application": "Set", "content": "", "Extension": "402", "AppData": "_dial_options_callaccept=", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "_dial_options_callaccept", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1144", "Priority": "5", "Application": "Set", "content": "", "Extension": "402", "AppData": "_dial_options_callnotify=", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "_dial_options_callnotify", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1144", "Priority": "6", "Application": "ExecIf", "content": "", "Extension": "402", "AppData": "0?Set(l_proxy=195.35.115.203)", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1144", "Priority": "7", "Application": "Set", "content": "", "Extension": "402", "AppData": "l_extra_options=", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "l_extra_options", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1144", "Priority": "8", "Application": "Dial", "content": "", "Extension": "402", "AppData": "SIP/126680024/126680024/195.35.115.203!!0508009000,,", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "DIALSTATUS", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "DIALEDPEERNAME", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "ANSWEREDTIME", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "DIALEDTIME", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "1", "Event": "VarSet", "Variable": "ODBCROWS", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "SUCCESS", "Event": "VarSet", "Variable": "ODBCSTATUS", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "GROUP_CONCAT(DISTINCT(cn.url) SEPARATOR ' '),internal_number,GROUP_CONCAT(DISTINCT(ud.internal_number) SEPARATOR ' ')", "Event": "VarSet", "Variable": "~ODBCFIELDS~", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_account", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1142", "Priority": "11", "Application": "Set", "content": "", "Extension": "ID730671", "AppData": "ARRAY(webhooks,accountinternalnumber,userinternalnumbers)=,220,", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "webhooks", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "220", "Event": "VarSet", "Variable": "accountinternalnumber", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "userinternalnumbers", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_route_account", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1142", "Priority": "13", "Application": "Goto", "content": "", "Extension": "ID730671", "AppData": "osvpi_proc_proxy_out,402,1", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1142", "Priority": "1", "Application": "SIPAddHeader", "content": "", "Extension": "402", "AppData": "X-Accountcode: 126680023", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "X-Accountcode: 126680023", "Event": "VarSet", "Variable": "__SIPADDHEADER04", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1142", "Priority": "2", "Application": "SIPAddHeader", "content": "", "Extension": "402", "AppData": "X-Insecure-Protection: geheim", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "X-Insecure-Protection: geheim", "Event": "VarSet", "Variable": "__SIPADDHEADER05", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1142", "Priority": "3", "Application": "SIPAddHeader", "content": "", "Extension": "402", "AppData": "X-Mangle-Cli: from-dutch", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "X-Mangle-Cli: from-dutch", "Event": "VarSet", "Variable": "__SIPADDHEADER06", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1142", "Priority": "4", "Application": "Set", "content": "", "Extension": "402", "AppData": "_dial_options_callaccept=", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "_dial_options_callaccept", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1142", "Priority": "5", "Application": "Set", "content": "", "Extension": "402", "AppData": "_dial_options_callnotify=", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "_dial_options_callnotify", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1142", "Priority": "6", "Application": "ExecIf", "content": "", "Extension": "402", "AppData": "0?Set(l_proxy=195.35.115.203)", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1142", "Priority": "7", "Application": "Set", "content": "", "Extension": "402", "AppData": "l_extra_options=", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "l_extra_options", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Context": "osvpi_proc_proxy_out", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1142", "Priority": "8", "Application": "Dial", "content": "", "Extension": "402", "AppData": "SIP/126680023/126680023/195.35.115.203!!0508009000,,", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "DIALSTATUS", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "DIALEDPEERNAME", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "ANSWEREDTIME", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Value": "", "Event": "VarSet", "Variable": "DIALEDTIME", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "call,all", "AccountCode": "126680024", "CallerIDName": "", "Channel": "SIP/126680024-000001ef", "CallerIDNum": "", "Event": "Newchannel", "Uniqueid": "ua0-acc-1509629984.1145", "content": "", "ChannelState": "0", "ChannelStateDesc": "Down", "Context": "osvpi_account", "Exten": ""}, - {"Privilege": "dialplan,all", "Value": "2bec085033cdb5164552b4332ea5a28e@acceptatie.voipgrid.nl", "Event": "VarSet", "Variable": "SIPCALLID", "content": "", "Uniqueid": "ua0-acc-1509629984.1145", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "dialplan,all", "Value": "12668", "Event": "VarSet", "Variable": "__client_id", "content": "", "Uniqueid": "ua0-acc-1509629984.1145", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "dialplan,all", "Value": "126680024", "Event": "VarSet", "Variable": "__account_id", "content": "", "Uniqueid": "ua0-acc-1509629984.1145", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "dialplan,all", "Value": "no", "Event": "VarSet", "Variable": "__record_call", "content": "", "Uniqueid": "ua0-acc-1509629984.1145", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "dialplan,all", "Value": "31", "Event": "VarSet", "Variable": "__intprefix", "content": "", "Uniqueid": "ua0-acc-1509629984.1145", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "dialplan,all", "Value": "4", "Event": "VarSet", "Variable": "__limit_account", "content": "", "Uniqueid": "ua0-acc-1509629984.1145", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "dialplan,all", "Value": "0", "Event": "VarSet", "Variable": "__limit_client", "content": "", "Uniqueid": "ua0-acc-1509629984.1145", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "dialplan,all", "Value": "1", "Event": "VarSet", "Variable": "__hide_ext_cliname", "content": "", "Uniqueid": "ua0-acc-1509629984.1145", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "dialplan,all", "Value": "osvpi_account_transfer", "Event": "VarSet", "Variable": "__TRANSFER_CONTEXT", "content": "", "Uniqueid": "ua0-acc-1509629984.1145", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "dialplan,all", "Value": "126680024/126680024/195.35.115.203!!0508009000", "Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "content": "", "Uniqueid": "ua0-acc-1509629984.1145", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "call,all", "CallerIDNum": "402", "Event": "NewCallerid", "Uniqueid": "ua0-acc-1509629984.1145", "content": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "call,all", "DestUniqueID": "ua0-acc-1509629984.1145", "Dialstring": "126680024/126680024/195.35.115.203!!0508009000", "CallerIDName": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2", "CallerIDNum": "+31508009000", "Event": "Dial", "Destination": "SIP/126680024-000001ef", "UniqueID": "ua0-acc-1509629984.1144", "SubEvent": "Begin", "ConnectedLineName": "", "ConnectedLineNum": "402", "content": ""}, - {"Privilege": "call,all", "AccountCode": "126680023", "CallerIDName": "", "Channel": "SIP/126680023-000001f0", "CallerIDNum": "", "Event": "Newchannel", "Uniqueid": "ua0-acc-1509629984.1146", "content": "", "ChannelState": "0", "ChannelStateDesc": "Down", "Context": "osvpi_account", "Exten": ""}, - {"Privilege": "dialplan,all", "Value": "2c98c80001c97b441955ff93399fe650@acceptatie.voipgrid.nl", "Event": "VarSet", "Variable": "SIPCALLID", "content": "", "Uniqueid": "ua0-acc-1509629984.1146", "Channel": "SIP/126680023-000001f0"}, - {"Privilege": "dialplan,all", "Value": "12668", "Event": "VarSet", "Variable": "__client_id", "content": "", "Uniqueid": "ua0-acc-1509629984.1146", "Channel": "SIP/126680023-000001f0"}, - {"Privilege": "dialplan,all", "Value": "126680023", "Event": "VarSet", "Variable": "__account_id", "content": "", "Uniqueid": "ua0-acc-1509629984.1146", "Channel": "SIP/126680023-000001f0"}, - {"Privilege": "dialplan,all", "Value": "no", "Event": "VarSet", "Variable": "__record_call", "content": "", "Uniqueid": "ua0-acc-1509629984.1146", "Channel": "SIP/126680023-000001f0"}, - {"Privilege": "dialplan,all", "Value": "31", "Event": "VarSet", "Variable": "__intprefix", "content": "", "Uniqueid": "ua0-acc-1509629984.1146", "Channel": "SIP/126680023-000001f0"}, - {"Privilege": "dialplan,all", "Value": "4", "Event": "VarSet", "Variable": "__limit_account", "content": "", "Uniqueid": "ua0-acc-1509629984.1146", "Channel": "SIP/126680023-000001f0"}, - {"Privilege": "dialplan,all", "Value": "0", "Event": "VarSet", "Variable": "__limit_client", "content": "", "Uniqueid": "ua0-acc-1509629984.1146", "Channel": "SIP/126680023-000001f0"}, - {"Privilege": "dialplan,all", "Value": "1", "Event": "VarSet", "Variable": "__hide_ext_cliname", "content": "", "Uniqueid": "ua0-acc-1509629984.1146", "Channel": "SIP/126680023-000001f0"}, - {"Privilege": "dialplan,all", "Value": "osvpi_account_transfer", "Event": "VarSet", "Variable": "__TRANSFER_CONTEXT", "content": "", "Uniqueid": "ua0-acc-1509629984.1146", "Channel": "SIP/126680023-000001f0"}, - {"Privilege": "dialplan,all", "Value": "126680023/126680023/195.35.115.203!!0508009000", "Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "content": "", "Uniqueid": "ua0-acc-1509629984.1146", "Channel": "SIP/126680023-000001f0"}, - {"Privilege": "call,all", "CallerIDNum": "402", "Event": "NewCallerid", "Uniqueid": "ua0-acc-1509629984.1146", "content": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "Channel": "SIP/126680023-000001f0"}, - {"Privilege": "call,all", "DestUniqueID": "ua0-acc-1509629984.1146", "Dialstring": "126680023/126680023/195.35.115.203!!0508009000", "CallerIDName": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2", "CallerIDNum": "+31508009000", "Event": "Dial", "Destination": "SIP/126680023-000001f0", "UniqueID": "ua0-acc-1509629984.1142", "SubEvent": "Begin", "ConnectedLineName": "", "ConnectedLineNum": "402", "content": ""}, - {"Privilege": "call,all", "CallerIDNum": "402", "Event": "Newstate", "Uniqueid": "ua0-acc-1509629984.1145", "content": "", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "CallerIDName": "", "ConnectedLineNum": "+31508009000", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "call,all", "CallerIDNum": "402", "Event": "Newstate", "Uniqueid": "ua0-acc-1509629984.1143", "content": "", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "CallerIDName": "", "ConnectedLineNum": "+31508009000", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;1"}, - {"Privilege": "call,all", "CallerIDNum": "+31853030903", "Event": "Newstate", "Uniqueid": "ua0-acc-1509629984.1139", "content": "", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "CallerIDName": "", "ConnectedLineNum": "+31508009000", "Channel": "Local/402@osvpi_account-00000142;1"}, - {"Privilege": "call,all", "CallerIDNum": "+31853030903", "Event": "Newstate", "Uniqueid": "ua0-acc-1509629983.1136", "content": "", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "CallerIDName": "", "ConnectedLineNum": "+31508009000", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;1"}, - {"Privilege": "call,all", "CallerIDNum": "402", "Event": "Newstate", "Uniqueid": "ua0-acc-1509629984.1146", "content": "", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "CallerIDName": "", "ConnectedLineNum": "+31508009000", "Channel": "SIP/126680023-000001f0"}, - {"Privilege": "call,all", "CallerIDNum": "402", "Event": "Newstate", "Uniqueid": "ua0-acc-1509629984.1141", "content": "", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "CallerIDName": "", "ConnectedLineNum": "+31508009000", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;1"}, - {"Privilege": "call,all", "CallerIDNum": "402", "Event": "Newstate", "Uniqueid": "ua0-acc-1509629984.1145", "content": "", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "CallerIDName": "", "ConnectedLineNum": "+31508009000", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "dialplan,all", "Value": "ANSWER", "Event": "VarSet", "Variable": "DIALSTATUS", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "SIP/126680024-000001ef", "Event": "VarSet", "Variable": "DIALEDPEERNAME", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "126680024/126680024/195.35.115.203!!0508009000", "Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "SIP/126680024-000001ef", "Event": "VarSet", "Variable": "BRIDGEPEER", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "Local/ID730681@osvpi_route_phoneaccount-00000144;2", "Event": "VarSet", "Variable": "BRIDGEPEER", "content": "", "Uniqueid": "ua0-acc-1509629984.1145", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "call,all", "CallerIDNum": "+31508009000", "Event": "Newstate", "Uniqueid": "ua0-acc-1509629984.1144", "content": "", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "CallerIDName": "", "ConnectedLineNum": "402", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "call,all", "Event": "NewAccountCode", "Uniqueid": "ua0-acc-1509629984.1145", "content": "", "OldAccountCode": "126680005", "AccountCode": "126680005", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "call,all", "CallerID2": "402", "Event": "Bridge", "Channel2": "SIP/126680024-000001ef", "content": "", "Bridgestate": "Link", "Uniqueid2": "ua0-acc-1509629984.1145", "Channel1": "Local/ID730681@osvpi_route_phoneaccount-00000144;2", "Bridgetype": "core", "Uniqueid1": "ua0-acc-1509629984.1144", "CallerID1": "+31508009000"}, - {"Privilege": "dialplan,all", "Value": "SIP/126680024-000001ef", "Event": "VarSet", "Variable": "BRIDGEPEER", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "2bec085033cdb5164552b4332ea5a28e@acceptatie.voipgrid.nl", "Event": "VarSet", "Variable": "BRIDGEPVTCALLID", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "Local/ID730681@osvpi_route_phoneaccount-00000144;2", "Event": "VarSet", "Variable": "BRIDGEPEER", "content": "", "Uniqueid": "ua0-acc-1509629984.1145", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "dialplan,all", "Value": "SIP/126680024-000001ef", "Event": "VarSet", "Variable": "BRIDGEPEER", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "2bec085033cdb5164552b4332ea5a28e@acceptatie.voipgrid.nl", "Event": "VarSet", "Variable": "BRIDGEPVTCALLID", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "Local/ID730681@osvpi_route_phoneaccount-00000144;2", "Event": "VarSet", "Variable": "BRIDGEPEER", "content": "", "Uniqueid": "ua0-acc-1509629984.1145", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "call,all", "CallerIDNum": "402", "Event": "Newstate", "Uniqueid": "ua0-acc-1509629984.1143", "content": "", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "CallerIDName": "", "ConnectedLineNum": "+31508009000", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;1"}, - {"Privilege": "dialplan,all", "Value": "ANSWER", "Event": "VarSet", "Variable": "DIALSTATUS", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "call,all", "Event": "HangupRequest", "Uniqueid": "ua0-acc-1509629984.1142", "content": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "call,all", "AccountCode": "126680005", "CallerIDName": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;1", "CallerIDNum": "402", "Event": "Hangup", "Uniqueid": "ua0-acc-1509629984.1141", "content": "", "Cause": "26", "ConnectedLineName": "", "Cause-txt": "Answered elsewhere", "ConnectedLineNum": "+31508009000"}, - {"Privilege": "dialplan,all", "Value": "Local/ID730681@osvpi_route_phoneaccount-00000144;1", "Event": "VarSet", "Variable": "DIALEDPEERNAME", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "ID730681@osvpi_route_phoneaccount", "Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "Local/ID730681@osvpi_route_phoneaccount-00000144;1", "Event": "VarSet", "Variable": "BRIDGEPEER", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "Local/402@osvpi_account-00000142;2", "Event": "VarSet", "Variable": "BRIDGEPEER", "content": "", "Uniqueid": "ua0-acc-1509629984.1143", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;1"}, - {"Privilege": "call,all", "CallerIDNum": "+31508009000", "Event": "Newstate", "Uniqueid": "ua0-acc-1509629984.1140", "content": "", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "CallerIDName": "", "ConnectedLineNum": "+31853030903", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "call,all", "Event": "NewAccountCode", "Uniqueid": "ua0-acc-1509629984.1143", "content": "", "OldAccountCode": "126680005", "AccountCode": "126680005", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;1"}, - {"Privilege": "call,all", "CallerID2": "402", "Event": "Bridge", "Channel2": "Local/ID730681@osvpi_route_phoneaccount-00000144;1", "content": "", "Bridgestate": "Link", "Uniqueid2": "ua0-acc-1509629984.1143", "Channel1": "Local/402@osvpi_account-00000142;2", "Bridgetype": "core", "Uniqueid1": "ua0-acc-1509629984.1140", "CallerID1": "+31508009000"}, - {"Privilege": "dialplan,all", "Value": "Local/ID730681@osvpi_route_phoneaccount-00000144;1", "Event": "VarSet", "Variable": "BRIDGEPEER", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "Local/402@osvpi_account-00000142;2", "Event": "VarSet", "Variable": "BRIDGEPEER", "content": "", "Uniqueid": "ua0-acc-1509629984.1143", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;1"}, - {"Privilege": "dialplan,all", "Value": "Local/ID730681@osvpi_route_phoneaccount-00000144;1", "Event": "VarSet", "Variable": "BRIDGEPEER", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "Local/402@osvpi_account-00000142;2", "Event": "VarSet", "Variable": "BRIDGEPEER", "content": "", "Uniqueid": "ua0-acc-1509629984.1143", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;1"}, - {"Privilege": "call,all", "CallerIDNum": "+31853030903", "Event": "Newstate", "Uniqueid": "ua0-acc-1509629984.1139", "content": "", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "CallerIDName": "", "ConnectedLineNum": "+31508009000", "Channel": "Local/402@osvpi_account-00000142;1"}, - {"Privilege": "dialplan,all", "Value": "ANSWER", "Event": "VarSet", "Variable": "DIALSTATUS", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "Local/402@osvpi_account-00000142;1", "Event": "VarSet", "Variable": "DIALEDPEERNAME", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "Local/402@osvpi_account-00000142;1", "Event": "VarSet", "Variable": "BRIDGEPEER", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "Local/ID730651@osvpi_route_phoneaccount-00000141;2", "Event": "VarSet", "Variable": "BRIDGEPEER", "content": "", "Uniqueid": "ua0-acc-1509629984.1139", "Channel": "Local/402@osvpi_account-00000142;1"}, - {"Privilege": "call,all", "CallerIDNum": "+31508009000", "Event": "Newstate", "Uniqueid": "ua0-acc-1509629983.1137", "content": "", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "CallerIDName": "", "ConnectedLineNum": "+31853030903", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "call,all", "Event": "NewAccountCode", "Uniqueid": "ua0-acc-1509629984.1139", "content": "", "OldAccountCode": "12668", "AccountCode": "12668", "Channel": "Local/402@osvpi_account-00000142;1"}, - {"Privilege": "call,all", "CallerID2": "+31853030903", "Event": "Bridge", "Channel2": "Local/402@osvpi_account-00000142;1", "content": "", "Bridgestate": "Link", "Uniqueid2": "ua0-acc-1509629984.1139", "Channel1": "Local/ID730651@osvpi_route_phoneaccount-00000141;2", "Bridgetype": "core", "Uniqueid1": "ua0-acc-1509629983.1137", "CallerID1": "+31508009000"}, - {"Privilege": "dialplan,all", "Value": "Local/402@osvpi_account-00000142;1", "Event": "VarSet", "Variable": "BRIDGEPEER", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "Local/ID730651@osvpi_route_phoneaccount-00000141;2", "Event": "VarSet", "Variable": "BRIDGEPEER", "content": "", "Uniqueid": "ua0-acc-1509629984.1139", "Channel": "Local/402@osvpi_account-00000142;1"}, - {"Privilege": "dialplan,all", "Value": "Local/402@osvpi_account-00000142;1", "Event": "VarSet", "Variable": "BRIDGEPEER", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "Local/ID730651@osvpi_route_phoneaccount-00000141;2", "Event": "VarSet", "Variable": "BRIDGEPEER", "content": "", "Uniqueid": "ua0-acc-1509629984.1139", "Channel": "Local/402@osvpi_account-00000142;1"}, - {"Privilege": "call,all", "AccountCode": "126680005", "CallerIDName": "", "Channel": "SIP/126680023-000001f0", "CallerIDNum": "402", "Event": "Hangup", "Uniqueid": "ua0-acc-1509629984.1146", "content": "", "Cause": "26", "ConnectedLineName": "", "Cause-txt": "Answered elsewhere", "ConnectedLineNum": "+31508009000"}, - {"Privilege": "dialplan,all", "Value": "CANCEL", "Event": "VarSet", "Variable": "DIALSTATUS", "content": "", "Uniqueid": "ua0-acc-1509629984.1142", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "call,all", "Event": "Dial", "content": "", "UniqueID": "ua0-acc-1509629984.1142", "SubEvent": "End", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2", "DialStatus": "CANCEL"}, - {"Privilege": "call,all", "Event": "SoftHangupRequest", "Uniqueid": "ua0-acc-1509629984.1142", "content": "", "Cause": "16", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Context": "handlers", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1142", "Priority": "1", "Application": "GotoIf", "content": "", "Extension": "onhangup", "AppData": "1?nosip", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "dialplan,all", "Context": "handlers", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1142", "Priority": "3", "Application": "GosubIf", "content": "", "Extension": "onhangup", "AppData": "0?osvpi_proc_httptouch,s,1()", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2"}, - {"Privilege": "call,all", "AccountCode": "126680005", "CallerIDName": "", "Channel": "Local/ID730671@osvpi_route_phoneaccount-00000143;2", "CallerIDNum": "+31508009000", "Event": "Hangup", "Uniqueid": "ua0-acc-1509629984.1142", "content": "", "Cause": "26", "ConnectedLineName": "", "Cause-txt": "Answered elsewhere", "ConnectedLineNum": "402"}, - {"Privilege": "call,all", "CallerIDNum": "+31853030903", "Event": "Newstate", "Uniqueid": "ua0-acc-1509629983.1136", "content": "", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "CallerIDName": "", "ConnectedLineNum": "+31508009000", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;1"}, - {"Privilege": "dialplan,all", "Value": "ANSWER", "Event": "VarSet", "Variable": "DIALSTATUS", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "Local/ID730651@osvpi_route_phoneaccount-00000141;1", "Event": "VarSet", "Variable": "DIALEDPEERNAME", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "ID730651@osvpi_route_phoneaccount", "Event": "VarSet", "Variable": "DIALEDPEERNUMBER", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "Local/ID730651@osvpi_route_phoneaccount-00000141;1", "Event": "VarSet", "Variable": "BRIDGEPEER", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "SIP/voipgrid-siproute-dev-000001ed", "Event": "VarSet", "Variable": "BRIDGEPEER", "content": "", "Uniqueid": "ua0-acc-1509629983.1136", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;1"}, - {"Privilege": "call,all", "CallerIDNum": "+31508009000", "Event": "Newstate", "Uniqueid": "ua0-acc-1509629983.1135", "content": "", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "CallerIDName": "", "ConnectedLineNum": "", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "call,all", "Event": "NewAccountCode", "Uniqueid": "ua0-acc-1509629983.1136", "content": "", "OldAccountCode": "12668", "AccountCode": "12668", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;1"}, - {"Privilege": "call,all", "CallerID2": "+31853030903", "Event": "Bridge", "Channel2": "Local/ID730651@osvpi_route_phoneaccount-00000141;1", "content": "", "Bridgestate": "Link", "Uniqueid2": "ua0-acc-1509629983.1136", "Channel1": "SIP/voipgrid-siproute-dev-000001ed", "Bridgetype": "core", "Uniqueid1": "ua0-acc-1509629983.1135", "CallerID1": "+31508009000"}, - {"Privilege": "dialplan,all", "Value": "Local/ID730651@osvpi_route_phoneaccount-00000141;1", "Event": "VarSet", "Variable": "BRIDGEPEER", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "SIP/voipgrid-siproute-dev-000001ed", "Event": "VarSet", "Variable": "BRIDGEPEER", "content": "", "Uniqueid": "ua0-acc-1509629983.1136", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;1"}, - {"Privilege": "dialplan,all", "Value": "~{}~4b7858722815385e6336d4ad11359070@voipgrid.nl", "Event": "VarSet", "Variable": "BRIDGEPVTCALLID", "content": "", "Uniqueid": "ua0-acc-1509629983.1136", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;1"}, - {"Privilege": "dialplan,all", "Value": "Local/ID730651@osvpi_route_phoneaccount-00000141;1", "Event": "VarSet", "Variable": "BRIDGEPEER", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "SIP/voipgrid-siproute-dev-000001ed", "Event": "VarSet", "Variable": "BRIDGEPEER", "content": "", "Uniqueid": "ua0-acc-1509629983.1136", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;1"}, - {"Privilege": "dialplan,all", "Value": "~{}~4b7858722815385e6336d4ad11359070@voipgrid.nl", "Event": "VarSet", "Variable": "BRIDGEPVTCALLID", "content": "", "Uniqueid": "ua0-acc-1509629983.1136", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;1"}, - {"Privilege": "call,all", "Event": "Masquerade", "content": "", "CloneState": "Up", "OriginalState": "Up", "Original": "Local/ID730681@osvpi_route_phoneaccount-00000144;1", "Clone": "SIP/126680024-000001ef"}, - {"Privilege": "call,all", "Event": "Rename", "Uniqueid": "ua0-acc-1509629984.1145", "content": "", "Newname": "SIP/126680024-000001ef", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "call,all", "Event": "Rename", "Uniqueid": "ua0-acc-1509629984.1143", "content": "", "Newname": "SIP/126680024-000001ef", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;1"}, - {"Privilege": "call,all", "Event": "Rename", "Uniqueid": "ua0-acc-1509629984.1145", "content": "", "Newname": "Local/ID730681@osvpi_route_phoneaccount-00000144;1", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "call,all", "CallerIDNum": "402", "Event": "NewCallerid", "Uniqueid": "ua0-acc-1509629984.1143", "content": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "call,all", "CallerID2": "402", "Event": "Bridge", "Channel2": "Local/ID730681@osvpi_route_phoneaccount-00000144;1", "content": "", "Bridgestate": "Unlink", "Uniqueid2": "ua0-acc-1509629984.1145", "Channel1": "Local/ID730681@osvpi_route_phoneaccount-00000144;2", "Bridgetype": "core", "Uniqueid1": "ua0-acc-1509629984.1144", "CallerID1": "+31508009000"}, - {"Privilege": "dialplan,all", "Value": "0", "Event": "VarSet", "Variable": "ANSWEREDTIME", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "5", "Event": "VarSet", "Variable": "DIALEDTIME", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Value": "SIP/126680024-000001ef", "Event": "VarSet", "Variable": "BRIDGEPEER", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "2bec085033cdb5164552b4332ea5a28e@acceptatie.voipgrid.nl", "Event": "VarSet", "Variable": "BRIDGEPVTCALLID", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "Local/402@osvpi_account-00000142;2", "Event": "VarSet", "Variable": "BRIDGEPEER", "content": "", "Uniqueid": "ua0-acc-1509629984.1143", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "dialplan,all", "Value": "SIP/126680024-000001ef", "Event": "VarSet", "Variable": "BRIDGEPEER", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "2bec085033cdb5164552b4332ea5a28e@acceptatie.voipgrid.nl", "Event": "VarSet", "Variable": "BRIDGEPVTCALLID", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "Local/402@osvpi_account-00000142;2", "Event": "VarSet", "Variable": "BRIDGEPEER", "content": "", "Uniqueid": "ua0-acc-1509629984.1143", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "call,all", "Event": "HangupRequest", "Uniqueid": "ua0-acc-1509629984.1144", "content": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "call,all", "AccountCode": "126680005", "CallerIDName": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;1", "CallerIDNum": "402", "Event": "Hangup", "Uniqueid": "ua0-acc-1509629984.1145", "content": "", "Cause": "16", "ConnectedLineName": "", "Cause-txt": "Normal Clearing", "ConnectedLineNum": "+31508009000"}, - {"Privilege": "dialplan,all", "Value": "ANSWER", "Event": "VarSet", "Variable": "DIALSTATUS", "content": "", "Uniqueid": "ua0-acc-1509629984.1144", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "call,all", "Event": "Dial", "content": "", "UniqueID": "ua0-acc-1509629984.1144", "SubEvent": "End", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2", "DialStatus": "ANSWER"}, - {"Privilege": "call,all", "Event": "SoftHangupRequest", "Uniqueid": "ua0-acc-1509629984.1144", "content": "", "Cause": "16", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Context": "handlers", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1144", "Priority": "1", "Application": "GotoIf", "content": "", "Extension": "onhangup", "AppData": "1?nosip", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "dialplan,all", "Context": "handlers", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1144", "Priority": "3", "Application": "GosubIf", "content": "", "Extension": "onhangup", "AppData": "0?osvpi_proc_httptouch,s,1()", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2"}, - {"Privilege": "call,all", "AccountCode": "126680005", "CallerIDName": "", "Channel": "Local/ID730681@osvpi_route_phoneaccount-00000144;2", "CallerIDNum": "+31508009000", "Event": "Hangup", "Uniqueid": "ua0-acc-1509629984.1144", "content": "", "Cause": "16", "ConnectedLineName": "", "Cause-txt": "Normal Clearing", "ConnectedLineNum": "402"}, - {"Privilege": "call,all", "Event": "Masquerade", "content": "", "CloneState": "Up", "OriginalState": "Up", "Original": "Local/402@osvpi_account-00000142;1", "Clone": "SIP/126680024-000001ef"}, - {"Privilege": "call,all", "Event": "Rename", "Uniqueid": "ua0-acc-1509629984.1143", "content": "", "Newname": "SIP/126680024-000001ef", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "call,all", "Event": "Rename", "Uniqueid": "ua0-acc-1509629984.1139", "content": "", "Newname": "SIP/126680024-000001ef", "Channel": "Local/402@osvpi_account-00000142;1"}, - {"Privilege": "call,all", "Event": "Rename", "Uniqueid": "ua0-acc-1509629984.1143", "content": "", "Newname": "Local/402@osvpi_account-00000142;1", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "call,all", "CallerIDNum": "+31853030903", "Event": "NewCallerid", "Uniqueid": "ua0-acc-1509629984.1139", "content": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "call,all", "CallerID2": "402", "Event": "Bridge", "Channel2": "Local/402@osvpi_account-00000142;1", "content": "", "Bridgestate": "Unlink", "Uniqueid2": "ua0-acc-1509629984.1143", "Channel1": "Local/402@osvpi_account-00000142;2", "Bridgetype": "core", "Uniqueid1": "ua0-acc-1509629984.1140", "CallerID1": "+31508009000"}, - {"Privilege": "dialplan,all", "Value": "5", "Event": "VarSet", "Variable": "DIALEDTIME", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Value": "SIP/126680024-000001ef", "Event": "VarSet", "Variable": "BRIDGEPEER", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "2bec085033cdb5164552b4332ea5a28e@acceptatie.voipgrid.nl", "Event": "VarSet", "Variable": "BRIDGEPVTCALLID", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "Local/ID730651@osvpi_route_phoneaccount-00000141;2", "Event": "VarSet", "Variable": "BRIDGEPEER", "content": "", "Uniqueid": "ua0-acc-1509629984.1139", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "dialplan,all", "Value": "SIP/126680024-000001ef", "Event": "VarSet", "Variable": "BRIDGEPEER", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "2bec085033cdb5164552b4332ea5a28e@acceptatie.voipgrid.nl", "Event": "VarSet", "Variable": "BRIDGEPVTCALLID", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "Local/ID730651@osvpi_route_phoneaccount-00000141;2", "Event": "VarSet", "Variable": "BRIDGEPEER", "content": "", "Uniqueid": "ua0-acc-1509629984.1139", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "call,all", "Event": "HangupRequest", "Uniqueid": "ua0-acc-1509629984.1140", "content": "", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "call,all", "AccountCode": "126680005", "CallerIDName": "", "Channel": "Local/402@osvpi_account-00000142;1", "CallerIDNum": "402", "Event": "Hangup", "Uniqueid": "ua0-acc-1509629984.1143", "content": "", "Cause": "16", "ConnectedLineName": "", "Cause-txt": "Normal Clearing", "ConnectedLineNum": "+31508009000"}, - {"Privilege": "dialplan,all", "Value": "ANSWER", "Event": "VarSet", "Variable": "DIALSTATUS", "content": "", "Uniqueid": "ua0-acc-1509629984.1140", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "call,all", "Event": "Dial", "content": "", "UniqueID": "ua0-acc-1509629984.1140", "SubEvent": "End", "Channel": "Local/402@osvpi_account-00000142;2", "DialStatus": "ANSWER"}, - {"Privilege": "call,all", "Event": "SoftHangupRequest", "Uniqueid": "ua0-acc-1509629984.1140", "content": "", "Cause": "16", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "handlers", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "1", "Application": "GotoIf", "content": "", "Extension": "onhangup", "AppData": "1?nosip", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "dialplan,all", "Context": "handlers", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629984.1140", "Priority": "3", "Application": "GosubIf", "content": "", "Extension": "onhangup", "AppData": "0?osvpi_proc_httptouch,s,1()", "Channel": "Local/402@osvpi_account-00000142;2"}, - {"Privilege": "call,all", "AccountCode": "126680005", "CallerIDName": "", "Channel": "Local/402@osvpi_account-00000142;2", "CallerIDNum": "+31508009000", "Event": "Hangup", "Uniqueid": "ua0-acc-1509629984.1140", "content": "", "Cause": "16", "ConnectedLineName": "", "Cause-txt": "Normal Clearing", "ConnectedLineNum": "+31853030903"}, - {"Privilege": "call,all", "Event": "Masquerade", "content": "", "CloneState": "Up", "OriginalState": "Up", "Original": "Local/ID730651@osvpi_route_phoneaccount-00000141;1", "Clone": "SIP/126680024-000001ef"}, - {"Privilege": "call,all", "Event": "Rename", "Uniqueid": "ua0-acc-1509629984.1139", "content": "", "Newname": "SIP/126680024-000001ef", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "call,all", "Event": "Rename", "Uniqueid": "ua0-acc-1509629983.1136", "content": "", "Newname": "SIP/126680024-000001ef", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;1"}, - {"Privilege": "call,all", "Event": "Rename", "Uniqueid": "ua0-acc-1509629984.1139", "content": "", "Newname": "Local/ID730651@osvpi_route_phoneaccount-00000141;1", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "call,all", "CallerIDNum": "+31853030903", "Event": "NewCallerid", "Uniqueid": "ua0-acc-1509629983.1136", "content": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "call,all", "CallerID2": "+31853030903", "Event": "Bridge", "Channel2": "Local/ID730651@osvpi_route_phoneaccount-00000141;1", "content": "", "Bridgestate": "Unlink", "Uniqueid2": "ua0-acc-1509629984.1139", "Channel1": "Local/ID730651@osvpi_route_phoneaccount-00000141;2", "Bridgetype": "core", "Uniqueid1": "ua0-acc-1509629983.1137", "CallerID1": "+31508009000"}, - {"Privilege": "dialplan,all", "Value": "0", "Event": "VarSet", "Variable": "ANSWEREDTIME", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "6", "Event": "VarSet", "Variable": "DIALEDTIME", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Value": "SIP/126680024-000001ef", "Event": "VarSet", "Variable": "BRIDGEPEER", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "2bec085033cdb5164552b4332ea5a28e@acceptatie.voipgrid.nl", "Event": "VarSet", "Variable": "BRIDGEPVTCALLID", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "SIP/voipgrid-siproute-dev-000001ed", "Event": "VarSet", "Variable": "BRIDGEPEER", "content": "", "Uniqueid": "ua0-acc-1509629983.1136", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "dialplan,all", "Value": "~{}~4b7858722815385e6336d4ad11359070@voipgrid.nl", "Event": "VarSet", "Variable": "BRIDGEPVTCALLID", "content": "", "Uniqueid": "ua0-acc-1509629983.1136", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "call,all", "Event": "HangupRequest", "Uniqueid": "ua0-acc-1509629983.1137", "content": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "call,all", "AccountCode": "126680005", "CallerIDName": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;1", "CallerIDNum": "+31853030903", "Event": "Hangup", "Uniqueid": "ua0-acc-1509629984.1139", "content": "", "Cause": "16", "ConnectedLineName": "", "Cause-txt": "Normal Clearing", "ConnectedLineNum": "+31508009000"}, - {"Privilege": "dialplan,all", "Value": "ANSWER", "Event": "VarSet", "Variable": "DIALSTATUS", "content": "", "Uniqueid": "ua0-acc-1509629983.1137", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "call,all", "Event": "Dial", "content": "", "UniqueID": "ua0-acc-1509629983.1137", "SubEvent": "End", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2", "DialStatus": "ANSWER"}, - {"Privilege": "call,all", "Event": "SoftHangupRequest", "Uniqueid": "ua0-acc-1509629983.1137", "content": "", "Cause": "16", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Context": "handlers", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1137", "Priority": "1", "Application": "GotoIf", "content": "", "Extension": "onhangup", "AppData": "1?nosip", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "dialplan,all", "Context": "handlers", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1137", "Priority": "3", "Application": "GosubIf", "content": "", "Extension": "onhangup", "AppData": "0?osvpi_proc_httptouch,s,1()", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2"}, - {"Privilege": "call,all", "AccountCode": "12668", "CallerIDName": "", "Channel": "Local/ID730651@osvpi_route_phoneaccount-00000141;2", "CallerIDNum": "+31508009000", "Event": "Hangup", "Uniqueid": "ua0-acc-1509629983.1137", "content": "", "Cause": "16", "ConnectedLineName": "", "Cause-txt": "Normal Clearing", "ConnectedLineNum": "+31853030903"}, - {"SenderSSRC": "0", "Privilege": "reporting,all", "SequenceNumberCycles": "0", "DLSR": "32768.0000(sec)", "HighestSequence": "8455", "From": "217.21.195.34:5003", "FractionLost": "0", "ReceptionReports": "1", "Event": "RTCPReceived", "PacketsLost": "0", "content": "", "IAJitter": "7", "PT": "200(Sender Report)", "LastSR": "0.0000000000"}, - {"Privilege": "reporting,all", "OurSSRC": "1175063445", "TheirLastSR": "539459583", "DLSR": "2.5570 (sec)", "CumulativeLoss": "0", "FractionLost": "0", "SentOctets": "480", "SentRTP": "32797832", "SentNTP": "1509629994.2410500096", "Event": "RTCPSent", "To": "217.21.195.34:5003", "IAJitter": "0.0060", "SentPackets": "3", "content": ""}, - {"Privilege": "reporting,all", "OurSSRC": "1968214685", "TheirLastSR": "0", "DLSR": "8234.5880 (sec)", "CumulativeLoss": "0", "FractionLost": "0", "SentOctets": "480", "SentRTP": "640", "SentNTP": "1509629994.2410774528", "Event": "RTCPSent", "To": "195.35.115.104:18081", "IAJitter": "0.0006", "SentPackets": "3", "content": ""}, - {"SenderSSRC": "0", "Privilege": "reporting,all", "SequenceNumberCycles": "0", "DLSR": "32768.0000(sec)", "HighestSequence": "8719", "From": "217.21.195.34:5003", "FractionLost": "0", "ReceptionReports": "1", "Event": "RTCPReceived", "PacketsLost": "0", "content": "", "IAJitter": "0", "PT": "200(Sender Report)", "LastSR": "0.0000000000"}, - {"Privilege": "dialplan,all", "Value": "ssrc=1968214685;themssrc=1603186182;lp=0;rxjitter=0.000000;rxcount=3;txjitter=0.000603;txcount=3;rlp=0;rtt=0.000000", "Event": "VarSet", "Variable": "RTPAUDIOQOS", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "ssrc=1968214685;themssrc=1603186182;lp=0;rxjitter=0.000000;rxcount=3;txjitter=0.000603;txcount=3;rlp=0;rtt=0.000000", "Event": "VarSet", "Variable": "RTPAUDIOQOSBRIDGED", "content": "", "Uniqueid": "ua0-acc-1509629983.1136", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "dialplan,all", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Event": "VarSet", "Variable": "RTPAUDIOQOSJITTER", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Event": "VarSet", "Variable": "RTPAUDIOQOSJITTERBRIDGED", "content": "", "Uniqueid": "ua0-acc-1509629983.1136", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "dialplan,all", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Event": "VarSet", "Variable": "RTPAUDIOQOSLOSS", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Event": "VarSet", "Variable": "RTPAUDIOQOSLOSSBRIDGED", "content": "", "Uniqueid": "ua0-acc-1509629983.1136", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "dialplan,all", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Event": "VarSet", "Variable": "RTPAUDIOQOSRTT", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Event": "VarSet", "Variable": "RTPAUDIOQOSRTTBRIDGED", "content": "", "Uniqueid": "ua0-acc-1509629983.1136", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "dialplan,all", "Value": "ssrc=1175063445;themssrc=1724734887;lp=0;rxjitter=0.000000;rxcount=6;txjitter=0.005984;txcount=3;rlp=0;rtt=0.000000", "Event": "VarSet", "Variable": "RTPAUDIOQOS", "content": "", "Uniqueid": "ua0-acc-1509629983.1136", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "dialplan,all", "Value": "ssrc=1175063445;themssrc=1724734887;lp=0;rxjitter=0.000000;rxcount=6;txjitter=0.005984;txcount=3;rlp=0;rtt=0.000000", "Event": "VarSet", "Variable": "RTPAUDIOQOSBRIDGED", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Event": "VarSet", "Variable": "RTPAUDIOQOSJITTER", "content": "", "Uniqueid": "ua0-acc-1509629983.1136", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "dialplan,all", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Event": "VarSet", "Variable": "RTPAUDIOQOSJITTERBRIDGED", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Event": "VarSet", "Variable": "RTPAUDIOQOSLOSS", "content": "", "Uniqueid": "ua0-acc-1509629983.1136", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "dialplan,all", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Event": "VarSet", "Variable": "RTPAUDIOQOSLOSSBRIDGED", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Event": "VarSet", "Variable": "RTPAUDIOQOSRTT", "content": "", "Uniqueid": "ua0-acc-1509629983.1136", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "dialplan,all", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Event": "VarSet", "Variable": "RTPAUDIOQOSRTTBRIDGED", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "call,all", "Event": "HangupRequest", "Uniqueid": "ua0-acc-1509629983.1135", "content": "", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "call,all", "CallerID2": "+31853030903", "Event": "Bridge", "Channel2": "SIP/126680024-000001ef", "content": "", "Bridgestate": "Unlink", "Uniqueid2": "ua0-acc-1509629983.1136", "Channel1": "SIP/voipgrid-siproute-dev-000001ed", "Bridgetype": "core", "Uniqueid1": "ua0-acc-1509629983.1135", "CallerID1": "+31508009000"}, - {"Privilege": "dialplan,all", "Value": "12", "Event": "VarSet", "Variable": "ANSWEREDTIME", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "18", "Event": "VarSet", "Variable": "DIALEDTIME", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Value": "ssrc=1175063445;themssrc=1724734887;lp=0;rxjitter=0.000000;rxcount=6;txjitter=0.005984;txcount=3;rlp=0;rtt=0.000000", "Event": "VarSet", "Variable": "RTPAUDIOQOS", "content": "", "Uniqueid": "ua0-acc-1509629983.1136", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "dialplan,all", "Value": "minrxjitter=0.000000;maxrxjitter=0.000000;avgrxjitter=0.000000;stdevrxjitter=0.000000;reported_minjitter=0.000000;reported_maxjitter=0.000000;reported_avgjitter=0.000000;reported_stdevjitter=0.000000;", "Event": "VarSet", "Variable": "RTPAUDIOQOSJITTER", "content": "", "Uniqueid": "ua0-acc-1509629983.1136", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "dialplan,all", "Value": "minrxlost=0.000000;maxrxlost=0.000000;avgrxlost=0.000000;stdevrxlost=0.000000;reported_minlost=0.000000;reported_maxlost=0.000000;reported_avglost=0.000000;reported_stdevlost=0.000000;", "Event": "VarSet", "Variable": "RTPAUDIOQOSLOSS", "content": "", "Uniqueid": "ua0-acc-1509629983.1136", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "dialplan,all", "Value": "minrtt=0.000000;maxrtt=0.000000;avgrtt=0.000000;stdevrtt=0.000000;", "Event": "VarSet", "Variable": "RTPAUDIOQOSRTT", "content": "", "Uniqueid": "ua0-acc-1509629983.1136", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "dialplan,all", "Value": "ssrc=1175063445;themssrc=1724734887;lp=0;rxjitter=0.000000;rxcount=6;txjitter=0.005984;txcount=3;rlp=0;rtt=0.000000", "Event": "VarSet", "Variable": "RTPAUDIOQOS", "content": "", "Uniqueid": "ua0-acc-1509629983.1136", "Channel": "SIP/126680024-000001ef"}, - {"Privilege": "call,all", "AccountCode": "126680005", "CallerIDName": "", "Channel": "SIP/126680024-000001ef", "CallerIDNum": "+31853030903", "Event": "Hangup", "Uniqueid": "ua0-acc-1509629983.1136", "content": "", "Cause": "16", "ConnectedLineName": "", "Cause-txt": "Normal Clearing", "ConnectedLineNum": "+31508009000"}, - {"Privilege": "dialplan,all", "Value": "ANSWER", "Event": "VarSet", "Variable": "DIALSTATUS", "content": "", "Uniqueid": "ua0-acc-1509629983.1135", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "call,all", "Event": "Dial", "content": "", "UniqueID": "ua0-acc-1509629983.1135", "SubEvent": "End", "Channel": "SIP/voipgrid-siproute-dev-000001ed", "DialStatus": "ANSWER"}, - {"Privilege": "call,all", "Event": "SoftHangupRequest", "Uniqueid": "ua0-acc-1509629983.1135", "content": "", "Cause": "16", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "handlers", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "1", "Application": "GotoIf", "content": "", "Extension": "onhangup", "AppData": "0?nosip", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "handlers", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "2", "Application": "NoOp", "content": "", "Extension": "onhangup", "AppData": "LOG: rtpqos: caller=(null);asterisk=195.35.115.202:15254;ssrc=1968214685;themssrc=1603186182;lp=0;rxjitter=0.000000;rxcount=3;txjitter=0.000603;txcount=3;rlp=0;rtt=0.000000;billsec=0", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "dialplan,all", "Context": "handlers", "Event": "Newexten", "Uniqueid": "ua0-acc-1509629983.1135", "Priority": "3", "Application": "GosubIf", "content": "", "Extension": "onhangup", "AppData": "0?osvpi_proc_httptouch,s,1()", "Channel": "SIP/voipgrid-siproute-dev-000001ed"}, - {"Privilege": "call,all", "AccountCode": "12668", "CallerIDName": "", "Channel": "SIP/voipgrid-siproute-dev-000001ed", "CallerIDNum": "+31508009000", "Event": "Hangup", "Uniqueid": "ua0-acc-1509629983.1135", "content": "", "Cause": "16", "ConnectedLineName": "", "Cause-txt": "Normal Clearing", "ConnectedLineNum": ""} + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000021", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newchannel", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.541", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000021", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.541", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000021", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530191936.541", "Priority": "10", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.541", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000014;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730150", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.544", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000014;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730150", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.546", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000014;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.544", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000014;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.544", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000014;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.544", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000014;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730150", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.546", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000014;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730150", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.546", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000014;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730150", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.546", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730150", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31150010001", "LocalOneChannel": "Local/ID730150@osvpi_route_phoneaccount-00000014;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31260010001", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "+31150010001", "LocalOneLanguage": "en", "LocalOneLinkedid": "b6093874285e-1530191936.541", "LocalOnePriority": "1", "LocalOneUniqueid": "b6093874285e-1530191936.544", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31260010001", "LocalTwoChannel": "Local/ID730150@osvpi_route_phoneaccount-00000014;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31150010001", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730150", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "b6093874285e-1530191936.541", "LocalTwoPriority": "1", "LocalTwoUniqueid": "b6093874285e-1530191936.546", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000021", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/ID730150@osvpi_route_phoneaccount-00000014;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "+31150010001", "DestLanguage": "en", "DestLinkedid": "b6093874285e-1530191936.541", "DestPriority": "1", "DestUniqueid": "b6093874285e-1530191936.544", "DialString": "ID730150@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.541", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010001-00000022", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.549", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000022", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.549", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000022", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530191936.541", "OldAccountCode": "150010001", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.549", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-00000022", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.549", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000014;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "SIP/150010001-00000022", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "+31150010001", "DestLanguage": "nl", "DestLinkedid": "b6093874285e-1530191936.541", "DestPriority": "1", "DestUniqueid": "b6093874285e-1530191936.549", "DialString": "150010001/150010001/172.20.0.13!!0260010001", "Event": "DialBegin", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "8", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.546", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/401@osvpi_account-00000015;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "401", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.551", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/401@osvpi_account-00000015;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "401", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.553", "content": ""}, + {"AccountCode": "", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/401@osvpi_account-00000015;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "401", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.551", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/401@osvpi_account-00000015;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "401", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.551", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/401@osvpi_account-00000015;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "401", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.551", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/401@osvpi_account-00000015;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "401", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.553", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/401@osvpi_account-00000015;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "401", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.553", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/401@osvpi_account-00000015;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "401", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.553", "content": ""}, + {"Context": "osvpi_account", "Event": "LocalBridge", "Exten": "401", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31150010001", "LocalOneChannel": "Local/401@osvpi_account-00000015;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31260010001", "LocalOneContext": "osvpi_account", "LocalOneExten": "401", "LocalOneLanguage": "en", "LocalOneLinkedid": "b6093874285e-1530191936.541", "LocalOnePriority": "1", "LocalOneUniqueid": "b6093874285e-1530191936.551", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31260010001", "LocalTwoChannel": "Local/401@osvpi_account-00000015;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31150010001", "LocalTwoContext": "osvpi_account", "LocalTwoExten": "401", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "b6093874285e-1530191936.541", "LocalTwoPriority": "1", "LocalTwoUniqueid": "b6093874285e-1530191936.553", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000014;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "SIP/150010001-00000022", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "+31150010001", "DestLanguage": "nl", "DestLinkedid": "b6093874285e-1530191936.541", "DestPriority": "1", "DestUniqueid": "b6093874285e-1530191936.549", "DialStatus": "CANCEL", "Event": "DialEnd", "Exten": "+31150010001", "Forward": "401", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "8", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.546", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000014;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/401@osvpi_account-00000015;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "401", "DestLanguage": "en", "DestLinkedid": "b6093874285e-1530191936.541", "DestPriority": "1", "DestUniqueid": "b6093874285e-1530191936.551", "DialString": "401@osvpi_account", "Event": "DialBegin", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "8", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.546", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010001-00000022", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Hangup", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.549", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/401@osvpi_account-00000015;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_transfer", "Event": "NewAccountCode", "Exten": "401", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "OldAccountCode": "15001", "Priority": "30", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.553", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000016;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730152", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.559", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000016;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730152", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.561", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000016;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "401", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.559", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000016;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "401", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.559", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000016;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "401", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.559", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000017;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.563", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000017;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730151", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.565", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000017;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "401", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.563", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000017;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "401", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.563", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000017;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "401", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.563", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000016;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730152", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.561", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000016;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730152", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.561", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000016;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730152", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.561", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730152", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "401", "LocalOneChannel": "Local/ID730152@osvpi_route_phoneaccount-00000016;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31260010001", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "401", "LocalOneLanguage": "en", "LocalOneLinkedid": "b6093874285e-1530191936.541", "LocalOnePriority": "1", "LocalOneUniqueid": "b6093874285e-1530191936.559", "LocalOptimization": "Yes", "LocalTwoAccountCode": "150010001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31260010001", "LocalTwoChannel": "Local/ID730152@osvpi_route_phoneaccount-00000016;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "401", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730152", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "b6093874285e-1530191936.541", "LocalTwoPriority": "1", "LocalTwoUniqueid": "b6093874285e-1530191936.561", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/401@osvpi_account-00000015;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_call_int", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-00000016;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "401", "DestLanguage": "en", "DestLinkedid": "b6093874285e-1530191936.541", "DestPriority": "1", "DestUniqueid": "b6093874285e-1530191936.559", "DialString": "ID730152@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "401", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "12", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.553", "content": ""}, + {"AccountCode": "150010001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000017;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730151", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.565", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000017;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730151", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.565", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000017;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730151", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.565", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730151", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "401", "LocalOneChannel": "Local/ID730151@osvpi_route_phoneaccount-00000017;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31260010001", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "401", "LocalOneLanguage": "en", "LocalOneLinkedid": "b6093874285e-1530191936.541", "LocalOnePriority": "1", "LocalOneUniqueid": "b6093874285e-1530191936.563", "LocalOptimization": "Yes", "LocalTwoAccountCode": "150010001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31260010001", "LocalTwoChannel": "Local/ID730151@osvpi_route_phoneaccount-00000017;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "401", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730151", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "b6093874285e-1530191936.541", "LocalTwoPriority": "1", "LocalTwoUniqueid": "b6093874285e-1530191936.565", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/401@osvpi_account-00000015;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_call_int", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-00000017;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "401", "DestLanguage": "en", "DestLinkedid": "b6093874285e-1530191936.541", "DestPriority": "1", "DestUniqueid": "b6093874285e-1530191936.563", "DialString": "ID730151@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "401", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "12", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.553", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010002-00000023", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.569", "content": ""}, + {"AccountCode": "150010003", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010003-00000024", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.570", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010002-00000023", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "401", "Language": "nl", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.569", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010002-00000023", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "401", "Language": "nl", "Linkedid": "b6093874285e-1530191936.541", "OldAccountCode": "150010002", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.569", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010002-00000023", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "401", "Language": "nl", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.569", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010003-00000024", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "401", "Language": "nl", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.570", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010003-00000024", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "401", "Language": "nl", "Linkedid": "b6093874285e-1530191936.541", "OldAccountCode": "150010003", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.570", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010003-00000024", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "401", "Language": "nl", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.570", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000017;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "SIP/150010002-00000023", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "401", "DestLanguage": "nl", "DestLinkedid": "b6093874285e-1530191936.541", "DestPriority": "1", "DestUniqueid": "b6093874285e-1530191936.569", "DialString": "150010002/150010002/172.20.0.13!!0260010001", "Event": "DialBegin", "Exten": "401", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "8", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.565", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000016;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "SIP/150010003-00000024", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "401", "DestLanguage": "nl", "DestLinkedid": "b6093874285e-1530191936.541", "DestPriority": "1", "DestUniqueid": "b6093874285e-1530191936.570", "DialString": "150010003/150010003/172.20.0.13!!0260010001", "Event": "DialBegin", "Exten": "401", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "8", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.561", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010002-00000023", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "401", "Language": "nl", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.569", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000017;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "401", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.563", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/401@osvpi_account-00000015;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "401", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.551", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000014;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.544", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010003-00000024", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "401", "Language": "nl", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.570", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000016;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "401", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.559", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010003-00000024", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "401", "Language": "nl", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.570", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000016;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "SIP/150010003-00000024", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "b6093874285e-1530191936.541", "DestPriority": "1", "DestUniqueid": "b6093874285e-1530191936.570", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "401", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "8", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.561", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000016;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "401", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "8", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.561", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1caf057e-a02c-4ca9-92bf-bf5f1ca24179", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000016;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "401", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.559", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/401@osvpi_account-00000015;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_call_int", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "Local/ID730151@osvpi_route_phoneaccount-00000017;1", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "401", "DestLanguage": "en", "DestLinkedid": "b6093874285e-1530191936.541", "DestPriority": "1", "DestUniqueid": "b6093874285e-1530191936.563", "DialStatus": "CANCEL", "Event": "DialEnd", "Exten": "401", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "12", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.553", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1caf057e-a02c-4ca9-92bf-bf5f1ca24179", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010003-00000024", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.570", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "401", "Cause": "26", "Cause-txt": "Answered elsewhere", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000017;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "401", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.563", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000017;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "SIP/150010002-00000023", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "401", "DestLanguage": "nl", "DestLinkedid": "b6093874285e-1530191936.541", "DestPriority": "1", "DestUniqueid": "b6093874285e-1530191936.569", "DialStatus": "CANCEL", "Event": "DialEnd", "Exten": "401", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "8", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.565", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1caf057e-a02c-4ca9-92bf-bf5f1ca24179", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000016;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "401", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "8", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.561", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/401@osvpi_account-00000015;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_call_int", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "401", "DestChannel": "Local/ID730152@osvpi_route_phoneaccount-00000016;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "b6093874285e-1530191936.541", "DestPriority": "1", "DestUniqueid": "b6093874285e-1530191936.559", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "401", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "12", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.553", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/401@osvpi_account-00000015;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_call_int", "Event": "Newstate", "Exten": "401", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "12", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.553", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "bf35e15c-65ce-4dca-8f14-cded74d2b107", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "401", "Cause": "26", "Cause-txt": "Answered elsewhere", "Channel": "SIP/150010002-00000023", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Hangup", "Exten": "401", "Language": "nl", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.569", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/401@osvpi_account-00000015;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "401", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.551", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000014;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/401@osvpi_account-00000015;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "b6093874285e-1530191936.541", "DestPriority": "1", "DestUniqueid": "b6093874285e-1530191936.551", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "8", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.546", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000014;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "8", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.546", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000014;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.544", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "93bd6c88-fe7b-40c9-8ab8-56d7895bdd0f", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "93bd6c88-fe7b-40c9-8ab8-56d7895bdd0f", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/401@osvpi_account-00000015;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.551", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000021", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/ID730150@osvpi_route_phoneaccount-00000014;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "b6093874285e-1530191936.541", "DestPriority": "1", "DestUniqueid": "b6093874285e-1530191936.544", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.541", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000021", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.541", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "93bd6c88-fe7b-40c9-8ab8-56d7895bdd0f", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000014;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "8", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.546", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "26", "Cause-txt": "Answered elsewhere", "Channel": "Local/ID730151@osvpi_route_phoneaccount-00000017;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "4", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.565", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "9f94932c-aff7-4cd4-a9da-5101ec61d900", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "9f94932c-aff7-4cd4-a9da-5101ec61d900", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000014;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.544", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "9f94932c-aff7-4cd4-a9da-5101ec61d900", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000021", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.541", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "bf35e15c-65ce-4dca-8f14-cded74d2b107", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000016;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.559", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "bf35e15c-65ce-4dca-8f14-cded74d2b107", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/401@osvpi_account-00000015;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_call_int", "Event": "BridgeEnter", "Exten": "401", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "12", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.553", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "63b59af5-c943-4a2d-b87f-2a9846b4e4f0", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "17004412-a4c2-4c4f-9c25-51b9e444ccdd", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "17004412-a4c2-4c4f-9c25-51b9e444ccdd", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "9f94932c-aff7-4cd4-a9da-5101ec61d900", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000021", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.541", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "93bd6c88-fe7b-40c9-8ab8-56d7895bdd0f", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000014;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "8", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.546", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "93bd6c88-fe7b-40c9-8ab8-56d7895bdd0f", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000021", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "b6093874285e-1530191936.546", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.541", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "9f94932c-aff7-4cd4-a9da-5101ec61d900", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000014;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.544", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "9f94932c-aff7-4cd4-a9da-5101ec61d900", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000014;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "4", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.546", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000014;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.544", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "93bd6c88-fe7b-40c9-8ab8-56d7895bdd0f", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000021", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.541", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "bf35e15c-65ce-4dca-8f14-cded74d2b107", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/401@osvpi_account-00000015;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_account_call_int", "Event": "BridgeLeave", "Exten": "401", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "12", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.553", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "bf35e15c-65ce-4dca-8f14-cded74d2b107", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000021", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "b6093874285e-1530191936.553", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.541", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "93bd6c88-fe7b-40c9-8ab8-56d7895bdd0f", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/401@osvpi_account-00000015;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.551", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "93bd6c88-fe7b-40c9-8ab8-56d7895bdd0f", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/401@osvpi_account-00000015;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.551", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/401@osvpi_account-00000015;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "4", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.553", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "bf35e15c-65ce-4dca-8f14-cded74d2b107", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000021", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.541", "content": ""}, + {"AccountCode": "150010001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1caf057e-a02c-4ca9-92bf-bf5f1ca24179", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000016;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "401", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "8", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.561", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1caf057e-a02c-4ca9-92bf-bf5f1ca24179", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000021", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "b6093874285e-1530191936.561", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.541", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "bf35e15c-65ce-4dca-8f14-cded74d2b107", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "401", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000016;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.559", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "bf35e15c-65ce-4dca-8f14-cded74d2b107", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000016;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "401", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "4", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.561", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "401", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730152@osvpi_route_phoneaccount-00000016;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.559", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1caf057e-a02c-4ca9-92bf-bf5f1ca24179", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "401", "Channel": "SIP/150010003-00000024", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.570", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1caf057e-a02c-4ca9-92bf-bf5f1ca24179", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-00000021", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.541", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "1caf057e-a02c-4ca9-92bf-bf5f1ca24179", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "401", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010003-00000024", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "b6093874285e-1530191936.541", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.570", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/voipgrid-siproute-docker-00000021", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "b6093874285e-1530191936.541", "Priority": "4", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530191936.541", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "63b59af5-c943-4a2d-b87f-2a9846b4e4f0", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""} ] diff --git a/tests/fixtures/xfer_misc/call_pickup.json b/tests/fixtures/xfer_misc/call_pickup.json index 2db057d..35404c2 100644 --- a/tests/fixtures/xfer_misc/call_pickup.json +++ b/tests/fixtures/xfer_misc/call_pickup.json @@ -1,47 +1,67 @@ [ - {"Status": "Fully Booted", "Event": "FullyBooted", "content": "", "Privilege": "system,all"}, - {"Uniqueid": "vgua0-dev-1445001221.106", "Channel": "SIP/123450001-00000031", "Privilege": "call,all", "Context": "osvpi_account", "ChannelState": "0", "AccountCode": "123450001", "CallerIDName": "", "content": "", "ChannelStateDesc": "Down", "Event": "Newchannel", "Exten": "202", "CallerIDNum": "123450001"}, - {"ConnectedLineName": "", "ConnectedLineNum": "", "CallerIDName": "", "Uniqueid": "vgua0-dev-1445001221.106", "ChannelStateDesc": "Ring", "Channel": "SIP/123450001-00000031", "Event": "Newstate", "Privilege": "call,all", "ChannelState": "4", "CallerIDNum": "123450001", "content": ""}, - {"CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Alice", "Uniqueid": "vgua0-dev-1445001221.106", "Channel": "SIP/123450001-00000031", "Event": "NewCallerid", "Privilege": "call,all", "CallerIDNum": "123450001", "content": ""}, - {"CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Alice", "Uniqueid": "vgua0-dev-1445001221.106", "Channel": "SIP/123450001-00000031", "Event": "NewCallerid", "Privilege": "call,all", "CallerIDNum": "201", "content": ""}, - {"Uniqueid": "vgua0-dev-1445001221.107", "Channel": "Local/ID42@osvpi_route_phoneaccount-0000001c;1", "Privilege": "call,all", "Context": "osvpi_route_phoneaccount", "ChannelState": "0", "AccountCode": "", "CallerIDName": "", "content": "", "ChannelStateDesc": "Down", "Event": "Newchannel", "Exten": "ID42", "CallerIDNum": ""}, - {"Uniqueid": "vgua0-dev-1445001221.108", "Channel": "Local/ID42@osvpi_route_phoneaccount-0000001c;2", "Privilege": "call,all", "Context": "osvpi_route_phoneaccount", "ChannelState": "4", "AccountCode": "", "CallerIDName": "", "content": "", "ChannelStateDesc": "Ring", "Event": "Newchannel", "Exten": "ID42", "CallerIDNum": ""}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "Uniqueid": "vgua0-dev-1445001221.107", "Channel": "Local/ID42@osvpi_route_phoneaccount-0000001c;1", "Event": "NewCallerid", "Privilege": "call,all", "CallerIDNum": "202", "content": ""}, - {"Channel1": "Local/ID42@osvpi_route_phoneaccount-0000001c;1", "content": "", "LocalOptimization": "Yes", "Uniqueid1": "vgua0-dev-1445001221.107", "Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID42", "Channel2": "Local/ID42@osvpi_route_phoneaccount-0000001c;2", "Privilege": "call,all", "Uniqueid2": "vgua0-dev-1445001221.108"}, - {"UniqueID": "vgua0-dev-1445001221.106", "ConnectedLineName": "", "Channel": "SIP/123450001-00000031", "SubEvent": "Begin", "content": "", "CallerIDNum": "201", "ConnectedLineNum": "", "CallerIDName": "Alice", "Privilege": "call,all", "DestUniqueID": "vgua0-dev-1445001221.107", "Event": "Dial", "Destination": "Local/ID42@osvpi_route_phoneaccount-0000001c;1", "Dialstring": "ID42@osvpi_route_phoneaccount"}, - {"CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Alice", "Uniqueid": "vgua0-dev-1445001221.108", "Channel": "Local/ID42@osvpi_route_phoneaccount-0000001c;2", "Event": "NewCallerid", "Privilege": "call,all", "CallerIDNum": "201", "content": ""}, - {"Uniqueid": "vgua0-dev-1445001221.109", "Channel": "SIP/123450002-00000032", "Privilege": "call,all", "Context": "osvpi_account", "ChannelState": "0", "AccountCode": "123450002", "CallerIDName": "", "content": "", "ChannelStateDesc": "Down", "Event": "Newchannel", "Exten": "", "CallerIDNum": ""}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "Uniqueid": "vgua0-dev-1445001221.109", "Channel": "SIP/123450002-00000032", "Event": "NewCallerid", "Privilege": "call,all", "CallerIDNum": "202", "content": ""}, - {"UniqueID": "vgua0-dev-1445001221.108", "ConnectedLineName": "", "Channel": "Local/ID42@osvpi_route_phoneaccount-0000001c;2", "SubEvent": "Begin", "content": "", "CallerIDNum": "201", "ConnectedLineNum": "202", "CallerIDName": "Alice", "Privilege": "call,all", "DestUniqueID": "vgua0-dev-1445001221.109", "Event": "Dial", "Destination": "SIP/123450002-00000032", "Dialstring": "123450002/123450002/1.2.3.4"}, - {"ConnectedLineName": "Alice", "ConnectedLineNum": "201", "CallerIDName": "", "Uniqueid": "vgua0-dev-1445001221.109", "ChannelStateDesc": "Ringing", "Channel": "SIP/123450002-00000032", "Event": "Newstate", "Privilege": "call,all", "ChannelState": "5", "CallerIDNum": "202", "content": ""}, - {"ConnectedLineName": "Alice", "ConnectedLineNum": "201", "CallerIDName": "", "Uniqueid": "vgua0-dev-1445001221.107", "ChannelStateDesc": "Ringing", "Channel": "Local/ID42@osvpi_route_phoneaccount-0000001c;1", "Event": "Newstate", "Privilege": "call,all", "ChannelState": "5", "CallerIDNum": "202", "content": ""}, - {"Uniqueid": "vgua0-dev-1445001226.110", "Channel": "SIP/123450003-00000033", "Privilege": "call,all", "Context": "osvpi_account", "ChannelState": "0", "AccountCode": "123450003", "CallerIDName": "", "content": "", "ChannelStateDesc": "Down", "Event": "Newchannel", "Exten": "123450002", "CallerIDNum": "123450003"}, - {"ConnectedLineName": "", "ConnectedLineNum": "", "CallerIDName": "", "Uniqueid": "vgua0-dev-1445001226.110", "ChannelStateDesc": "Ring", "Channel": "SIP/123450003-00000033", "Event": "Newstate", "Privilege": "call,all", "ChannelState": "4", "CallerIDNum": "123450003", "content": ""}, - {"ConnectedLineName": "", "ConnectedLineNum": "", "CallerIDName": "", "Uniqueid": "vgua0-dev-1445001226.110", "ChannelStateDesc": "Up", "Channel": "SIP/123450003-00000033", "Event": "Newstate", "Privilege": "call,all", "ChannelState": "6", "CallerIDNum": "123450003", "content": ""}, - {"Original": "SIP/123450002-00000032", "content": "", "Clone": "SIP/123450003-00000033", "CloneState": "Up", "Event": "Masquerade", "OriginalState": "Ringing", "Privilege": "call,all"}, - {"content": "", "Newname": "SIP/123450003-00000033", "Channel": "SIP/123450003-00000033", "Event": "Rename", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1445001226.110"}, - {"content": "", "Newname": "SIP/123450003-00000033", "Channel": "SIP/123450002-00000032", "Event": "Rename", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1445001221.109"}, - {"content": "", "Newname": "SIP/123450002-00000032", "Channel": "SIP/123450003-00000033", "Event": "Rename", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1445001226.110"}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "Uniqueid": "vgua0-dev-1445001221.109", "Channel": "SIP/123450003-00000033", "Event": "NewCallerid", "Privilege": "call,all", "CallerIDNum": "123450003", "content": ""}, - {"ConnectedLineName": "Alice", "Uniqueid": "vgua0-dev-1445001226.110", "Cause-txt": "Switching equipment congestion", "Channel": "SIP/123450002-00000032", "Privilege": "call,all", "ConnectedLineNum": "201", "CallerIDName": "", "CallerIDNum": "202", "AccountCode": "123450003", "Cause": "42", "Event": "Hangup", "content": ""}, - {"ConnectedLineName": "", "ConnectedLineNum": "202", "CallerIDName": "Alice", "Uniqueid": "vgua0-dev-1445001221.108", "ChannelStateDesc": "Up", "Channel": "Local/ID42@osvpi_route_phoneaccount-0000001c;2", "Event": "Newstate", "Privilege": "call,all", "ChannelState": "6", "CallerIDNum": "201", "content": ""}, - {"ConnectedLineName": "Alice", "ConnectedLineNum": "201", "CallerIDName": "", "Uniqueid": "vgua0-dev-1445001221.107", "ChannelStateDesc": "Up", "Channel": "Local/ID42@osvpi_route_phoneaccount-0000001c;1", "Event": "Newstate", "Privilege": "call,all", "ChannelState": "6", "CallerIDNum": "202", "content": ""}, - {"OldAccountCode": "123450003", "AccountCode": "123450001", "Uniqueid": "vgua0-dev-1445001221.109", "Channel": "SIP/123450003-00000033", "Event": "NewAccountCode", "Privilege": "call,all", "content": ""}, - {"Bridgestate": "Link", "CallerID1": "201", "Event": "Bridge", "Channel1": "Local/ID42@osvpi_route_phoneaccount-0000001c;2", "CallerID2": "123450003", "Channel2": "SIP/123450003-00000033", "Bridgetype": "core", "Uniqueid1": "vgua0-dev-1445001221.108", "content": "", "Privilege": "call,all", "Uniqueid2": "vgua0-dev-1445001221.109"}, - {"ConnectedLineName": "", "ConnectedLineNum": "", "CallerIDName": "Alice", "Uniqueid": "vgua0-dev-1445001221.106", "ChannelStateDesc": "Up", "Channel": "SIP/123450001-00000031", "Event": "Newstate", "Privilege": "call,all", "ChannelState": "6", "CallerIDNum": "201", "content": ""}, - {"OldAccountCode": "123450001", "AccountCode": "123450001", "Uniqueid": "vgua0-dev-1445001221.107", "Channel": "Local/ID42@osvpi_route_phoneaccount-0000001c;1", "Event": "NewAccountCode", "Privilege": "call,all", "content": ""}, - {"Bridgestate": "Link", "CallerID1": "201", "Event": "Bridge", "Channel1": "SIP/123450001-00000031", "CallerID2": "202", "Channel2": "Local/ID42@osvpi_route_phoneaccount-0000001c;1", "Bridgetype": "core", "Uniqueid1": "vgua0-dev-1445001221.106", "content": "", "Privilege": "call,all", "Uniqueid2": "vgua0-dev-1445001221.107"}, - {"Original": "Local/ID42@osvpi_route_phoneaccount-0000001c;1", "content": "", "Clone": "SIP/123450003-00000033", "CloneState": "Up", "Event": "Masquerade", "OriginalState": "Up", "Privilege": "call,all"}, - {"content": "", "Newname": "SIP/123450003-00000033", "Channel": "SIP/123450003-00000033", "Event": "Rename", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1445001221.109"}, - {"content": "", "Newname": "SIP/123450003-00000033", "Channel": "Local/ID42@osvpi_route_phoneaccount-0000001c;1", "Event": "Rename", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1445001221.107"}, - {"content": "", "Newname": "Local/ID42@osvpi_route_phoneaccount-0000001c;1", "Channel": "SIP/123450003-00000033", "Event": "Rename", "Privilege": "call,all", "Uniqueid": "vgua0-dev-1445001221.109"}, - {"CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "Uniqueid": "vgua0-dev-1445001221.107", "Channel": "SIP/123450003-00000033", "Event": "NewCallerid", "Privilege": "call,all", "CallerIDNum": "202", "content": ""}, - {"Bridgestate": "Unlink", "CallerID1": "201", "Event": "Bridge", "Channel1": "Local/ID42@osvpi_route_phoneaccount-0000001c;2", "CallerID2": "123450003", "Channel2": "Local/ID42@osvpi_route_phoneaccount-0000001c;1", "Bridgetype": "core", "Uniqueid1": "vgua0-dev-1445001221.108", "content": "", "Privilege": "call,all", "Uniqueid2": "vgua0-dev-1445001221.109"}, - {"ConnectedLineName": "Alice", "Uniqueid": "vgua0-dev-1445001221.109", "Cause-txt": "Normal Clearing", "Channel": "Local/ID42@osvpi_route_phoneaccount-0000001c;1", "Privilege": "call,all", "ConnectedLineNum": "201", "CallerIDName": "", "CallerIDNum": "123450003", "AccountCode": "123450001", "Cause": "16", "Event": "Hangup", "content": ""}, - {"UniqueID": "vgua0-dev-1445001221.108", "SubEvent": "End", "content": "", "Channel": "Local/ID42@osvpi_route_phoneaccount-0000001c;2", "Event": "Dial", "DialStatus": "ANSWER", "Privilege": "call,all"}, - {"ConnectedLineName": "", "Uniqueid": "vgua0-dev-1445001221.108", "Cause-txt": "Normal Clearing", "Channel": "Local/ID42@osvpi_route_phoneaccount-0000001c;2", "Privilege": "call,all", "ConnectedLineNum": "202", "CallerIDName": "Alice", "CallerIDNum": "201", "AccountCode": "123450001", "Cause": "16", "Event": "Hangup", "content": ""}, - {"Bridgestate": "Unlink", "CallerID1": "201", "Event": "Bridge", "Channel1": "SIP/123450001-00000031", "CallerID2": "202", "Channel2": "SIP/123450003-00000033", "Bridgetype": "core", "Uniqueid1": "vgua0-dev-1445001221.106", "content": "", "Privilege": "call,all", "Uniqueid2": "vgua0-dev-1445001221.107"}, - {"ConnectedLineName": "", "Uniqueid": "vgua0-dev-1445001221.107", "Cause-txt": "Normal Clearing", "Channel": "SIP/123450003-00000033", "Privilege": "call,all", "ConnectedLineNum": "", "CallerIDName": "", "CallerIDNum": "202", "AccountCode": "123450001", "Cause": "16", "Event": "Hangup", "content": ""}, - {"UniqueID": "vgua0-dev-1445001221.106", "SubEvent": "End", "content": "", "Channel": "SIP/123450001-00000031", "Event": "Dial", "DialStatus": "ANSWER", "Privilege": "call,all"}, - {"ConnectedLineName": "", "Uniqueid": "vgua0-dev-1445001221.106", "Cause-txt": "Normal Clearing", "Channel": "SIP/123450001-00000031", "Privilege": "call,all", "ConnectedLineNum": "", "CallerIDName": "Alice", "CallerIDNum": "201", "AccountCode": "123450001", "Cause": "16", "Event": "Hangup", "content": ""} + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"Event": "FullyBooted", "Privilege": "system,all", "Status": "Fully Booted", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-0000000c", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newchannel", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530190223.162", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190223.162", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-0000000c", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "voipgrid_in", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530190223.162", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190223.162", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-0000000c", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_world", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530190223.162", "Priority": "10", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190223.162", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000005;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730150", "Language": "en", "Linkedid": "b6093874285e-1530190223.162", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190223.165", "content": ""}, + {"AccountCode": "", "CallerIDName": "", "CallerIDNum": "", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000005;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount", "Event": "Newchannel", "Exten": "ID730150", "Language": "en", "Linkedid": "b6093874285e-1530190223.162", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190223.167", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000005;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530190223.162", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190223.165", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000005;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530190223.162", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190223.165", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000005;1", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530190223.162", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190223.165", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000005;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "ID730150", "Language": "en", "Linkedid": "b6093874285e-1530190223.162", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190223.167", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000005;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewAccountCode", "Exten": "ID730150", "Language": "en", "Linkedid": "b6093874285e-1530190223.162", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190223.167", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000005;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_route_phoneaccount", "Event": "NewConnectedLine", "Exten": "ID730150", "Language": "en", "Linkedid": "b6093874285e-1530190223.162", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190223.167", "content": ""}, + {"Context": "osvpi_route_phoneaccount", "Event": "LocalBridge", "Exten": "ID730150", "LocalOneAccountCode": "15001", "LocalOneCallerIDName": "", "LocalOneCallerIDNum": "+31150010001", "LocalOneChannel": "Local/ID730150@osvpi_route_phoneaccount-00000005;1", "LocalOneChannelState": "0", "LocalOneChannelStateDesc": "Down", "LocalOneConnectedLineName": "", "LocalOneConnectedLineNum": "+31260010001", "LocalOneContext": "osvpi_route_phoneaccount", "LocalOneExten": "+31150010001", "LocalOneLanguage": "en", "LocalOneLinkedid": "b6093874285e-1530190223.162", "LocalOnePriority": "1", "LocalOneUniqueid": "b6093874285e-1530190223.165", "LocalOptimization": "Yes", "LocalTwoAccountCode": "15001", "LocalTwoCallerIDName": "", "LocalTwoCallerIDNum": "+31260010001", "LocalTwoChannel": "Local/ID730150@osvpi_route_phoneaccount-00000005;2", "LocalTwoChannelState": "4", "LocalTwoChannelStateDesc": "Ring", "LocalTwoConnectedLineName": "", "LocalTwoConnectedLineNum": "+31150010001", "LocalTwoContext": "osvpi_route_phoneaccount", "LocalTwoExten": "ID730150", "LocalTwoLanguage": "en", "LocalTwoLinkedid": "b6093874285e-1530190223.162", "LocalTwoPriority": "1", "LocalTwoUniqueid": "b6093874285e-1530190223.167", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-0000000c", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_route_phoneaccount_step", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "Local/ID730150@osvpi_route_phoneaccount-00000005;1", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "+31150010001", "DestLanguage": "en", "DestLinkedid": "b6093874285e-1530190223.162", "DestPriority": "1", "DestUniqueid": "b6093874285e-1530190223.165", "DialString": "ID730150@osvpi_route_phoneaccount", "Event": "DialBegin", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530190223.162", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190223.162", "content": ""}, + {"AccountCode": "150010001", "CallerIDName": "", "CallerIDNum": "", "Channel": "SIP/150010001-0000000d", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "s", "Language": "en", "Linkedid": "b6093874285e-1530190223.162", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190223.170", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "0 (Presentation Allowed, Not Screened)", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-0000000d", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530190223.162", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190223.170", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-0000000d", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530190223.162", "OldAccountCode": "150010001", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190223.170", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-0000000d", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530190223.162", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190223.170", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000005;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "15001", "DestCallerIDName": "", "DestCallerIDNum": "+31150010001", "DestChannel": "SIP/150010001-0000000d", "DestChannelState": "0", "DestChannelStateDesc": "Down", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "+31150010001", "DestLanguage": "nl", "DestLinkedid": "b6093874285e-1530190223.162", "DestPriority": "1", "DestUniqueid": "b6093874285e-1530190223.170", "DialString": "150010001/150010001/172.20.0.13!!0260010001", "Event": "DialBegin", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530190223.162", "Priority": "8", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190223.167", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-0000000d", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530190223.162", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190223.170", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000005;1", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530190223.162", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190223.165", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Bob", "CallerIDNum": "150010002", "Channel": "SIP/150010002-0000000e", "ChannelState": "0", "ChannelStateDesc": "Down", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newchannel", "Exten": "*8", "Language": "en", "Linkedid": "b6093874285e-1530190227.172", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190227.172", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Bob", "CallerIDNum": "150010002", "Channel": "SIP/150010002-0000000e", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_account", "Event": "Newstate", "Exten": "*8", "Language": "nl", "Linkedid": "b6093874285e-1530190227.172", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190227.172", "content": ""}, + {"AccountCode": "150010002", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Christina Arroyo", "CallerIDNum": "150010002", "Channel": "SIP/150010002-0000000e", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "*8", "Language": "nl", "Linkedid": "b6093874285e-1530190227.172", "Priority": "5", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190227.172", "content": ""}, + {"AccountCode": "150010002", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "SIP/150010002-0000000e", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "", "Context": "osvpi_proc_set_callerid", "Event": "NewCallerid", "Exten": "*8", "Language": "nl", "Linkedid": "b6093874285e-1530190227.172", "Priority": "6", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190227.172", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "SIP/150010002-0000000e", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account_clean_star_signals", "Event": "NewConnectedLine", "Exten": "*8", "Language": "nl", "Linkedid": "b6093874285e-1530190227.172", "Priority": "3", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190227.172", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "SIP/150010002-0000000e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account_clean_star_signals", "Event": "Newstate", "Exten": "*8", "Language": "nl", "Linkedid": "b6093874285e-1530190227.172", "Priority": "3", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190227.172", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000005;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010002", "DestCallerIDName": "Christina Arroyo", "DestCallerIDNum": "202", "DestChannel": "SIP/150010001-0000000d", "DestChannelState": "5", "DestChannelStateDesc": "Ringing", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account_clean_star_signals", "DestExten": "*8", "DestLanguage": "nl", "DestLinkedid": "b6093874285e-1530190223.162", "DestPriority": "3", "DestUniqueid": "b6093874285e-1530190223.170", "DialStatus": "CANCEL", "Event": "DialEnd", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530190223.162", "Priority": "8", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190223.167", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000005;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "", "ConnectedLineNum": "+31150010001", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010002", "DestCallerIDName": "Christina Arroyo", "DestCallerIDNum": "202", "DestChannel": "SIP/150010002-0000000e", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account_clean_star_signals", "DestExten": "*8", "DestLanguage": "nl", "DestLinkedid": "b6093874285e-1530190227.172", "DestPriority": "3", "DestUniqueid": "b6093874285e-1530190227.172", "DialString": "150010001/150010001/172.20.0.13!!0260010001", "Event": "DialBegin", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530190223.162", "Priority": "8", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190223.167", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "SIP/150010002-0000000e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530190227.172", "OldAccountCode": "150010002", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190227.172", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "SIP/150010002-0000000e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "NewAccountCode", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530190227.172", "OldAccountCode": "15001", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190227.172", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "SIP/150010002-0000000e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account_clean_star_signals", "Event": "Pickup", "Exten": "*8", "Language": "nl", "Linkedid": "b6093874285e-1530190227.172", "Priority": "3", "Privilege": "call,all", "SystemName": "b6093874285e", "TargetAccountCode": "15001", "TargetCallerIDName": "", "TargetCallerIDNum": "+31150010001", "TargetChannel": "SIP/150010001-0000000d", "TargetChannelState": "5", "TargetChannelStateDesc": "Ringing", "TargetConnectedLineName": "", "TargetConnectedLineNum": "+31260010001", "TargetContext": "osvpi_account", "TargetExten": "+31150010001", "TargetLanguage": "nl", "TargetLinkedid": "b6093874285e-1530190223.162", "TargetPriority": "1", "TargetUniqueid": "b6093874285e-1530190223.170", "Uniqueid": "b6093874285e-1530190227.172", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000005;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530190223.162", "Priority": "8", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190223.167", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "+31150010001", "Channel": "SIP/150010001-0000000d", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "handlers", "Event": "NewAccountCode", "Exten": "onhangup", "Language": "nl", "Linkedid": "b6093874285e-1530190223.162", "OldAccountCode": "15001", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190223.170", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000005;2", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "DestAccountCode": "150010002", "DestCallerIDName": "Christina Arroyo", "DestCallerIDNum": "202", "DestChannel": "SIP/150010002-0000000e", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_account", "DestExten": "", "DestLanguage": "nl", "DestLinkedid": "b6093874285e-1530190227.172", "DestPriority": "1", "DestUniqueid": "b6093874285e-1530190227.172", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530190223.162", "Priority": "8", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190223.167", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000005;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530190223.162", "Priority": "8", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190223.167", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-0000000c", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount_step", "Event": "NewConnectedLine", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530190223.162", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190223.162", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000005;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Newstate", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530190223.162", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190223.165", "content": ""}, + {"AccountCode": "15001", "CID-CallingPres": "1 (Presentation Allowed, Passed Screen)", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000005;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "NewCallerid", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530190223.162", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190223.165", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "096a9645-bd86-40d8-87a0-e6e8f49be18d", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "", "CallerIDNum": "+31150010001", "Cause": "26", "Cause-txt": "Answered elsewhere", "Channel": "SIP/150010001-0000000d", "ChannelState": "5", "ChannelStateDesc": "Ringing", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "b6093874285e-1530190223.162", "Priority": "4", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190223.170", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-0000000c", "ChannelState": "4", "ChannelStateDesc": "Ring", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount_step", "DestAccountCode": "15001", "DestCallerIDName": "Christina Arroyo", "DestCallerIDNum": "202", "DestChannel": "Local/ID730150@osvpi_route_phoneaccount-00000005;1", "DestChannelState": "6", "DestChannelStateDesc": "Up", "DestConnectedLineName": "", "DestConnectedLineNum": "+31260010001", "DestContext": "osvpi_route_phoneaccount", "DestExten": "", "DestLanguage": "en", "DestLinkedid": "b6093874285e-1530190223.162", "DestPriority": "1", "DestUniqueid": "b6093874285e-1530190223.165", "DialStatus": "ANSWER", "Event": "DialEnd", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530190223.162", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190223.162", "content": ""}, + {"AccountCode": "150010002", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "096a9645-bd86-40d8-87a0-e6e8f49be18d", "BridgeVideoSourceMode": "none", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "SIP/150010002-0000000e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "b6093874285e-1530190227.172", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190227.172", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-0000000c", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount_step", "Event": "Newstate", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530190223.162", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190223.162", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "096a9645-bd86-40d8-87a0-e6e8f49be18d", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000005;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530190223.162", "Priority": "8", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190223.167", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c1ece1f0-2d8a-4815-84bf-875a8cfac956", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "5ffcd12e-19e4-4697-82f0-f94a89a1c5da", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "5a27d26a-258a-4f5e-acda-7911ab8f979c", "BridgeVideoSourceMode": "none", "Event": "BridgeCreate", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c1ece1f0-2d8a-4815-84bf-875a8cfac956", "BridgeVideoSourceMode": "none", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000005;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeEnter", "Exten": "", "Language": "en", "Linkedid": "b6093874285e-1530190223.162", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190223.165", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c1ece1f0-2d8a-4815-84bf-875a8cfac956", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-0000000c", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount_step", "Event": "BridgeEnter", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530190223.162", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190223.162", "content": ""}, + {"AccountCode": "150010002", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "096a9645-bd86-40d8-87a0-e6e8f49be18d", "BridgeVideoSourceMode": "none", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "SIP/150010002-0000000e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "b6093874285e-1530190223.162", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190227.172", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c1ece1f0-2d8a-4815-84bf-875a8cfac956", "BridgeVideoSourceMode": "none", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000005;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "BridgeLeave", "Exten": "", "Language": "en", "Linkedid": "b6093874285e-1530190223.162", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190223.165", "content": ""}, + {"AccountCode": "150010002", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "2", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c1ece1f0-2d8a-4815-84bf-875a8cfac956", "BridgeVideoSourceMode": "none", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "SIP/150010002-0000000e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeEnter", "Exten": "", "Language": "nl", "Linkedid": "b6093874285e-1530190223.162", "Priority": "1", "Privilege": "call,all", "SwapUniqueid": "b6093874285e-1530190223.165", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190227.172", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "096a9645-bd86-40d8-87a0-e6e8f49be18d", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000005;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_proc_proxy_out", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "en", "Linkedid": "b6093874285e-1530190223.162", "Priority": "8", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190223.167", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000005;2", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "en", "Linkedid": "b6093874285e-1530190223.162", "Priority": "4", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190223.167", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "Local/ID730150@osvpi_route_phoneaccount-00000005;1", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_route_phoneaccount", "Event": "Hangup", "Exten": "", "Language": "en", "Linkedid": "b6093874285e-1530190223.162", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190223.165", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "096a9645-bd86-40d8-87a0-e6e8f49be18d", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "5ffcd12e-19e4-4697-82f0-f94a89a1c5da", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"AccountCode": "150010002", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "1", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c1ece1f0-2d8a-4815-84bf-875a8cfac956", "BridgeVideoSourceMode": "none", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Channel": "SIP/150010002-0000000e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "BridgeLeave", "Exten": "", "Language": "nl", "Linkedid": "b6093874285e-1530190223.162", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190227.172", "content": ""}, + {"AccountCode": "150010002", "CallerIDName": "Christina Arroyo", "CallerIDNum": "202", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/150010002-0000000e", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "", "ConnectedLineNum": "+31260010001", "Context": "osvpi_account", "Event": "Hangup", "Exten": "", "Language": "nl", "Linkedid": "b6093874285e-1530190223.162", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190227.172", "content": ""}, + {"AccountCode": "15001", "BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c1ece1f0-2d8a-4815-84bf-875a8cfac956", "BridgeVideoSourceMode": "none", "CallerIDName": "", "CallerIDNum": "+31260010001", "Channel": "SIP/voipgrid-siproute-docker-0000000c", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "osvpi_route_phoneaccount_step", "Event": "BridgeLeave", "Exten": "+31150010001", "Language": "nl", "Linkedid": "b6093874285e-1530190223.162", "Priority": "1", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190223.162", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "c1ece1f0-2d8a-4815-84bf-875a8cfac956", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""}, + {"AccountCode": "15001", "CallerIDName": "", "CallerIDNum": "+31260010001", "Cause": "16", "Cause-txt": "Normal Clearing", "Channel": "SIP/voipgrid-siproute-docker-0000000c", "ChannelState": "6", "ChannelStateDesc": "Up", "ConnectedLineName": "Christina Arroyo", "ConnectedLineNum": "202", "Context": "handlers", "Event": "Hangup", "Exten": "onhangup", "Language": "nl", "Linkedid": "b6093874285e-1530190223.162", "Priority": "4", "Privilege": "call,all", "SystemName": "b6093874285e", "Uniqueid": "b6093874285e-1530190223.162", "content": ""}, + {"BridgeCreator": "", "BridgeName": "", "BridgeNumChannels": "0", "BridgeTechnology": "simple_bridge", "BridgeType": "basic", "BridgeUniqueid": "5a27d26a-258a-4f5e-acda-7911ab8f979c", "BridgeVideoSourceMode": "none", "Event": "BridgeDestroy", "Privilege": "call,all", "SystemName": "b6093874285e", "content": ""} ] diff --git a/tests/replaytest.py b/tests/replaytest.py index 06d3034..1811dbc 100644 --- a/tests/replaytest.py +++ b/tests/replaytest.py @@ -1,72 +1,63 @@ +from collections import Iterable import os from cacofonisk import BaseReporter -from cacofonisk.channel import ChannelManager +from cacofonisk import EventHandler +from cacofonisk.channel import SimpleChannel from cacofonisk.runners.file_runner import FileRunner from cacofonisk.utils.testcases import BaseTestCase class TestReporter(BaseReporter): - """TestReporter collects the events generated by ChannelManager. + """ + TestReporter collects the events generated by EventHandler. The events can be retrieved later to see which events have been generated during the test. """ + def __init__(self): super(TestReporter, self).__init__() self.events = [] - def on_b_dial(self, call_id, caller, to_number, targets): - targets.sort(key=lambda callee: '%s%s' % (callee.code, callee.number)) - - self.events.append({ - 'event': 'on_b_dial', - 'call_id': call_id, + def on_b_dial(self, caller, targets): + self.events.append(('on_b_dial', { 'caller': caller, - 'to_number': to_number, - 'targets': targets, - }) - - def on_warm_transfer(self, new_id, merged_id, redirector, caller, callee): - self.events.append({ - 'event': 'on_warm_transfer', - 'redirector': redirector, + 'targets': sorted([target for target in targets]), + })) + + def on_attended_transfer(self, caller, transferer, target): + self.events.append(('on_attended_transfer', { 'caller': caller, - 'callee': callee, - 'new_id': new_id, - 'merged_id': merged_id, - }) + 'transferer': transferer, + 'target': target, + })) - def on_cold_transfer(self, call_id, merged_id, redirector, caller, to_number, targets): - targets.sort(key=lambda callee: '%s%s' % (callee.code, callee.number)) + def on_blind_transfer(self, caller, transferer, targets): + self.events.append(('on_blind_transfer', { + 'caller': caller, + 'transferer': transferer, + 'targets': sorted([target for target in targets]) + })) - self.events.append({ - 'event': 'on_cold_transfer', - 'redirector': redirector, + def on_blonde_transfer(self, caller, transferer, targets): + self.events.append(('on_blonde_transfer', { 'caller': caller, - 'targets': targets, - 'new_id': call_id, - 'merged_id': merged_id, - 'to_number': to_number, - }) - - def on_up(self, call_id, caller, to_number, callee): - self.events.append({ - 'event': 'on_up', + 'transferer': transferer, + 'targets': sorted([target for target in targets]) + })) + + def on_up(self, caller, target): + self.events.append(('on_up', { 'caller': caller, - 'to_number': to_number, - 'callee': callee, - 'call_id': call_id, - }) - - def on_hangup(self, call_id, caller, to_number, reason): - self.events.append({ - 'event': 'on_hangup', + 'target': target, + })) + + def on_hangup(self, caller, reason): + self.events.append(('on_hangup', { 'caller': caller, - 'to_number': to_number, 'reason': reason, - 'call_id': call_id, - }) + })) class BogoRunner(object): @@ -76,44 +67,26 @@ def __init__(self, events, reporter): self.channel_managers = [] def run(self): - channelmgr = ChannelManager(reporter=self.reporter) + handler = EventHandler(reporter=self.reporter) + interesting_events = handler.event_handlers().keys() for event in self.events: - if ('*' in channelmgr.INTERESTING_EVENTS or - event['Event'] in channelmgr.INTERESTING_EVENTS): - channelmgr.on_event(event) + if ( + not handler.FILTER_EVENTS or + event['Event'] in interesting_events + ): + handler.on_event(event) - self.channel_managers.append(channelmgr) + self.channel_managers.append(handler) class ChannelEventsTestCase(BaseTestCase): """ Run event tests based on the JSON sample data. """ - maxDiff = 8192 - def events_from_tuples(cls, tuples): """ Convert a list of tuples to the expected event list. - Example:: - - events = events_from_tuples(( - ('on_b_dial', (126680001, '', '201', True), - (126680003, '', '203', True)), - ('on_transfer', (126680001, '', '201', True), - (126680002, '', '202', True), - (126680003, '', '203', True)), - )) - events == tuple([ - {'event': 'on_b_dial', - 'caller': CallerId(126680001, '', '201', True), - 'callee': CallerId(126680003, '', '203', True)}, - {'event': 'on_transfer', - 'redirector': CallerId(126680001, '', '201', True), - 'caller': CallerId(126680002, '', '202', True), - 'callee': CallerId(126680003, '', '203', True)}, - ]) - Args: tuples: An iterable with iterables, see example. @@ -139,4 +112,22 @@ def run_and_get_events(self, filename, reporter=None): runner.run() assert len(runner.channel_managers) == 1 - return tuple(reporter.events) + return reporter.events + + def _pluck_channel_name_from_event(self, event): + name, data = event + data = data.copy() + + for key, value in data.items(): + if isinstance(value, SimpleChannel): + data[key] = value.name + elif isinstance(value, Iterable) and not isinstance(value, str): + data[key] = [item.name for item in value] + + return name, data + + def assertEqualChannels(self, expected, actual): + actual_channels = [self._pluck_channel_name_from_event(event) for + event in actual] + + self.assertEqual(expected, actual_channels) diff --git a/tests/test_acceptance.py b/tests/test_acceptance.py deleted file mode 100644 index 8d633c3..0000000 --- a/tests/test_acceptance.py +++ /dev/null @@ -1,185 +0,0 @@ -from cacofonisk.callerid import CallerId -from .replaytest import ChannelEventsTestCase - - -class TestCallAcceptance(ChannelEventsTestCase): - - def test_accepted(self): - """Test an accepted call via callgroup. - - +315080xxxxx dials calls +31853xxxxxx, - +31612345678 is the configured fixed destination, - +31612345678 picks up, accepts the call by pressing 1, - Later the call is disconnected. - """ - events = self.run_and_get_events('fixtures/acceptance/accept_accepted.json') - - expected_events = self.events_from_tuples(( - ('on_b_dial', { - 'call_id': 'ua0-acc-1506952916.1769', - 'caller': CallerId(code=12668, number='+315080xxxxx', is_public=True), - 'to_number': '+31853xxxxxx', - 'targets': [CallerId(code=0, number='+31612345678', is_public=True)], - }), - ('on_up', { - 'call_id': 'ua0-acc-1506952916.1769', - 'caller': CallerId(code=12668, number='+315080xxxxx', is_public=True), - 'to_number': '+31853xxxxxx', - 'callee': CallerId(code=12668, number='+31612345678', is_public=True), - }), - ('on_hangup', { - 'call_id': 'ua0-acc-1506952916.1769', - 'caller': CallerId(code=12668, number='+315080xxxxx', is_public=True), - 'to_number': '+31853xxxxxx', - 'reason': 'completed', - }), - )) - - self.assertEqual(expected_events, events) - - def test_multiple_accepted(self): - """Test an accepted call via callgroup with two fixed destinations. - - +315080xxxxx dials +31853xxxxxx, - callgroup containing +31613925xxx and +31508012345 is called, - +31508012345 picks up and accepts the call. - Later the call is disconnected. - """ - events = self.run_and_get_events('fixtures/acceptance/accept_multiple_accepted.json') - - expected_events = self.events_from_tuples(( - ('on_b_dial', { - 'call_id': 'ua0-acc-1507798662.2063', - 'caller': CallerId(code=12668, number='+315080xxxxx', is_public=True), - 'to_number': '+31853xxxxxx', - 'targets': [ - CallerId(code=0, number='+31508012345', is_public=True), - CallerId(code=0, number='+31613925xxx', is_public=True), - ], - }), - # +31508012345 picks up, +31613925xxx keeps ringing until 1 is pressed. - ('on_up', { - 'call_id': 'ua0-acc-1507798662.2063', - 'to_number': '+31853xxxxxx', - 'caller': CallerId(code=12668, number='+315080xxxxx', is_public=True), - 'callee': CallerId(code=12668, number='+31508012345', is_public=True), - }), - ('on_hangup', { - 'call_id': 'ua0-acc-1507798662.2063', - 'caller': CallerId(code=12668, number='+315080xxxxx', is_public=True), - 'to_number': '+31853xxxxxx', - 'reason': 'completed', - }), - )) - - self.assertEqual(expected_events, events) - - def test_multiple_complexaccepted(self): - """Test an accepted call via callgroup with two fixed destinations. - - +315080xxxxx dials +31853xxxxxx, - callgroup containing +31613925xxx and +31508012345 is called, - +31613925xxx picks up but does not press 1 to accept, - +31508012345 picks up and accepts the call, - Later the call is disconnected. - """ - events = self.run_and_get_events('fixtures/acceptance/accept_multiple_complexaccepted.json') - - expected_events = self.events_from_tuples(( - ('on_b_dial', { - 'call_id': 'ua0-acc-1507800454.2085', - 'caller': CallerId(code=12668, number='+315080xxxxx', is_public=True), - 'to_number': '+31853xxxxxx', - 'targets': [ - CallerId(code=0, number='+31508012345', is_public=True), - CallerId(code=0, number='+31613925xxx', is_public=True), - ], - }), - # +31613925xxx also picks up, and does accept - ('on_up', { - 'call_id': 'ua0-acc-1507800454.2085', - 'caller': CallerId(code=12668, number='+315080xxxxx', is_public=True), - 'to_number': '+31853xxxxxx', - 'callee': CallerId(code=12668, number='+31613925xxx', is_public=True), - }), - ('on_hangup', { - 'call_id': 'ua0-acc-1507800454.2085', - 'caller': CallerId(code=12668, number='+315080xxxxx', is_public=True), - 'to_number': '+31853xxxxxx', - 'reason': 'completed', - }), - )) - - self.assertEqual(expected_events, events) - - def test_notaccepted(self): - """Test a not accepted but answered call. - - +31613925xxx picks up, does NOT accept the call, and hangs up. - """ - events = self.run_and_get_events('fixtures/acceptance/accept_notaccepted.json') - - expected_events = self.events_from_tuples(( - ('on_b_dial', { - 'call_id': 'ua0-acc-1507621393.1940', - 'caller': CallerId(code=12668, number='+315080xxxxx', is_public=True), - 'to_number': '+31853xxxxxx', - 'targets': [CallerId(code=0, number='+31613925xxx', is_public=True)], - }), - ('on_hangup', { - 'call_id': 'ua0-acc-1507621393.1940', - 'caller': CallerId(code=12668, number='+315080xxxxx', is_public=True), - 'to_number': '+31853xxxxxx', - 'reason': 'no-answer', - }), - )) - - self.assertEqual(expected_events, events) - - def test_deny(self): - """Test a denied call. - - +315080xxxxx calls +31613925xxx and +31613925xxx refuses the call. - """ - events = self.run_and_get_events('fixtures/acceptance/accept_deny.json') - - expected_events = self.events_from_tuples(( - ('on_b_dial', { - 'call_id': 'ua0-acc-1507624765.2057', - 'caller': CallerId(code=12668, number='+315080xxxxx', is_public=True), - 'to_number': '+31853xxxxxx', - 'targets': [CallerId(code=0, number='+31613925xxx', is_public=True)], - }), - ('on_hangup', { - 'call_id': 'ua0-acc-1507624765.2057', - 'caller': CallerId(code=12668, number='+315080xxxxx', is_public=True), - 'to_number': '+31853xxxxxx', - 'reason': 'no-answer', - }), - )) - - self.assertEqual(expected_events, events) - - def test_timeout(self): - """Test a callgroup with acceptance, nobody picks up. - - +315080xxxxx calls +31613925xxx and does not pick up within the time. - """ - events = self.run_and_get_events('fixtures/acceptance/accept_timeout.json') - - expected_events = self.events_from_tuples(( - ('on_b_dial', { - 'call_id': 'ua0-acc-1507624058.2045', - 'caller': CallerId(code=12668, number='+315080xxxxx', is_public=True), - 'to_number': '+31853xxxxxx', - 'targets': [CallerId(code=0, number='+31613925xxx', is_public=True)], - }), - ('on_hangup', { - 'call_id': 'ua0-acc-1507624058.2045', - 'caller': CallerId(code=12668, number='+315080xxxxx', is_public=True), - 'to_number': '+31853xxxxxx', - 'reason': 'no-answer', - }), - )) - - self.assertEqual(expected_events, events) diff --git a/tests/test_connectab.py b/tests/test_connectab.py deleted file mode 100644 index a18a0b0..0000000 --- a/tests/test_connectab.py +++ /dev/null @@ -1,325 +0,0 @@ -from cacofonisk.callerid import CallerId -from .replaytest import ChannelEventsTestCase - - -class TestConnectab(ChannelEventsTestCase): - - def test_account_world(self): - """ - Click-to-dial call between a phoneaccount and an external number. - - 217 is dialed, - 217 picks up, - +31613925xxx is dialed - +31613925xxx picks up - +31613925xxx hangs up - """ - events = self.run_and_get_events('fixtures/connectab/ctd-account-world.json') - - expected_events = self.events_from_tuples(( - ('on_b_dial', { - 'call_id': 'ua0-acc-1511536963.147', - 'caller': CallerId(code=126680005, number='+31853030900', is_public=True), - 'to_number': '+31613925xxx', - 'targets': [CallerId(code=0, number='+31613925xxx', is_public=True)], - }), - ('on_up', { - 'call_id': 'ua0-acc-1511536963.147', - 'caller': CallerId(code=126680005, number='+31853030900', is_public=True), - 'to_number': '+31613925xxx', - 'callee': CallerId(code=0, number='+31613925xxx', is_public=True), - }), - ('on_hangup', { - 'call_id': 'ua0-acc-1511536963.147', - 'caller': CallerId(code=126680005, number='+31853030900', is_public=True), - 'to_number': '+31613925xxx', - 'reason': 'completed', - }), - )) - - self.assertEqual(expected_events, events) - - def test_account_account(self): - """ - Click-to-dial call between a phoneaccount and an external number. - - 203 is dialed, - 203 picks up, - 202 is dialed - 202 picks up - 203 hangs up - """ - events = self.run_and_get_events('fixtures/connectab/ctd-account-account.json') - - expected_events = self.events_from_tuples(( - ('on_b_dial', { - 'call_id': 'ua1-staging-1511945444.284', - 'caller': CallerId(code=150010003, number='203', is_public=True), - 'to_number': '202', - 'targets': [CallerId(code=150010002, number='202', is_public=True)], - }), - ('on_up', { - 'call_id': 'ua1-staging-1511945444.284', - 'caller': CallerId(code=150010003, number='203', is_public=True), - 'to_number': '202', - 'callee': CallerId(code=150010002, number='202', is_public=True), - }), - ('on_hangup', { - 'call_id': 'ua1-staging-1511945444.284', - 'caller': CallerId(code=150010003, number='203', is_public=True), - 'to_number': '202', - 'reason': 'completed', - }), - )) - - self.assertEqual(expected_events, events) - - def test_account_world_deny_a(self): - """ - Click-to-dial call between a phoneaccount and an external number. - - 203 is dialed, - 203 refuses the call - """ - events = self.run_and_get_events('fixtures/connectab/ctd-account-world-deny_a.json') - - self.assertEqual((), events) - - def test_account_world_fail(self): - """ - Click-to-dial call between a phoneaccount and an external number. - - 203 is dialed, - 203 picks up, and hangs up fast - """ - events = self.run_and_get_events('fixtures/connectab/ctd-account-world-fail2.json') - - self.assertEqual((), events) - - def test_account_world_deny_b(self): - """ - Click-to-dial call between a phoneaccount and an external number. - - 203 is dialed, - 203 picks up - +31613925xxx does not pickup - """ - events = self.run_and_get_events('fixtures/connectab/ctd-account-world-deny_b.json') - - expected_events = self.events_from_tuples(( - ('on_b_dial', { - 'call_id': 'ua1-staging-1512032862.847', - 'caller': CallerId(code=150010003, number='+31150010001', is_public=True), - 'to_number': '+31613925xxx', - 'targets': [CallerId(code=0, name='', number='+31613925xxx', is_public=True)], - }), - ('on_hangup', { - 'call_id': 'ua1-staging-1512032862.847', - 'caller': CallerId(code=150010003, number='+31150010001', is_public=True), - 'to_number': '+31613925xxx', - 'reason': 'no-answer', - }), - )) - - self.assertEqual(expected_events, events) - - def test_ctd_attn_xfer(self): - """ - Click-to-dial with an attended transfer. - - Ensure that the call_id which is used for ConnectAB is consistent with - other functions (like transfers). - """ - events = self.run_and_get_events('fixtures/connectab/ctd-attn-xfer.json') - - expected_events = self.events_from_tuples(( - ('on_b_dial', { - 'call_id': 'ua0-acc-1513778720.1901', - 'caller': CallerId(code=126680005, number='217', is_public=True), - 'to_number': '218', - 'targets': [CallerId(code=126680010, name='', number='218', is_public=True)], - }), - ('on_up', { - 'call_id': 'ua0-acc-1513778720.1901', - 'caller': CallerId(code=126680005, number='217', is_public=True), - 'to_number': '218', - 'callee': CallerId(code=126680010, name='', number='218', is_public=True), - }), - ('on_b_dial', { - 'call_id': 'ua0-acc-1513778732.1912', - 'caller': CallerId(code=126680005, number='+31853030900', is_public=True), - 'to_number': '0612345678', - 'targets': [CallerId(number='+31612345678', is_public=True)], - }), - ('on_up', { - 'call_id': 'ua0-acc-1513778732.1912', - 'caller': CallerId(code=126680005, number='+31853030900', is_public=True), - 'to_number': '0612345678', - 'callee': CallerId(code=126680005, number='+31612345678', is_public=True), - }), - ('on_warm_transfer', { - 'redirector': CallerId(code=126680005, number='+31853030900', is_public=True), - 'caller': CallerId(code=126680005, number='217', is_public=True), - 'callee': CallerId(code=126680005, number='+31612345678', is_public=True), - 'new_id': 'ua0-acc-1513778732.1912', - 'merged_id': 'ua0-acc-1513778720.1901', - }), - ('on_hangup', { - 'call_id': 'ua0-acc-1513778732.1912', - 'caller': CallerId(code=126680005, number='217', is_public=True), - 'to_number': '218', - 'reason': 'completed', - }), - )) - - self.assertEqual(expected_events, events) - - def test_cmn_world_account(self): - """ - Call-me-now call between a mobilephone and an internal number. - - +31613925xxx is dialed, - +31613925xxx picks up, - 203 is dialed - 203 picks up, - +31613925xxx hangs up - """ - events = self.run_and_get_events('fixtures/connectab/cmn-world-account.json') - - expected_events = self.events_from_tuples(( - ('on_b_dial', { - 'call_id': 'ua1-staging-1512038737.882', - 'caller': CallerId(code=15001, number='+31613925xxx', is_public=True), - 'to_number': '203', - 'targets': [CallerId(code=150010003, number='203', is_public=True)], - }), - ('on_up', { - 'call_id': 'ua1-staging-1512038737.882', - 'caller': CallerId(code=15001, number='+31613925xxx', is_public=True), - 'to_number': '203', - 'callee': CallerId(code=150010003, number='203', is_public=True), - }), - ('on_hangup', { - 'call_id': 'ua1-staging-1512038737.882', - 'caller': CallerId(code=15001, number='+31613925xxx', is_public=True), - 'to_number': '203', - 'reason': 'completed', - }), - )) - - self.assertEqual(expected_events, events) - - def test_cmn_world_account_unaccepted(self): - """ - Call-me-now call between a mobilephone and an internal number. - - +31613925xxx is dialed, - +31613925xxx picks up and does not accept. - """ - events = self.run_and_get_events('fixtures/connectab/cmn-world-account-unaccepted.json') - - self.assertEqual((), events) - - def test_cmn_world_world(self): - """ - Call-me-now call between a mobilephone and an internal number. - - +31613925xxx is dialed, - +31613925xxx picks up, - +31150010003 is dialed and starts ua1-staging-1512036277.877, - +31150010003 picks up, - +31150010003 hangs up - """ - events = self.run_and_get_events('fixtures/connectab/cmn-world-world.json') - - expected_events = self.events_from_tuples(( - ('on_b_dial', { - 'call_id': 'ua1-staging-1512036255.866', - 'caller': CallerId(code=15001, number='+31613925xxx', is_public=True), - 'to_number': '+31150010003', - 'targets': [CallerId(code=0, number='+31150010003', is_public=True)], - }), - ('on_b_dial', { - 'call_id': 'ua1-staging-1512036277.877', - 'caller': CallerId(code=15001, number='+31613925xxx', is_public=True), - 'to_number': '+31150010003', - 'targets': [CallerId(code=150010003, number='+31150010003', is_public=True)], - }), - ('on_up', { - 'call_id': 'ua1-staging-1512036277.877', - 'caller': CallerId(code=15001, number='+31613925xxx', is_public=True), - 'to_number': '+31150010003', - 'callee': CallerId(code=150010003, number='+31150010003', is_public=True), - }), - ('on_up', { - 'call_id': 'ua1-staging-1512036255.866', - 'caller': CallerId(code=15001, number='+31613925xxx', is_public=True), - 'to_number': '+31150010003', - 'callee': CallerId(code=0, number='+31150010003', is_public=True), - }), - ('on_hangup', { - 'call_id': 'ua1-staging-1512036277.877', - 'caller': CallerId(code=15001, number='+31613925xxx', is_public=True), - 'to_number': '+31150010003', - 'reason': 'completed', - }), - ('on_hangup', { - 'call_id': 'ua1-staging-1512036255.866', - 'caller': CallerId(code=15001, number='+31613925xxx', is_public=True), - 'to_number': '+31150010003', - 'reason': 'completed', - }), - )) - - self.assertEqual(expected_events, events) - - def test_cmn_self_world(self): - """ - Call-me-now between an external number and a self owned number. - - In here, you'll see two calls: - - The "inbound" call from Call-me-now which goes to the local number. - - The "inbound" call from world-in which is routed to the destination. - """ - events = self.run_and_get_events('fixtures/connectab/cmn-self-world.json') - - expected_event = self.events_from_tuples(( - ('on_b_dial', { - 'call_id': 'ua0-acc-1513786051.1965', - 'caller': CallerId(code=12668, number='+31508009074', is_public=True), - 'targets': [CallerId(number='+31853030903', is_public=True)], - 'to_number': '+31853030903', - }), - ('on_b_dial', { - 'call_id': 'ua0-acc-1513786064.1976', - 'caller': CallerId(code=12668, number='+31508009074', is_public=True), - 'targets': [CallerId(code=126680010, number='+31853030903', is_public=True)], - 'to_number': '+31853030903', - }), - ('on_up', { - 'call_id': 'ua0-acc-1513786064.1976', - 'caller': CallerId(code=12668, number='+31508009074', is_public=True), - 'callee': CallerId(code=126680010, number='+31853030903', is_public=True), - 'to_number': '+31853030903', - }), - ('on_up', { - 'call_id': 'ua0-acc-1513786051.1965', - 'caller': CallerId(code=12668, number='+31508009074', is_public=True), - 'callee': CallerId(number='+31853030903', is_public=True), - 'to_number': '+31853030903', - }), - ('on_hangup', { - 'call_id': 'ua0-acc-1513786051.1965', - 'caller': CallerId(code=12668, number='+31508009074', is_public=True), - 'reason': 'completed', - 'to_number': '+31853030903', - }), - ('on_hangup', { - 'call_id': 'ua0-acc-1513786064.1976', - 'caller': CallerId(code=12668, number='+31508009074', is_public=True), - 'reason': 'completed', - 'to_number': '+31853030903', - }), - )) - - self.assertEqual(expected_event, events) diff --git a/tests/test_fixed.py b/tests/test_fixed.py deleted file mode 100644 index eaa996e..0000000 --- a/tests/test_fixed.py +++ /dev/null @@ -1,93 +0,0 @@ -from cacofonisk.callerid import CallerId -from .replaytest import ChannelEventsTestCase - - -class TestFixed(ChannelEventsTestCase): - - def test_incoming(self): - """Test an incomming call from outside the platform. - - +31853030900 dials +31853030904, dialplan causes 203 to be dialed. - """ - events = self.run_and_get_events('fixtures/fixed/fixed_incomming_success.json') - expected_events = self.events_from_tuples(( - ('on_b_dial', { - 'call_id': '2087873f7e47-1509101015.24', - 'caller': CallerId(code=15001, number='+31853030900', is_public=True), - 'to_number': '+31853030904', - 'targets': [CallerId(code=150010003, number='+31853030904', is_public=True)], - }), - ('on_up', { - 'call_id': '2087873f7e47-1509101015.24', - 'caller': CallerId(code=15001, number='+31853030900', is_public=True), - 'to_number': '+31853030904', - 'callee': CallerId(code=150010003, number='+31853030904', is_public=True), - }), - ('on_hangup', { - 'call_id': '2087873f7e47-1509101015.24', - 'caller': CallerId(code=15001, number='+31853030900', is_public=True), - 'to_number': '+31853030904', - 'reason': 'completed', - }), - )) - - self.assertEqual(expected_events, events) - - def test_outbound(self): - """ - Test a simple outbound call. - """ - events = self.run_and_get_events('fixtures/fixed/fixed_outbound_success.json') - - expected_events = self.events_from_tuples(( - ('on_b_dial', { - 'call_id': 'ua0-acc-1513784375.1916', - 'caller': CallerId(code=126680010, number='+31853030900', is_public=True), - 'targets': [CallerId(number='+31508009000', is_public=True)], - 'to_number': '0508009000', - }), - ('on_up', { - 'call_id': 'ua0-acc-1513784375.1916', - 'caller': CallerId(code=126680010, number='+31853030900', is_public=True), - 'callee': CallerId(number='+31508009000', is_public=True), - 'to_number': '0508009000', - }), - ('on_hangup', { - 'call_id': 'ua0-acc-1513784375.1916', - 'caller': CallerId(code=126680010, number='+31853030900', is_public=True), - 'to_number': '0508009000', - 'reason': 'completed', - }), - )) - - self.assertEqual(expected_events, events) - - def test_fixed(self): - """Test an incomming call with fixed destination. - - +31853030900 dials +31853030904, dialplan dials fixed destiation +31613925xxx. - """ - events = self.run_and_get_events('fixtures/fixed/fixed_both_success.json') - - expected_events = self.events_from_tuples(( - ('on_b_dial', { - 'call_id': '2087873f7e47-1509103867.32', - 'caller': CallerId(code=15001, number='+31853030900', is_public=True), - 'to_number': '+31853030904', - 'targets': [CallerId(code=0, number='+31613925xxx', is_public=True)], - }), - ('on_up', { - 'call_id': '2087873f7e47-1509103867.32', - 'caller': CallerId(code=15001, number='+31853030900', is_public=True), - 'to_number': '+31853030904', - 'callee': CallerId(code=0, number='+31613925xxx', is_public=True), - }), - ('on_hangup', { - 'call_id': '2087873f7e47-1509103867.32', - 'caller': CallerId(code=15001, number='+31853030900', is_public=True), - 'to_number': '+31853030904', - 'reason': 'completed', - }), - )) - - self.assertEqual(expected_events, events) diff --git a/tests/test_mobile.py b/tests/test_mobile.py new file mode 100644 index 0000000..70bf06a --- /dev/null +++ b/tests/test_mobile.py @@ -0,0 +1,179 @@ +from cacofonisk.callerid import CallerId +from cacofonisk.channel import SimpleChannel +from .replaytest import ChannelEventsTestCase + + +class TestMobile(ChannelEventsTestCase): + + def test_simple_mobile(self): + """ + Test a call from external which is routed to another number. + """ + events_file = 'fixtures/mobile/simple_mobile.json' + events = self.run_and_get_events(events_file) + + caller = SimpleChannel( + name='SIP/voipgrid-siproute-docker-00000036', + uniqueid='f29ea68048f6-1530017224.892', + linkedid='f29ea68048f6-1530017224.892', + account_code='15001', + caller_id=CallerId(num='+31150010001'), + cid_calling_pres=None, + connected_line=CallerId(), + exten='+31150010004', + state=6, + ) + + target = SimpleChannel( + name='SIP/voipgrid-siproute-docker-00000037', + uniqueid='f29ea68048f6-1530017224.905', + linkedid='f29ea68048f6-1530017224.892', + account_code='15001', + caller_id=CallerId(num='+31260010001'), + cid_calling_pres='0 (Presentation Allowed, Not Screened)', + connected_line=CallerId(num='+31150010001'), + exten='s', + state=6, + ) + + expected_events = [ + ('on_b_dial', { + 'caller': caller.replace(state=4), + 'targets': [target.replace(state=5)], + }), + ('on_up', { + 'caller': caller, + 'target': target, + }), + ('on_hangup', { + 'caller': caller, + 'reason': 'completed', + }), + ] + + self.assertEqual(expected_events, events) + + def test_acceptance_simple(self): + """ + Test a call routed to another number with call acceptance. + + Call Acceptance is a feature where the called channel first needs to + complete a DTMF challenge in order to verify the call was picked up by + a human (and not voicemail). + """ + events_file = 'fixtures/mobile/acceptance_simple.json' + events = self.run_and_get_events(events_file) + + expected_events = [ + ('on_b_dial', { + 'caller': 'SIP/voipgrid-siproute-docker-00000048', + 'targets': ['SIP/voipgrid-siproute-docker-00000049'], + }), + ('on_up', { + 'caller': 'SIP/voipgrid-siproute-docker-00000048', + 'target': 'SIP/voipgrid-siproute-docker-00000049', + }), + ('on_hangup', { + 'caller': 'SIP/voipgrid-siproute-docker-00000048', + 'reason': 'completed', + }), + ] + + self.assertEqualChannels(expected_events, events) + + def test_acceptance_reject(self): + """ + Test call acceptance where target does not accept call. + """ + events_file = 'fixtures/mobile/acceptance_reject.json' + events = self.run_and_get_events(events_file) + + expected_events = [ + ('on_b_dial', { + 'caller': 'SIP/voipgrid-siproute-docker-00000063', + 'targets': ['SIP/voipgrid-siproute-docker-00000064'], + }), + ('on_hangup', { + 'caller': 'SIP/voipgrid-siproute-docker-00000063', + 'reason': 'no-answer', + }), + ] + + self.assertEqualChannels(expected_events, events) + + def test_acceptance_group_pickup(self): + """ + Test call acceptance to group with call acceptance and timeout. + + In this example, both targets are picked up, but only one can complete + call confirmation. The other target is hung up by Asterisk. + """ + events_file = 'fixtures/mobile/acceptance_group_pickup.json' + events = self.run_and_get_events(events_file) + + expected_events = [ + ('on_b_dial', { + 'caller': 'SIP/voipgrid-siproute-docker-00000069', + 'targets': [ + 'SIP/voipgrid-siproute-docker-0000006a', + 'SIP/voipgrid-siproute-docker-0000006c', + ], + }), + ('on_up', { + 'caller': 'SIP/voipgrid-siproute-docker-00000069', + 'target': 'SIP/voipgrid-siproute-docker-0000006c', + }), + ('on_hangup', { + 'caller': 'SIP/voipgrid-siproute-docker-00000069', + 'reason': 'completed', + }), + ] + + self.assertEqualChannels(expected_events, events) + + def test_acceptance_group_reject(self): + """ + Test call acceptance to a group with call acceptance and reject. + """ + events_file = 'fixtures/mobile/acceptance_group_reject.json' + events = self.run_and_get_events(events_file) + + expected_events = [ + ('on_b_dial', { + 'caller': 'SIP/voipgrid-siproute-docker-00000072', + 'targets': [ + 'SIP/voipgrid-siproute-docker-00000073', + 'SIP/voipgrid-siproute-docker-00000074', + ], + }), + ('on_up', { + 'caller': 'SIP/voipgrid-siproute-docker-00000072', + 'target': 'SIP/voipgrid-siproute-docker-00000073', + }), + ('on_hangup', { + 'caller': 'SIP/voipgrid-siproute-docker-00000072', + 'reason': 'completed', + }), + ] + + self.assertEqualChannels(expected_events, events) + + def test_acceptance_timeout(self): + """ + Test call acceptance to a group with call acceptance and reject. + """ + events_file = 'fixtures/mobile/acceptance_timeout.json' + events = self.run_and_get_events(events_file) + + expected_events = [ + ('on_b_dial', { + 'caller': 'SIP/voipgrid-siproute-docker-0000007b', + 'targets': ['SIP/voipgrid-siproute-docker-0000007c'], + }), + ('on_hangup', { + 'caller': 'SIP/voipgrid-siproute-docker-0000007b', + 'reason': 'no-answer', + }), + ] + + self.assertEqualChannels(expected_events, events) diff --git a/tests/test_originate.py b/tests/test_originate.py new file mode 100644 index 0000000..d80d069 --- /dev/null +++ b/tests/test_originate.py @@ -0,0 +1,258 @@ +from cacofonisk.callerid import CallerId +from cacofonisk.channel import SimpleChannel +from .replaytest import ChannelEventsTestCase + + +class TestOriginate(ChannelEventsTestCase): + + def test_ctd_account_account(self): + """ + Click-to-dial call between a phoneaccount and an internal number. + + In this scenario: + 1. 201 is dialed, + 2. 201 picks up, + 3. 202 is dialed + 4. 202 picks up + 5. 201 hangs up + + Which is reported as: + 1. 201 calls 202 + 2. 202 picks up + 3. 201 hangs up + """ + events = self.run_and_get_events( + 'fixtures/originate/ctd-account-account.json') + + expected_events = [ + ('on_b_dial', { + 'caller': 'SIP/150010001-00000002', + 'targets': ['SIP/150010002-00000003'], + }), + ('on_up', { + 'caller': 'SIP/150010001-00000002', + 'target': 'SIP/150010002-00000003', + }), + ('on_hangup', { + 'caller': 'SIP/150010001-00000002', + 'reason': 'completed', + }), + ] + + self.assertEqualChannels(expected_events, events) + + def test_ctd_account_world(self): + """ + Click-to-dial call between a phoneaccount and an external number. + + In this scenario: + 1. 201 is dialed + 2. 201 picks up + 3. +31260010001 is dialed + 4. +31260010001 picks up + 5. +31260010001 hangs up + + Which is reported as: + 1. 201 dials +31260010001 + 2. +31260010001 picks up + 3. +31260010001 hangs up + """ + events = self.run_and_get_events( + 'fixtures/originate/ctd-account-world.json') + + calling_chan = SimpleChannel( + account_code='15001', + caller_id=CallerId(num='201'), + cid_calling_pres='0 (Presentation Allowed, Not Screened)', + connected_line=CallerId(name='Calling...', num='+31150010001'), + exten='+31260010001', + linkedid='c4061ca6474c-1531990515.302', + name='SIP/150010001-00000008', + state=6, + uniqueid='c4061ca6474c-1531990515.317', + ) + + target_chan = SimpleChannel( + account_code='15001', + caller_id=CallerId(num='+31260010001'), + cid_calling_pres='0 (Presentation Allowed, Not Screened)', + connected_line=CallerId(num='+31150010001'), + exten='s', + linkedid='c4061ca6474c-1531990515.302', + name='SIP/voipgrid-siproute-docker-00000009', + state=6, + uniqueid='c4061ca6474c-1531990517.363', + ) + + expected_events = [ + ('on_b_dial', { + 'caller': calling_chan, + 'targets': [target_chan.replace(state=5)], + }), + ('on_up', { + 'caller': calling_chan, + 'target': target_chan, + }), + ('on_hangup', { + 'caller': calling_chan, + 'reason': 'completed', + }), + ] + + self.assertEqual(expected_events, events) + + def test_ctd_account_world_deny_a(self): + """ + Click-to-dial call between a phoneaccount and an external number. + + In this scenario: + 1. 201 is dialed + 2. 201 refuses the call + + Which is reported as: + 1. Nothing, because 201 never called anyone. + """ + events = self.run_and_get_events( + 'fixtures/originate/ctd-account-world-deny-a.json') + + self.assertEqual([], events) + + def test_ctd_account_world_deny_b(self): + """ + Click-to-dial call between a phoneaccount and an external number. + + In this scenario: + 1. 201 is dialed + 2. 201 picks up + 3. +31260010001 is dialed + 4. +31260010001 rejects the call + + Which is reported as: + 1. 201 dials +31260010001 + 2. +31260010001 hangs up + """ + events = self.run_and_get_events( + 'fixtures/originate/ctd-account-world-deny-b.json') + + expected_events = [ + ('on_b_dial', { + 'caller': 'SIP/150010001-00000011', + 'targets': ['SIP/voipgrid-siproute-docker-00000012'], + }), + ('on_hangup', { + 'caller': 'SIP/150010001-00000011', + 'reason': 'busy', + }), + ] + + self.assertEqualChannels(expected_events, events) + + def test_ctd_attn_xfer_abbcac(self): + """ + Click-to-dial with an attended transfer initiated by B. + """ + events = self.run_and_get_events( + 'fixtures/originate/ctd-account-account-xfer-attn-abbcac.json') + + expected_events = [ + ('on_b_dial', { + 'caller': 'SIP/150010001-0000001d', + 'targets': ['SIP/150010002-0000001e'], + }), + ('on_up', { + 'caller': 'SIP/150010001-0000001d', + 'target': 'SIP/150010002-0000001e', + }), + ('on_b_dial', { + 'caller': 'SIP/150010002-0000001f', + 'targets': ['SIP/150010003-00000020'], + }), + ('on_up', { + 'caller': 'SIP/150010002-0000001f', + 'target': 'SIP/150010003-00000020', + }), + ('on_attended_transfer', { + 'caller': 'SIP/150010001-0000001d', + 'target': 'SIP/150010003-00000020', + 'transferer': 'SIP/150010002-0000001f', + }), + ('on_hangup', { + 'caller': 'SIP/150010001-0000001d', + 'reason': 'completed', + }), + ] + + self.assertEqualChannels(expected_events, events) + + def test_ctd_attn_xfer_abacbc(self): + """ + Click-to-dial with an attended transfer initiated by A. + """ + events = self.run_and_get_events( + 'fixtures/originate/ctd-account-world-xfer-attn-abacbc.json') + + expected_events = [ + ('on_b_dial', { + 'caller': 'SIP/150010001-00000025', + 'targets': ['SIP/voipgrid-siproute-docker-00000026'], + }), + ('on_up', { + 'caller': 'SIP/150010001-00000025', + 'target': 'SIP/voipgrid-siproute-docker-00000026', + }), + ('on_b_dial', { + 'caller': 'SIP/150010001-00000029', + 'targets': ['SIP/150010003-0000002a'], + }), + ('on_up', { + 'caller': 'SIP/150010001-00000029', + 'target': 'SIP/150010003-0000002a', + }), + ('on_attended_transfer', { + 'caller': 'SIP/voipgrid-siproute-docker-00000026', + 'target': 'SIP/150010003-0000002a', + 'transferer': 'SIP/150010001-00000029', + }), + ('on_hangup', { + 'caller': 'SIP/voipgrid-siproute-docker-00000026', + 'reason': 'completed', + }), + ] + + self.assertEqualChannels(expected_events, events) + + def test_cmn_world_world(self): + """ + Call-me-now call between two external numbers. + """ + events = self.run_and_get_events( + 'fixtures/originate/cmn-world-world.json') + + expected_events = [ + ('on_b_dial', { + 'caller': 'SIP/voipgrid-siproute-docker-0000002b', + 'targets': ['SIP/voipgrid-siproute-docker-0000002e'], + }), + ('on_up', { + 'caller': 'SIP/voipgrid-siproute-docker-0000002b', + 'target': 'SIP/voipgrid-siproute-docker-0000002e', + }), + ('on_hangup', { + 'caller': 'SIP/voipgrid-siproute-docker-0000002b', + 'reason': 'completed', + }), + ] + + self.assertEqualChannels(expected_events, events) + + def test_cmn_world_account_unaccepted(self): + """ + Call-me-now call between two external numbers where A does not accept. + + +31260010001 is dialed, + +31260010001 picks up and does not accept. + """ + events = self.run_and_get_events( + 'fixtures/originate/cmn-world-world-unaccepted.json') + + self.assertEqual([], events) diff --git a/tests/test_partial.py b/tests/test_partial.py index 958230e..1b1798d 100644 --- a/tests/test_partial.py +++ b/tests/test_partial.py @@ -1,16 +1,35 @@ import glob +import logging import os -from tests.replaytest import ChannelEventsTestCase, TestReporter, BogoRunner +from tests.replaytest import BogoRunner, ChannelEventsTestCase, TestReporter class TestPartial(ChannelEventsTestCase): + def setUp(self): + """ + Disable log output. + + Disable log output because missing channels/bridges create A LOT of + log output. + """ + logging.disable(logging.WARN) + + def tearDown(self): + """ + Re-enable logging. + """ + logging.disable(logging.NOTSET) + def test_partial_events(self): """ Test cacofonisk doesn't crash if it's attached to running Asterisk. """ - files = glob.glob(os.path.join(os.path.dirname(__file__), 'fixtures', '**', '*.json')) + files = glob.glob(os.path.join( + os.path.dirname(__file__), + 'fixtures', '**', '*.json' + )) for filename in files: events = self.load_events_from_disk(filename) diff --git a/tests/test_queue.py b/tests/test_queue.py index 65ae4ec..c193813 100644 --- a/tests/test_queue.py +++ b/tests/test_queue.py @@ -1,4 +1,5 @@ from cacofonisk.callerid import CallerId +from cacofonisk.channel import SimpleChannel from .replaytest import ChannelEventsTestCase @@ -6,87 +7,100 @@ class TestQueue(ChannelEventsTestCase): def test_queue_simple(self): """ - Test a successful call through a queue. + Test a simple call through a queue to a single account. """ - events = self.run_and_get_events('fixtures/queue/queue_simple.json') - - expected_events = self.events_from_tuples(( + fixture_file = 'fixtures/queue/queue_simple.json' + events = self.run_and_get_events(fixture_file) + + caller = SimpleChannel( + name='SIP/voipgrid-siproute-docker-00000025', + uniqueid='195176c06ab8-1529939196.518', + linkedid='195176c06ab8-1529939196.518', + account_code='15001', + caller_id=CallerId(num='+31150010001'), + cid_calling_pres=None, + connected_line=CallerId(), + exten='+31150010004', + state=6, + ) + + target = SimpleChannel( + name='SIP/150010002-00000026', + uniqueid='195176c06ab8-1529939198.548', + linkedid='195176c06ab8-1529939196.518', + account_code='15001', + caller_id=CallerId(num='+31150010004'), + cid_calling_pres='0 (Presentation Allowed, Not Screened)', + connected_line=CallerId(num='+31150010001'), + exten='s', + state=6, + ) + + expected_events = [ ('on_b_dial', { - 'call_id': 'e83df36bebbe-1507019160.61', - 'caller': CallerId(code=15001, number='+31150010002', is_public=True), - 'to_number': '+31150010004', - 'targets': [CallerId(code=150010001, number='+31150010004', is_public=True)], + 'caller': caller, + 'targets': [target.replace(state=5)], }), ('on_up', { - 'call_id': 'e83df36bebbe-1507019160.61', - 'caller': CallerId(code=15001, number='+31150010002', is_public=True), - 'to_number': '+31150010004', - 'callee': CallerId(code=150010001, number='+31150010004', is_public=True), + 'caller': caller, + 'target': target, }), ('on_hangup', { - 'call_id': 'e83df36bebbe-1507019160.61', - 'caller': CallerId(code=15001, number='+31150010002', is_public=True), - 'to_number': '+31150010004', + 'caller': caller, 'reason': 'completed', }), - )) + ] self.assertEqual(expected_events, events) def test_queue_group(self): """ - Test a call through a queue to a call group with multiple accounts. + Test a simple call through a queue to a group. """ - events = self.run_and_get_events('fixtures/queue/queue_group.json') + fixture_file = 'fixtures/queue/queue_group.json' + events = self.run_and_get_events(fixture_file) - expected_events = self.events_from_tuples(( + expected_events = [ ('on_b_dial', { - 'call_id': 'e83df36bebbe-1507022898.69', - 'caller': CallerId(code=15001, number='+31150010002', is_public=True), - 'to_number': '+31150010004', + 'caller': 'SIP/voipgrid-siproute-docker-0000001b', 'targets': [ - CallerId(code=150010001, number='+31150010004', is_public=True), - CallerId(code=150010003, number='+31150010004', is_public=True), + 'SIP/150010002-0000001d', + 'SIP/150010003-0000001c', ], }), ('on_up', { - 'call_id': 'e83df36bebbe-1507022898.69', - 'caller': CallerId(code=15001, number='+31150010002', is_public=True), - 'to_number': '+31150010004', - 'callee': CallerId(code=150010003, number='+31150010004', is_public=True), + 'caller': 'SIP/voipgrid-siproute-docker-0000001b', + 'target': 'SIP/150010002-0000001d', }), ('on_hangup', { - 'call_id': 'e83df36bebbe-1507022898.69', - 'caller': CallerId(code=15001, number='+31150010002', is_public=True), - 'to_number': '+31150010004', + 'caller': 'SIP/voipgrid-siproute-docker-0000001b', 'reason': 'completed', }), - )) + ] - self.assertEqual(expected_events, events) + self.assertEqualChannels(expected_events, events) - def test_a_cancel_hangup(self): + def test_queue_a_cancel(self): """ Test a call where A exits the queue before B can pick up. """ - events = self.run_and_get_events('fixtures/queue/queue_a_cancel_hangup.json') + events = self.run_and_get_events('fixtures/queue/queue_a_cancel.json') - expected_events = self.events_from_tuples(( + expected_events = [ ('on_b_dial', { - 'call_id': '0f00dcaa884f-1508767736.46', - 'caller': CallerId(code=150010003, name='Tom Kline', number='203', is_public=True), - 'to_number': '401', - 'targets': [CallerId(code=150010001, number='401', is_public=True)], + 'caller': 'SIP/voipgrid-siproute-docker-00000020', + 'targets': [ + 'SIP/150010002-00000022', + 'SIP/150010003-00000021', + ], }), ('on_hangup', { - 'call_id': '0f00dcaa884f-1508767736.46', - 'caller': CallerId(code=150010003, name='Tom Kline', number='203', is_public=True), - 'to_number': '401', - 'reason': 'cancelled' + 'caller': 'SIP/voipgrid-siproute-docker-00000020', + 'reason': 'completed', }), - )) + ] - self.assertEqual(expected_events, events) + self.assertEqualChannels(expected_events, events) def test_queue_attn_xfer(self): """ @@ -94,47 +108,35 @@ def test_queue_attn_xfer(self): """ events = self.run_and_get_events('fixtures/queue/queue_attn_xfer.json') - expected_events = self.events_from_tuples(( + expected_events = [ ('on_b_dial', { - 'call_id': 'e83df36bebbe-1507037906.116', - 'caller': CallerId(code=15001, number='+31150010001', is_public=True), - 'to_number': '+31150010004', - 'targets': [CallerId(code=150010002, number='+31150010004', is_public=True)], + 'caller': 'SIP/voipgrid-siproute-docker-00000087', + 'targets': ['SIP/150010001-00000088'], }), ('on_up', { - 'call_id': 'e83df36bebbe-1507037906.116', - 'caller': CallerId(code=15001, number='+31150010001', is_public=True), - 'to_number': '+31150010004', - 'callee': CallerId(code=150010002, number='+31150010004', is_public=True), + 'caller': 'SIP/voipgrid-siproute-docker-00000087', + 'target': 'SIP/150010001-00000088', }), ('on_b_dial', { - 'call_id': 'e83df36bebbe-1507037917.120', - 'caller': CallerId(code=150010002, number='202', name="Samantha Graham", is_public=True), - 'to_number': '203', - 'targets': [CallerId(code=150010003, number='203', is_public=True)], + 'caller': 'SIP/150010001-00000089', + 'targets': ['SIP/150010002-0000008a'], }), ('on_up', { - 'call_id': 'e83df36bebbe-1507037917.120', - 'caller': CallerId(code=150010002, number='202', name="Samantha Graham", is_public=True), - 'to_number': '203', - 'callee': CallerId(code=150010003, number='203', is_public=True), - }), - ('on_warm_transfer', { - 'new_id': 'e83df36bebbe-1507037917.120', - 'merged_id': 'e83df36bebbe-1507037906.116', - 'caller': CallerId(code=15001, number='+31150010001', is_public=True), - 'callee': CallerId(code=150010003, number='203', is_public=True), - 'redirector': CallerId(code=150010002, number='202', name="Samantha Graham", is_public=True), + 'caller': 'SIP/150010001-00000089', + 'target': 'SIP/150010002-0000008a', + }), + ('on_attended_transfer', { + 'caller': 'SIP/voipgrid-siproute-docker-00000087', + 'target': 'SIP/150010002-0000008a', + 'transferer': 'SIP/150010001-00000089', }), ('on_hangup', { - 'call_id': 'e83df36bebbe-1507037917.120', - 'caller': CallerId(code=15001, number='+31150010001', is_public=True), - 'to_number': '203', + 'caller': 'SIP/voipgrid-siproute-docker-00000087', 'reason': 'completed', }), - )) + ] - self.assertEqual(expected_events, events) + self.assertEqualChannels(expected_events, events) def test_queue_blind_xfer(self): """ @@ -142,45 +144,28 @@ def test_queue_blind_xfer(self): """ events = self.run_and_get_events('fixtures/queue/queue_blind_xfer.json') - expected_events = self.events_from_tuples(( + expected_events = [ ('on_b_dial', { - 'call_id': 'e83df36bebbe-1507042413.128', - 'caller': CallerId(code=15001, number='+31150010001', is_public=True), - 'to_number': '+31150010004', - 'targets': [CallerId(code=150010002, number='+31150010004', is_public=True)], + 'caller': 'SIP/voipgrid-siproute-docker-0000008d', + 'targets': ['SIP/150010001-0000008e'], }), ('on_up', { - 'call_id': 'e83df36bebbe-1507042413.128', - 'caller': CallerId(code=15001, number='+31150010001', is_public=True), - 'to_number': '+31150010004', - 'callee': CallerId(code=150010002, number='+31150010004', is_public=True), + 'caller': 'SIP/voipgrid-siproute-docker-0000008d', + 'target': 'SIP/150010001-0000008e', }), - ('on_b_dial', { - 'call_id': 'e83df36bebbe-1507042415.129', - 'caller': CallerId(code=150010002, number='+31150010004', is_public=True), - 'to_number': '203', - 'targets': [CallerId(code=150010003, number='203', is_public=True)], - }), - ('on_cold_transfer', { - 'new_id': 'e83df36bebbe-1507042413.128', - 'merged_id': 'e83df36bebbe-1507042415.129', - 'caller': CallerId(code=15001, number='+31150010001', is_public=True), - 'targets': [CallerId(code=150010003, number='203', is_public=True)], - 'redirector': CallerId(code=150010002, number='+31150010004', name="", is_public=True), - 'to_number': '203', + ('on_blind_transfer', { + 'caller': 'SIP/voipgrid-siproute-docker-0000008d', + 'targets': ['SIP/150010002-0000008f'], + 'transferer': 'SIP/150010001-0000008e', }), ('on_up', { - 'call_id': 'e83df36bebbe-1507042413.128', - 'caller': CallerId(code=15001, number='+31150010001', is_public=True), - 'to_number': '203', - 'callee': CallerId(code=150010003, number='203', is_public=True), + 'caller': 'SIP/voipgrid-siproute-docker-0000008d', + 'target': 'SIP/150010002-0000008f', }), ('on_hangup', { - 'call_id': 'e83df36bebbe-1507042413.128', - 'caller': CallerId(code=15001, number='+31150010001', is_public=True), - 'to_number': '203', + 'caller': 'SIP/voipgrid-siproute-docker-0000008d', 'reason': 'completed', }), - )) + ] - self.assertEqual(expected_events, events) + self.assertEqualChannels(expected_events, events) diff --git a/tests/test_reporters.py b/tests/test_reporters.py new file mode 100644 index 0000000..0832a5d --- /dev/null +++ b/tests/test_reporters.py @@ -0,0 +1,99 @@ +from unittest import TestCase +from unittest.mock import MagicMock + +from cacofonisk import BaseReporter +from cacofonisk.callerid import CallerId +from cacofonisk.channel import SimpleChannel +from cacofonisk.reporters import MultiReporter + + +class MultiReporterTestCase(TestCase): + + def setUp(self): + self.mock_reporter = MagicMock(spec=BaseReporter) + self.multi_reporter = MultiReporter([self.mock_reporter]) + + self.a_party = SimpleChannel( + name='SIP/voipgrid-siproute-docker-00000036', + uniqueid='f29ea68048f6-1530017224.892', + linkedid='f29ea68048f6-1530017224.892', + account_code='15001', + caller_id=CallerId(num='+31150010001'), + cid_calling_pres=None, + connected_line=CallerId(), + exten='+31150010004', + state=6, + ) + + self.b_party = SimpleChannel( + account_code='150010001', + caller_id=CallerId(name='Andrew Garza', num='201'), + cid_calling_pres='1 (Presentation Allowed, Passed Screen)', + connected_line=CallerId(), + exten='202', + linkedid='195176c06ab8-1529936170.42', + name='SIP/150010001-00000004', + state=6, + uniqueid='195176c06ab8-1529936170.42', + ) + + self.c_party = SimpleChannel( + account_code='150010001', + caller_id=CallerId(num='202'), + cid_calling_pres='0 (Presentation Allowed, Not Screened)', + connected_line=CallerId(name='Andrew Garza', num='201'), + exten='s', + linkedid='195176c06ab8-1529936170.42', + name='SIP/150010002-00000005', + state=6, + uniqueid='195176c06ab8-1529936170.50', + ) + + def test_close(self): + self.multi_reporter.close() + self.mock_reporter.close.assert_called_once_with() + + def test_on_event(self): + event_dict = {'Linkedid': '195176c06ab8-1529936170.42'} + self.multi_reporter.on_event(event_dict) + self.mock_reporter.on_event.assert_called_once_with(event_dict) + + def test_on_user_event(self): + event_dict = {'Linkedid': '195176c06ab8-1529936170.42'} + self.multi_reporter.on_user_event(event_dict) + self.mock_reporter.on_user_event.assert_called_once_with(event_dict) + + def test_on_b_dial(self): + targets = [self.b_party, self.c_party] + + self.multi_reporter.on_b_dial(self.a_party, targets) + self.mock_reporter.on_b_dial.assert_called_once_with( + self.a_party, targets) + + def test_on_up(self): + self.multi_reporter.on_up(self.a_party, self.b_party) + self.mock_reporter.on_up.assert_called_once_with( + self.a_party, self.b_party) + + def test_on_attended_transfer(self): + self.multi_reporter.on_attended_transfer( + self.a_party, self.b_party, self.c_party) + self.mock_reporter.on_attended_transfer.assert_called_once_with( + self.a_party, self.b_party, self.c_party) + + def test_on_blonde_transfer(self): + self.multi_reporter.on_blonde_transfer( + self.a_party, self.b_party, [self.c_party]) + self.mock_reporter.on_blonde_transfer.assert_called_once_with( + self.a_party, self.b_party, [self.c_party]) + + def test_on_blind_transfer(self): + self.multi_reporter.on_blind_transfer( + self.a_party, self.b_party, [self.c_party]) + self.mock_reporter.on_blind_transfer.assert_called_once_with( + self.a_party, self.b_party, [self.c_party]) + + def test_on_hangup(self): + self.multi_reporter.on_hangup(self.a_party, 'busy') + self.mock_reporter.on_hangup.assert_called_once_with( + self.a_party, 'busy') diff --git a/tests/test_simple.py b/tests/test_simple.py index 035f5ee..2fb911e 100644 --- a/tests/test_simple.py +++ b/tests/test_simple.py @@ -1,199 +1,224 @@ from cacofonisk.callerid import CallerId +from cacofonisk.channel import SimpleChannel from .replaytest import ChannelEventsTestCase -class TestSimpleOrig(ChannelEventsTestCase): +class TestSimple(ChannelEventsTestCase): - def test_ab_success(self): - """Test a simple, successful call. - - 202 calls 203, 203 picks up and later the call is disconnected. + def test_ab_success_a_hangup(self): """ - events = self.run_and_get_events('fixtures/simple/ab_success.json') - - expected_events = self.events_from_tuples(( + Test a simple, successful call where A hangs up. + """ + fixture_file = 'fixtures/simple/ab_success_a_hangup.json' + events = self.run_and_get_events(fixture_file) + + calling_chan = SimpleChannel( + account_code='150010001', + caller_id=CallerId(name='Andrew Garza', num='201'), + cid_calling_pres='1 (Presentation Allowed, Passed Screen)', + connected_line=CallerId(), + exten='202', + linkedid='195176c06ab8-1529936170.42', + name='SIP/150010001-00000004', + state=6, + uniqueid='195176c06ab8-1529936170.42', + ) + + target_chan = SimpleChannel( + account_code='150010001', + caller_id=CallerId(num='202'), + cid_calling_pres='0 (Presentation Allowed, Not Screened)', + connected_line=CallerId(name='Andrew Garza', num='201'), + exten='s', + linkedid='195176c06ab8-1529936170.42', + name='SIP/150010002-00000005', + state=6, + uniqueid='195176c06ab8-1529936170.50', + ) + + expected_events = [ ('on_b_dial', { - 'call_id': '63f2f9ce924a-1501851189.231', - 'caller': CallerId(code=150010002, name='Robert Murray', number='202', is_public=True), - 'to_number': '203', - 'targets': [CallerId(code=150010003, number='203', is_public=True)], + 'caller': calling_chan.replace(state=4), + 'targets': [target_chan.replace(state=5)], }), ('on_up', { - 'call_id': '63f2f9ce924a-1501851189.231', - 'caller': CallerId(code=150010002, name='Robert Murray', number='202', is_public=True), - 'to_number': '203', - 'callee': CallerId(code=150010003, number='203', is_public=True), + 'caller': calling_chan, + 'target': target_chan, }), ('on_hangup', { - 'call_id': '63f2f9ce924a-1501851189.231', - 'caller': CallerId(code=150010002, name='Robert Murray', number='202', is_public=True), - 'to_number': '203', + 'caller': calling_chan, 'reason': 'completed', }), - )) + ] self.assertEqual(expected_events, events) - def test_ab_busy(self): - """Test a simple call where B is busy. + def test_ab_success_b_hangup(self): + """ + Test a simple, successful call where B hangs up. """ - events = self.run_and_get_events('fixtures/simple/ab_busy.json') + fixture_file = 'fixtures/simple/ab_success_b_hangup.json' + events = self.run_and_get_events(fixture_file) - expected_events = self.events_from_tuples(( + expected_events = [ ('on_b_dial', { - 'call_id': '63f2f9ce924a-1501851519.239', - 'caller': CallerId(code=150010002, name='Robert Murray', number='202', is_public=True), - 'to_number': '201', - 'targets': [CallerId(code=150010001, number='201', is_public=True)], + 'caller': 'SIP/150010001-00000013', + 'targets': ['SIP/150010002-00000014'], + }), + ('on_up', { + 'caller': 'SIP/150010001-00000013', + 'target': 'SIP/150010002-00000014', }), ('on_hangup', { - 'call_id': '63f2f9ce924a-1501851519.239', - 'caller': CallerId(code=150010002, name='Robert Murray', number='202', is_public=True), - 'to_number': '201', - 'reason': 'busy' + 'caller': 'SIP/150010001-00000013', + 'reason': 'completed', }), - )) + ] - self.assertEqual(expected_events, events) + self.assertEqualChannels(expected_events, events) - def test_ab_success_twoaccounts(self): - """Test a simple, successful call. + def test_ab_success_twoclients(self): + """ + Test a simple, successful call with calls through a proxy. Account 260010001 using +31260010001 as outdialing number, dials - +31150010001 which is connected to account 150010001 with internal number 201 - the call is picked up and completed successfully. + +31150010001 which is connected to account 150010001 with internal + number 201 the call is picked up and completed successfully. """ - events = self.run_and_get_events('fixtures/simple/ab_success_twoclients.json') + fixture_file = 'fixtures/simple/ab_success_twoclients.json' + events = self.run_and_get_events(fixture_file) - expected_events = self.events_from_tuples(( + expected_events = [ + ('on_b_dial', { + 'caller': 'SIP/260010001-00000015', + 'targets': ['SIP/voipgrid-siproute-docker-00000016'], + }), ('on_b_dial', { - 'call_id': '2087873f7e47-1508940720.14', - 'caller': CallerId(code=15001, number='+31260010001', is_public=True), - 'to_number': '+31150010001', - 'targets': [CallerId(code=150010001, number='+31150010001', is_public=True)], + 'caller': 'SIP/voipgrid-siproute-docker-00000017', + 'targets': ['SIP/150010001-00000018'], + }), + ('on_up', { + 'caller': 'SIP/voipgrid-siproute-docker-00000017', + 'target': 'SIP/150010001-00000018', }), ('on_up', { - 'call_id': '2087873f7e47-1508940720.14', - 'caller': CallerId(code=15001, number='+31260010001', is_public=True), - 'to_number': '+31150010001', - 'callee': CallerId(code=150010001, number='+31150010001', is_public=True), + 'caller': 'SIP/260010001-00000015', + 'target': 'SIP/voipgrid-siproute-docker-00000016', }), ('on_hangup', { - 'call_id': '2087873f7e47-1508940720.14', - 'caller': CallerId(code=15001, number='+31260010001', is_public=True), - 'to_number': '+31150010001', + 'caller': 'SIP/voipgrid-siproute-docker-00000017', 'reason': 'completed', }), - )) + ('on_hangup', { + 'caller': 'SIP/260010001-00000015', + 'reason': 'completed', + }), + ] - self.assertEqual(events, expected_events) + self.assertEqualChannels(expected_events, events) - def test_ab_callgroup(self): + def test_ab_reject(self): """ - Test a simple call to a group where one phone is picked up. + Test a simple call where B rejects the call. """ - events = self.run_and_get_events('fixtures/simple/ab_callgroup.json') + fixture_file = 'fixtures/simple/ab_reject.json' + events = self.run_and_get_events(fixture_file) - expected_events = self.events_from_tuples(( + expected_events = [ ('on_b_dial', { - 'call_id': '63f2f9ce924a-1501852169.254', - 'caller': CallerId(code=150010002, name='Robert Murray', number='202', is_public=True), - 'to_number': '401', - 'targets': [ - CallerId(code=150010001, number='401', is_public=True), - CallerId(code=150010003, number='401', is_public=True), - ], - }), - ('on_up', { - 'call_id': '63f2f9ce924a-1501852169.254', - 'caller': CallerId(code=150010002, name='Robert Murray', number='202', is_public=True), - 'to_number': '401', - 'callee': CallerId(code=150010001, number='401', is_public=True), + 'caller': 'SIP/150010001-00000008', + 'targets': ['SIP/150010002-00000009'], }), ('on_hangup', { - 'call_id': '63f2f9ce924a-1501852169.254', - 'caller': CallerId(code=150010002, name='Robert Murray', number='202', is_public=True), - 'to_number': '401', - 'reason': 'completed' + 'caller': 'SIP/150010001-00000008', + 'reason': 'busy', }), - )) + ] - self.assertEqual(expected_events, events) + self.assertEqualChannels(expected_events, events) - def test_ab_callgroup_no_answer(self): + def test_ab_dnd(self): """ - Test a call to a group where no target picks up. + Test a simple call where B is set to Do Not Disturb. """ - events = self.run_and_get_events('fixtures/simple/ab_callgroup_no_answer.json') + fixture_file = 'fixtures/simple/ab_dnd.json' + events = self.run_and_get_events(fixture_file) - expected_events = self.events_from_tuples(( - ('on_b_dial', { - 'call_id': '0f00dcaa884f-1509355567.22', - 'caller': CallerId(code=150010002, name='David Meadows', number='202', is_public=True), - 'to_number': '403', - 'targets': [ - CallerId(code=150010001, number='403', is_public=True), - CallerId(code=150010003, number='403', is_public=True), - ], - }), + expected_events = [ ('on_hangup', { - 'call_id': '0f00dcaa884f-1509355567.22', - 'caller': CallerId(code=150010002, name='David Meadows', number='202', is_public=True), - 'to_number': '403', - 'reason': 'no-answer', + 'caller': 'SIP/150010001-00000006', + 'reason': 'busy', }), - )) + ] - self.assertEqual(expected_events, events) + self.assertEqualChannels(expected_events, events) - def test_a_cancel_hangup(self): + def test_ab_a_cancel_hangup(self): """ Test a call where A hangs up before B can pick up. """ - events = self.run_and_get_events('fixtures/simple/ab_a_cancel_hangup.json') + fixture_file = 'fixtures/simple/ab_a_cancel.json' + events = self.run_and_get_events(fixture_file) - expected_events = self.events_from_tuples(( + expected_events = [ ('on_b_dial', { - 'call_id': '0f00dcaa884f-1508490698.34', - 'caller': CallerId(code=150010002, name='David Meadows', number='202', is_public=True), - 'to_number': '204', - 'targets': [CallerId(code=150010004, number='204', is_public=True)], + 'caller': 'SIP/150010001-00000002', + 'targets': ['SIP/150010002-00000003'], }), ('on_hangup', { - 'call_id': '0f00dcaa884f-1508490698.34', - 'caller': CallerId(code=150010002, name='David Meadows', number='202', is_public=True), - 'to_number': '204', - 'reason': 'cancelled' + 'caller': 'SIP/150010001-00000002', + 'reason': 'cancelled', }), - )) + ] - self.assertEqual(expected_events, events) + self.assertEqualChannels(expected_events, events) - def test_a_success_hangup(self): + def test_ab_callgroup(self): """ - Test a call where A hangs up after being connected to B. + Test a simple call to a group where one phone is picked up. """ - events = self.run_and_get_events('fixtures/simple/ab_a_success_hangup.json') + fixture_file = 'fixtures/simple/ab_callgroup.json' + events = self.run_and_get_events(fixture_file) - expected_events = self.events_from_tuples(( + expected_events = [ ('on_b_dial', { - 'call_id': '0f00dcaa884f-1508490669.30', - 'caller': CallerId(code=150010002, name='David Meadows', number='202', is_public=True), - 'to_number': '204', - 'targets': [CallerId(code=150010004, number='204', is_public=True)], + 'caller': 'SIP/150010001-0000000d', + 'targets': [ + 'SIP/150010002-0000000e', + 'SIP/150010003-0000000f', + ], }), ('on_up', { - 'call_id': '0f00dcaa884f-1508490669.30', - 'caller': CallerId(code=150010002, name='David Meadows', number='202', is_public=True), - 'to_number': '204', - 'callee': CallerId(code=150010004, number='204', is_public=True), + 'caller': 'SIP/150010001-0000000d', + 'target': 'SIP/150010002-0000000e', }), ('on_hangup', { - 'call_id': '0f00dcaa884f-1508490669.30', - 'caller': CallerId(code=150010002, name='David Meadows', number='202', is_public=True), - 'to_number': '204', + 'caller': 'SIP/150010001-0000000d', 'reason': 'completed', }), - )) + ] - self.assertEqual(expected_events, events) + self.assertEqualChannels(expected_events, events) + + def test_ab_callgroup_no_answer(self): + """ + Test a call to a group where no target picks up. + """ + fixture_file = 'fixtures/simple/ab_callgroup_no_answer.json' + events = self.run_and_get_events(fixture_file) + + expected_events = [ + ('on_b_dial', { + 'caller': 'SIP/150010001-00000010', + 'targets': [ + 'SIP/150010002-00000012', + 'SIP/150010003-00000011', + ], + }), + ('on_hangup', { + 'caller': 'SIP/150010001-00000010', + 'reason': 'no-answer', + }), + ] + + self.assertEqualChannels(expected_events, events) diff --git a/tests/test_var_set.py b/tests/test_var_set.py index 13d1a12..8bbea3e 100644 --- a/tests/test_var_set.py +++ b/tests/test_var_set.py @@ -1,4 +1,5 @@ -from .replaytest import ChannelEventsTestCase, TestReporter +from cacofonisk import BaseReporter +from .replaytest import ChannelEventsTestCase class TestVarSet(ChannelEventsTestCase): @@ -11,35 +12,52 @@ def test_user_event(self): dial plan to Cacofonisk (like whether it should send events for a given call). """ - class UserEventReporter(TestReporter): - def on_b_dial(self, call_id, caller, to_number, callee): - pass - - def on_warm_transfer(self, new_id, merged_id, redirector, caller, callee): - pass - - def on_up(self, call_id, caller, to_number, callee): - pass - - def on_hangup(self, call_id, caller, to_number, reason): - pass + class UserEventReporter(BaseReporter): + def __init__(self): + super(UserEventReporter, self).__init__() + self.events = [] def on_user_event(self, event): - self.events.append({key: event[key] for key in ['UserEvent', 'Provider', 'AccountCode']}) - - events = self.run_and_get_events('fixtures/var_set/user_events.json', UserEventReporter()) + desired = ('UserEvent', 'Provider', 'AccountCode', + 'WebhookUrls', 'Direction', 'ClientId', + 'AccountInternalNumber', 'UserInternalNumbers') + event = {key: event[key] for key in desired if key in event} + self.events.append(event) + + events = self.run_and_get_events( + 'fixtures/var_set/user_events.json', + UserEventReporter() + ) - expected_events = ( + expected_events = [ { - 'Provider': 'cloudcti', + 'AccountCode': '260010001', + 'AccountInternalNumber': '201', + 'ClientId': '26001', + 'Direction': 'outbound', + 'Provider': 'webhook', + 'UserEvent': 'NotifyCallstate', + 'WebhookUrls': '', + }, + { + 'AccountCode': '15001', + 'ClientId': '15001', + 'Direction': 'inbound', 'UserEvent': 'NotifyCallstate', - 'AccountCode': '150010003', + 'WebhookUrls': 'http://example.com/foo/bar', }, { + 'AccountCode': '150010001', 'Provider': 'cloudcti', 'UserEvent': 'NotifyCallstate', - 'AccountCode': '150010001' - } - ) + }, + { + 'AccountCode': '150010001', + 'AccountInternalNumber': '201', + 'Provider': 'webhook', + 'UserEvent': 'NotifyCallstate', + 'UserInternalNumbers': '601', + }, + ] self.assertEqual(expected_events, events) diff --git a/tests/test_xfer_attended.py b/tests/test_xfer_attended.py index 52e6ce9..d065c8e 100644 --- a/tests/test_xfer_attended.py +++ b/tests/test_xfer_attended.py @@ -1,11 +1,12 @@ from cacofonisk.callerid import CallerId +from cacofonisk.channel import SimpleChannel from .replaytest import ChannelEventsTestCase -class TestAttnXferOrig(ChannelEventsTestCase): +class TestAttnXfer(ChannelEventsTestCase): def test_xfer_abacbc(self): """ - Test an ABACBC attended transfer. + Test attended transfer where A transfers B to C. First of all, we need to get notifications that calls are being made: @@ -16,59 +17,88 @@ def test_xfer_abacbc(self): happened: - 201 joins the other channels (202 <--> 203) """ - events = self.run_and_get_events('fixtures/xfer_attended/xfer_abacbc.json') - - expected_events = self.events_from_tuples(( - # 201 calls 202 + events_file = 'fixtures/xfer_attended/xfer_abacbc.json' + events = self.run_and_get_events(events_file) + + a_chan = SimpleChannel( + name='SIP/150010001-00000028', + uniqueid='195176c06ab8-1529941216.590', + linkedid='195176c06ab8-1529941216.590', + account_code='150010001', + caller_id=CallerId(name='Andrew Garza', num='201'), + cid_calling_pres='1 (Presentation Allowed, Passed Screen)', + connected_line=CallerId(), + exten='202', + state=6, + ) + + a_chan_3pcc = a_chan.replace( + name='SIP/150010001-0000002a', + uniqueid='195176c06ab8-1529941225.617', + linkedid='195176c06ab8-1529941225.617', + exten='203', + ) + + b_chan = SimpleChannel( + name='SIP/150010002-00000029', + uniqueid='195176c06ab8-1529941216.598', + linkedid='195176c06ab8-1529941216.590', + account_code='150010001', + caller_id=CallerId(num='202'), + cid_calling_pres='0 (Presentation Allowed, Not Screened)', + connected_line=CallerId(name='Andrew Garza', num='201'), + exten='s', + state=6, + ) + + b_chan_transferred = b_chan.replace(exten='202') + + c_chan = SimpleChannel( + name='SIP/150010003-0000002b', + uniqueid='195176c06ab8-1529941225.625', + linkedid='195176c06ab8-1529941225.617', + account_code='150010001', + caller_id=CallerId(num='203'), + cid_calling_pres='0 (Presentation Allowed, Not Screened)', + connected_line=CallerId(name='Andrew Garza', num='201'), + exten='s', + state=6, + ) + + expected_events = [ ('on_b_dial', { - 'call_id': 'vgua0-dev-1442387090.552', - 'caller': CallerId(code=126680001, number='201', is_public=True), - 'to_number': '202', - 'targets': [CallerId(code=126680002, number='202', is_public=True)], + 'caller': a_chan.replace(state=4), + 'targets': [b_chan.replace(state=5)], }), ('on_up', { - 'call_id': 'vgua0-dev-1442387090.552', - 'caller': CallerId(code=126680001, number='201', is_public=True), - 'to_number': '202', - 'callee': CallerId(code=126680002, number='202', is_public=True), + 'caller': a_chan, + 'target': b_chan, }), - - # 201 calls 203 ('on_b_dial', { - 'call_id': 'vgua0-dev-1442387091.556', - 'caller': CallerId(code=126680001, number='201', is_public=True), - 'to_number': '203', - 'targets': [CallerId(code=126680003, number='203', is_public=True)], + 'caller': a_chan_3pcc.replace(state=4), + 'targets': [c_chan.replace(state=5)], }), ('on_up', { - 'call_id': 'vgua0-dev-1442387091.556', - 'caller': CallerId(code=126680001, number='201', is_public=True), - 'to_number': '203', - 'callee': CallerId(code=126680003, number='203', is_public=True), + 'caller': a_chan_3pcc, + 'target': c_chan, }), - - # 201 transfers 202 <-> 203 - ('on_warm_transfer', { - 'redirector': CallerId(code=126680001, number='201', is_public=True), - 'caller': CallerId(code=126680002, number='202', is_public=True), - 'callee': CallerId(code=126680003, number='203', is_public=True), - 'new_id': 'vgua0-dev-1442387091.556', - 'merged_id': 'vgua0-dev-1442387090.552', + ('on_attended_transfer', { + 'caller': b_chan_transferred, + 'target': c_chan, + 'transferer': a_chan_3pcc, }), - - # 202 and 203 are done ('on_hangup', { - 'call_id': 'vgua0-dev-1442387091.556', - 'caller': CallerId(code=126680002, number='202', is_public=True), - 'to_number': '203', + 'caller': b_chan_transferred, 'reason': 'completed', - }) - )) + }), + ] self.assertEqual(expected_events, events) def test_xfer_abbcac(self): """ + Test attended transfer where B transfers A to C. + First of all, we need to get notifications that calls are being made: - +31501234567 calls 201 (126680001) @@ -78,101 +108,121 @@ def test_xfer_abbcac(self): happened: - 201 joins the other channels (+31501234567 <--> 202) """ - events = self.run_and_get_events('fixtures/xfer_attended/xfer_abbcac.json') + events_file = 'fixtures/xfer_attended/xfer_abbcac.json' + events = self.run_and_get_events(events_file) - expected_events = self.events_from_tuples(( - # +31501234567 calls 201 + expected_events = [ ('on_b_dial', { - 'call_id': 'vgua0-dev-1442387041.544', - 'caller': CallerId(code=12668, name='Foo bar', number='+31501234567', is_public=True), - 'to_number': '+31508009000', - 'targets': [CallerId(code=126680001, number='+31508009000', is_public=True)], + 'caller': 'SIP/150010001-0000002c', + 'targets': ['SIP/150010002-0000002d'], }), ('on_up', { - 'call_id': 'vgua0-dev-1442387041.544', - 'caller': CallerId(code=12668, name='Foo bar', number='+31501234567', is_public=True), - 'to_number': '+31508009000', - 'callee': CallerId(code=126680001, number='+31508009000', is_public=True), + 'caller': 'SIP/150010001-0000002c', + 'target': 'SIP/150010002-0000002d', }), - - # 201 calls 202 ('on_b_dial', { - 'call_id': 'vgua0-dev-1442387044.548', - 'caller': CallerId(code=126680001, number='201', is_public=True), - 'to_number': '202', - 'targets': [CallerId(code=126680002, number='202', is_public=True)], + 'caller': 'SIP/150010002-0000002e', + 'targets': ['SIP/150010003-0000002f'], }), ('on_up', { - 'call_id': 'vgua0-dev-1442387044.548', - 'caller': CallerId(code=126680001, number='201', is_public=True), - 'to_number': '202', - 'callee': CallerId(code=126680002, number='202', is_public=True), + 'caller': 'SIP/150010002-0000002e', + 'target': 'SIP/150010003-0000002f', }), - - # 201 transfers +31501234567 <-> 202 - ('on_warm_transfer', { - 'redirector': CallerId(code=126680001, number='201', is_public=True), - 'caller': CallerId(code=12668, name='Foo bar', number='+31501234567', is_public=True), - 'callee': CallerId(code=126680002, number='202', is_public=True), - 'new_id': 'vgua0-dev-1442387044.548', - 'merged_id': 'vgua0-dev-1442387041.544', + ('on_attended_transfer', { + 'caller': 'SIP/150010001-0000002c', + 'target': 'SIP/150010003-0000002f', + 'transferer': 'SIP/150010002-0000002e', }), - - # +31501234567 and 202 are done ('on_hangup', { - 'call_id': 'vgua0-dev-1442387044.548', - 'caller': CallerId(code=12668, name='Foo bar', number='+31501234567', is_public=True), - 'to_number': '202', + 'caller': 'SIP/150010001-0000002c', 'reason': 'completed', }), - )) + ] - self.assertEqual(expected_events, events) + self.assertEqualChannels(expected_events, events) def test_xfer_abbcac_anonymous(self): """ Test that an attended transfer where the caller is anonymous works. """ - events = self.run_and_get_events('fixtures/xfer_attended/xfer_abbcac_anonymous.json') + events_file = 'fixtures/xfer_attended/xfer_abbcac_anon.json' + events = self.run_and_get_events(events_file) - expected_events = self.events_from_tuples(( + expected_events = [ ('on_b_dial', { - 'call_id': 'vgua0-dev-1444635717.1178', - 'caller': CallerId(code=12668, name='Foo bar', number='+31501xxxxxx', is_public=False), - 'to_number': '+31507654321', - 'targets': [CallerId(code=126680001, number='+31507654321', is_public=True)], + 'caller': 'SIP/voipgrid-siproute-docker-00000027', + 'targets': ['SIP/150010001-00000028'], }), ('on_up', { - 'call_id': 'vgua0-dev-1444635717.1178', - 'caller': CallerId(code=12668, name='Foo bar', number='+31501xxxxxx', is_public=False), - 'to_number': '+31507654321', - 'callee': CallerId(code=126680001, number='+31507654321', is_public=True), + 'caller': 'SIP/voipgrid-siproute-docker-00000027', + 'target': 'SIP/150010001-00000028', }), ('on_b_dial', { - 'call_id': 'vgua0-dev-1444635718.1182', - 'caller': CallerId(code=126680001, number='201', is_public=True), - 'to_number': '202', - 'targets': [CallerId(code=126680002, number='202', is_public=True)], + 'caller': 'SIP/150010001-00000029', + 'targets': ['SIP/150010003-0000002a'], }), ('on_up', { - 'call_id': 'vgua0-dev-1444635718.1182', - 'caller': CallerId(code=126680001, number='201', is_public=True), - 'to_number': '202', - 'callee': CallerId(code=126680002, number='202', is_public=True), - }), - ('on_warm_transfer', { - 'redirector': CallerId(code=126680001, number='201', is_public=True), - 'caller': CallerId(code=12668, name='Foo bar', number='+31501xxxxxx', is_public=False), - 'callee': CallerId(code=126680002, number='202', is_public=True), - 'new_id': 'vgua0-dev-1444635718.1182', - 'merged_id': 'vgua0-dev-1444635717.1178', + 'caller': 'SIP/150010001-00000029', + 'target': 'SIP/150010003-0000002a', + }), + ('on_attended_transfer', { + 'caller': 'SIP/voipgrid-siproute-docker-00000027', + 'target': 'SIP/150010003-0000002a', + 'transferer': 'SIP/150010001-00000029', }), ('on_hangup', { - 'call_id': 'vgua0-dev-1444635718.1182', - 'caller': CallerId(code=12668, name='Foo bar', number='+31501xxxxxx', is_public=False), - 'to_number': '202', + 'caller': 'SIP/voipgrid-siproute-docker-00000027', 'reason': 'completed', }), - )) + ] - self.assertEqual(expected_events, events) + self.assertEqualChannels(expected_events, events) + + # Check the privacy flag was set correctly before and after the + # transfer. + self.assertEqual( + '33 (Presentation Prohibited, Passed Screen)', + events[0][1]['caller'].cid_calling_pres, + ) + + self.assertEqual( + '33 (Presentation Prohibited, Passed Screen)', + events[4][1]['caller'].cid_calling_pres, + ) + + def test_xfer_abcbac(self): + """ + Test attn transfer where A and C call B, and B transfers them together. + """ + events_file = 'fixtures/xfer_attended/xfer_abcbac.json' + events = self.run_and_get_events(events_file) + + expected_events = [ + ('on_b_dial', { + 'caller': 'SIP/150010002-0000003c', + 'targets': ['SIP/150010001-0000003d'], + }), + ('on_up', { + 'caller': 'SIP/150010002-0000003c', + 'target': 'SIP/150010001-0000003d', + }), + ('on_b_dial', { + 'caller': 'SIP/150010003-0000003e', + 'targets': ['SIP/150010001-0000003f'], + }), + ('on_up', { + 'caller': 'SIP/150010003-0000003e', + 'target': 'SIP/150010001-0000003f', + }), + ('on_attended_transfer', { + 'caller': 'SIP/150010003-0000003e', + 'target': 'SIP/150010002-0000003c', + 'transferer': 'SIP/150010001-0000003d', + }), + ('on_hangup', { + 'caller': 'SIP/150010003-0000003e', + 'reason': 'completed', + }), + ] + + self.assertEqualChannels(expected_events, events) diff --git a/tests/test_xfer_blind.py b/tests/test_xfer_blind.py index 6d1e2a8..f32a545 100644 --- a/tests/test_xfer_blind.py +++ b/tests/test_xfer_blind.py @@ -1,367 +1,250 @@ from cacofonisk.callerid import CallerId +from cacofonisk.channel import SimpleChannel from .replaytest import ChannelEventsTestCase -class TestBlindXferOrig(ChannelEventsTestCase): +class TestBlindXfer(ChannelEventsTestCase): def test_xfer_blind_abbcac(self): - """Test a blind transfer where B initiates the transfer. """ - events = self.run_and_get_events('fixtures/xfer_blind/xfer_blind_abbcac.json') - - expected_events = self.events_from_tuples(( - # 203 calls 202 + Test a blind transfer where B initiates the transfer. + """ + events_file = 'fixtures/xfer_blind/xfer_blind_abbcac.json' + events = self.run_and_get_events(events_file) + + a_chan = SimpleChannel( + name='SIP/150010001-00000003', + uniqueid='07b796be1962-1529998959.65', + linkedid='07b796be1962-1529998959.65', + account_code='150010001', + caller_id=CallerId(name='Andrew Garza', num='201'), + cid_calling_pres='1 (Presentation Allowed, Passed Screen)', + connected_line=CallerId(), + exten='202', + state=6, + ) + + a_chan_transferred = a_chan.replace( + account_code='150010002', + caller_id=a_chan.caller_id.replace(name=''), + ) + + b_chan = SimpleChannel( + name='SIP/150010002-00000004', + uniqueid='07b796be1962-1529998959.73', + linkedid='07b796be1962-1529998959.65', + account_code='150010001', + caller_id=CallerId(num='202'), + cid_calling_pres='0 (Presentation Allowed, Not Screened)', + connected_line=CallerId(name='Andrew Garza', num='201'), + exten='s', + state=6, + ) + + c_chan = SimpleChannel( + name='SIP/150010003-00000005', + uniqueid='07b796be1962-1529998966.104', + linkedid='07b796be1962-1529998959.65', + account_code='150010001', + caller_id=CallerId(num='203'), + cid_calling_pres='0 (Presentation Allowed, Not Screened)', + connected_line=CallerId(num='201'), + exten='s', + state=6, + ) + + expected_events = [ ('on_b_dial', { - 'call_id': '63f2f9ce924a-1501834121.34', - 'caller': CallerId(code=150010003, name='Julia Rhodes', number='203', is_public=True), - 'to_number': '202', - 'targets': [CallerId(code=150010002, number='202', is_public=True)], + 'caller': a_chan.replace(state=4), + 'targets': [b_chan.replace(state=5)], }), - # 202 picks up ('on_up', { - 'call_id': '63f2f9ce924a-1501834121.34', - 'caller': CallerId(code=150010003, name='Julia Rhodes', number='203', is_public=True), - 'to_number': '202', - 'callee': CallerId(code=150010002, number='202', is_public=True), - }), - # 202 dials 201... - ('on_b_dial', { - 'call_id': '63f2f9ce924a-1501834121.35', - 'caller': CallerId(code=150010002, number='202', is_public=True), - 'to_number': '201', - 'targets': [CallerId(code=150010001, number='201', is_public=True)], + 'caller': a_chan, + 'target': b_chan, }), - # ... and immediately transfers 203 to 201 - ('on_cold_transfer', { - 'redirector': CallerId(code=150010002, number='202', is_public=True), - 'caller': CallerId(code=150010003, number='203', is_public=True), - 'targets': [CallerId(code=150010001, number='201', is_public=True)], - 'new_id': '63f2f9ce924a-1501834121.34', - 'merged_id': '63f2f9ce924a-1501834121.35', - 'to_number': '201', + ('on_blind_transfer', { + 'caller': a_chan_transferred, + 'targets': [c_chan.replace(state=5)], + 'transferer': b_chan.replace(exten='203'), }), - # 201 picks up to talk to 203 ('on_up', { - 'call_id': '63f2f9ce924a-1501834121.34', - 'caller': CallerId(code=150010003, number='203', is_public=True), - 'to_number': '201', - 'callee': CallerId(code=150010001, number='201', is_public=True), + 'caller': a_chan_transferred, + 'target': c_chan, }), - # 203 and 201 are done ('on_hangup', { - 'call_id': '63f2f9ce924a-1501834121.34', - 'caller': CallerId(code=150010003, number='203', is_public=True), - 'to_number': '201', + 'caller': a_chan_transferred, 'reason': 'completed', }), - )) + ] self.assertEqual(expected_events, events) def test_xfer_blind_abacbc(self): - """Test a blind transfer where A initiates the transfer. """ - events = self.run_and_get_events('fixtures/xfer_blind/xfer_blind_abacbc.json') - - expected_events = self.events_from_tuples(( - # 202 calls 203 - ('on_b_dial', { - 'call_id': '63f2f9ce924a-1501834972.41', - 'caller': CallerId(code=150010002, name='Robert Murray', number='202', is_public=True), - 'to_number': '203', - 'targets': [CallerId(code=150010003, number='203', is_public=True)], - }), - # 203 picks up - ('on_up', { - 'call_id': '63f2f9ce924a-1501834972.41', - 'caller': CallerId(code=150010002, name='Robert Murray', number='202', is_public=True), - 'to_number': '203', - 'callee': CallerId(code=150010003, number='203', is_public=True), - }), - # 202 dials 201... - # (CLI for 150010002 is how it was reached externally, - # that's okay.) - ('on_b_dial', { - 'call_id': '63f2f9ce924a-1501834980.45', - 'caller': CallerId(code=150010002, name='Robert Murray', number='202', is_public=True), - 'to_number': '201', - 'targets': [CallerId(code=150010001, name='Robert Murray', number='201', is_public=True)], - }), - # ... and immediately transfers 203 to 201 - ('on_cold_transfer', { - 'redirector': CallerId(code=150010002, name='Robert Murray', number='202', is_public=True), - 'caller': CallerId(code=150010003, number='203', is_public=True), - 'targets': [CallerId(code=150010001, name='Robert Murray', number='201', is_public=True)], - 'new_id': '63f2f9ce924a-1501834980.45', - 'merged_id': '63f2f9ce924a-1501834972.41', - 'to_number': '201', - }), - # 201 picks up to talk to 203 - ('on_up', { - 'call_id': '63f2f9ce924a-1501834980.45', - 'caller': CallerId(code=150010003, number='203', is_public=True), - 'to_number': '201', - 'callee': CallerId(code=150010001, name='Robert Murray', number='201', is_public=True), - }), - # 203 and 201 are done - ('on_hangup', { - 'call_id': '63f2f9ce924a-1501834980.45', - 'caller': CallerId(code=150010003, number='203', is_public=True), - 'to_number': '201', - 'reason': 'completed', - }), - )) - - self.assertEqual(expected_events, events) - - def test_xfer_blind_complex(self): - """Test a complex blind transfer. - - Test a blind transfer with call groups where B initiates the transfer. + Test a blind transfer where A initiates the transfer. """ - events = self.run_and_get_events('fixtures/xfer_blind/xfer_blind.json') + events_file = 'fixtures/xfer_blind/xfer_blind_abacbc.json' + events = self.run_and_get_events(events_file) - expected_events = self.events_from_tuples(( - # +31501234567 calls 202/205, 202 picks up, blind xfer to 205 - # => 202 + expected_events = [ ('on_b_dial', { - 'call_id': 'vgua0-dev-1443449049.124', - 'caller': CallerId(code=12668, number='+31501234567', is_public=True), - 'to_number': '+31507001918', - 'targets': [ - CallerId(code=126680002, number='+31507001918', is_public=True), - CallerId(code=126680005, number='+31507001918', is_public=True), - ], + 'caller': 'SIP/150010001-00000006', + 'targets': ['SIP/150010002-00000007'], }), - - # => 202 picks up ('on_up', { - 'call_id': 'vgua0-dev-1443449049.124', - 'caller': CallerId(code=12668, number='+31501234567', is_public=True), - 'to_number': '+31507001918', - 'callee': CallerId(code=126680002, number='+31507001918', is_public=True), + 'caller': 'SIP/150010001-00000006', + 'target': 'SIP/150010002-00000007', }), - - # (CLI for 126680002 is how it was reached externally, - # that's okay.) - ('on_b_dial', { - 'call_id': 'vgua0-dev-1443449049.125', - 'caller': CallerId(code=126680002, number='+31507001918', is_public=True), - 'to_number': '205', - 'targets': [CallerId(code=126680005, number='205', is_public=True)], + ('on_blind_transfer', { + 'caller': 'SIP/150010002-00000007', + 'targets': ['SIP/150010003-00000008'], + 'transferer': 'SIP/150010001-00000006', }), - - # Blind xfer. - # (CLI for 126680002 is how it was reached externally, - # that's okay.) - ('on_cold_transfer', { - 'redirector': CallerId(code=126680002, number='+31507001918', is_public=True), - 'caller': CallerId(code=12668, number='+31501234567', is_public=True), - 'targets': [CallerId(code=126680005, number='205', is_public=True)], - 'new_id': 'vgua0-dev-1443449049.124', - 'merged_id': 'vgua0-dev-1443449049.125', - 'to_number': '205', - }), - ('on_up', { - 'call_id': 'vgua0-dev-1443449049.124', - 'caller': CallerId(code=12668, number='+31501234567', is_public=True), - 'to_number': '205', - 'callee': CallerId(code=126680005, number='205', is_public=True), + 'caller': 'SIP/150010002-00000007', + 'target': 'SIP/150010003-00000008', }), - ('on_hangup', { - 'call_id': 'vgua0-dev-1443449049.124', - 'caller': CallerId(code=12668, number='+31501234567', is_public=True), - 'to_number': '205', + 'caller': 'SIP/150010002-00000007', 'reason': 'completed', }), - )) + ] - self.assertEqual(expected_events, events) + self.assertEqualChannels(expected_events, events) def test_xfer_blind_a_no_answer(self): """ Test a blind transfer from A where the transfer target is down. """ - events = self.run_and_get_events('fixtures/xfer_blind/xfer_blind_a_no_answer.json') + events_file = 'fixtures/xfer_blind/xfer_blind_a_no_answer.json' + events = self.run_and_get_events(events_file) - expected_events = self.events_from_tuples(( + expected_events = [ ('on_b_dial', { - 'call_id': '0f00dcaa884f-1509114500.0', - 'caller': CallerId(code=150010002, name='David Meadows', number='202', is_public=True), - 'to_number': '204', - 'targets': [CallerId(code=150010004, number='204', is_public=True)], + 'caller': 'SIP/150010001-00000012', + 'targets': ['SIP/150010002-00000013'], }), ('on_up', { - 'call_id': '0f00dcaa884f-1509114500.0', - 'caller': CallerId(code=150010002, name='David Meadows', number='202', is_public=True), - 'to_number': '204', - 'callee': CallerId(code=150010004, number='204', is_public=True), + 'caller': 'SIP/150010001-00000012', + 'target': 'SIP/150010002-00000013', }), ('on_hangup', { - 'call_id': '0f00dcaa884f-1509114500.0', - # TODO: The name is missing on the caller. Weird, no disaster. - 'caller': CallerId(code=150010002, number='202', is_public=True), - 'to_number': '204', + 'caller': 'SIP/150010001-00000012', 'reason': 'completed', }), - )) + ] - self.assertEqual(expected_events, events) + self.assertEqualChannels(expected_events, events) def test_xfer_blind_b_no_answer(self): """ Test a blind transfer from B where the transfer target is down. """ - events = self.run_and_get_events('fixtures/xfer_blind/xfer_blind_b_no_answer.json') + events_file = 'fixtures/xfer_blind/xfer_blind_b_no_answer.json' + events = self.run_and_get_events(events_file) - expected_events = self.events_from_tuples(( + expected_events = [ ('on_b_dial', { - 'call_id': '0f00dcaa884f-1509115795.11', - 'caller': CallerId(code=150010002, name='David Meadows', number='202', is_public=True), - 'to_number': '204', - 'targets': [CallerId(code=150010004, number='204', is_public=True)], + 'caller': 'SIP/150010001-00000015', + 'targets': ['SIP/150010002-00000016'], }), ('on_up', { - 'call_id': '0f00dcaa884f-1509115795.11', - 'caller': CallerId(code=150010002, name='David Meadows', number='202', is_public=True), - 'to_number': '204', - 'callee': CallerId(code=150010004, number='204', is_public=True), + 'caller': 'SIP/150010001-00000015', + 'target': 'SIP/150010002-00000016', }), ('on_hangup', { - 'call_id': '0f00dcaa884f-1509115795.11', - 'caller': CallerId(code=150010002, name='David Meadows', number='202', is_public=True), - 'to_number': '204', + 'caller': 'SIP/150010001-00000015', 'reason': 'completed', }), - )) + ] - self.assertEqual(expected_events, events) + self.assertEqualChannels(expected_events, events) def test_xfer_blind_reject(self): """ Test a blind transfer from where the target rejects the transfer. """ - events = self.run_and_get_events('fixtures/xfer_blind/xfer_blind_reject.json') + events_file = 'fixtures/xfer_blind/xfer_blind_reject.json' + events = self.run_and_get_events(events_file) - expected_events = self.events_from_tuples(( + expected_events = [ ('on_b_dial', { - 'call_id': '0f00dcaa884f-1509116084.19', - 'caller': CallerId(code=150010002, name='David Meadows', number='202', is_public=True), - 'to_number': '204', - 'targets': [CallerId(code=150010004, number='204', is_public=True)], + 'caller': 'SIP/150010001-00000018', + 'targets': ['SIP/150010002-00000019'], }), ('on_up', { - 'call_id': '0f00dcaa884f-1509116084.19', - 'caller': CallerId(code=150010002, name='David Meadows', number='202', is_public=True), - 'to_number': '204', - 'callee': CallerId(code=150010004, number='204', is_public=True), - }), - ('on_b_dial', { - 'call_id': '0f00dcaa884f-1509116084.20', - 'caller': CallerId(code=150010004, number='204', is_public=True), - 'to_number': '203', - 'targets': [CallerId(code=150010003, number='203', is_public=True)], + 'caller': 'SIP/150010001-00000018', + 'target': 'SIP/150010002-00000019', }), - ('on_cold_transfer', { - 'redirector': CallerId(code=150010004, number='204', is_public=True), - 'caller': CallerId(code=150010002, number='202', is_public=True), - 'targets': [CallerId(code=150010003, number='203', is_public=True)], - 'new_id': '0f00dcaa884f-1509116084.19', - 'merged_id': '0f00dcaa884f-1509116084.20', - 'to_number': '203', + ('on_blind_transfer', { + 'caller': 'SIP/150010001-00000018', + 'targets': ['SIP/150010003-0000001a'], + 'transferer': 'SIP/150010002-00000019', }), ('on_hangup', { - 'call_id': '0f00dcaa884f-1509116084.19', - 'caller': CallerId(code=150010002, number='202', is_public=True), - 'to_number': '203', + 'caller': 'SIP/150010001-00000018', 'reason': 'no-answer', }), - )) + ] - self.assertEqual(expected_events, events) + self.assertEqualChannels(expected_events, events) def test_xfer_blind_group(self): """ Test a blind transfer where the call is transferred to a group. """ - events = self.run_and_get_events('fixtures/xfer_blind/xfer_blind_group.json') + events_file = 'fixtures/xfer_blind/xfer_blind_group.json' + events = self.run_and_get_events(events_file) - expected_events = self.events_from_tuples(( + expected_events = [ ('on_b_dial', { - 'call_id': '0f00dcaa884f-1509117819.36', - 'caller': CallerId(code=150010002, name='David Meadows', number='202', is_public=True), - 'to_number': '204', - 'targets': [CallerId(code=150010004, number='204', is_public=True)], + 'caller': 'SIP/voipgrid-siproute-docker-00000017', + 'targets': ['SIP/150010001-00000018'], }), ('on_up', { - 'call_id': '0f00dcaa884f-1509117819.36', - 'caller': CallerId(code=150010002, name='David Meadows', number='202', is_public=True), - 'to_number': '204', - 'callee': CallerId(code=150010004, number='204', is_public=True), - }), - ('on_b_dial', { - 'call_id': '0f00dcaa884f-1509117819.37', - 'caller': CallerId(code=150010004, number='204', is_public=True), - 'to_number': '403', - 'targets': [ - CallerId(code=150010001, number='403', is_public=True), - CallerId(code=150010003, number='403', is_public=True), - ], + 'caller': 'SIP/voipgrid-siproute-docker-00000017', + 'target': 'SIP/150010001-00000018', }), - ('on_cold_transfer', { - 'redirector': CallerId(code=150010004, number='204', is_public=True), - 'caller': CallerId(code=150010002, number='202', is_public=True), + ('on_blind_transfer', { + 'caller': 'SIP/voipgrid-siproute-docker-00000017', 'targets': [ - CallerId(code=150010001, number='403', is_public=True), - CallerId(code=150010003, number='403', is_public=True), + 'SIP/150010002-00000019', + 'SIP/150010003-0000001a', ], - 'new_id': '0f00dcaa884f-1509117819.36', - 'merged_id': '0f00dcaa884f-1509117819.37', - 'to_number': '403', + 'transferer': 'SIP/150010001-00000018', }), ('on_up', { - 'call_id': '0f00dcaa884f-1509117819.36', - 'caller': CallerId(code=150010002, number='202', is_public=True), - 'to_number': '403', - 'callee': CallerId(code=150010001, number='403', is_public=True), + 'caller': 'SIP/voipgrid-siproute-docker-00000017', + 'target': 'SIP/150010003-0000001a', }), ('on_hangup', { - 'call_id': '0f00dcaa884f-1509117819.36', - 'caller': CallerId(code=150010002, number='202', is_public=True), - 'to_number': '403', + 'caller': 'SIP/voipgrid-siproute-docker-00000017', 'reason': 'completed', }), - )) + ] - self.assertEqual(expected_events, events) + self.assertEqualChannels(expected_events, events) def test_xfer_blind_group_no_answer(self): """ Test a blind transfer where the call is transferred to a group. """ - events = self.run_and_get_events('fixtures/xfer_blind/xfer_blind_group_no_answer.json') + events_file = 'fixtures/xfer_blind/xfer_blind_group_no_answer.json' + events = self.run_and_get_events(events_file) - expected_events = self.events_from_tuples(( + expected_events = [ ('on_b_dial', { - 'call_id': '0f00dcaa884f-1509119608.56', - 'caller': CallerId(code=150010002, name='David Meadows', number='202', is_public=True), - 'to_number': '204', - 'targets': [CallerId(code=150010004, number='204', is_public=True)], + 'caller': 'SIP/voipgrid-siproute-docker-00000023', + 'targets': ['SIP/150010001-00000024'], }), ('on_up', { - 'call_id': '0f00dcaa884f-1509119608.56', - 'caller': CallerId(code=150010002, name='David Meadows', number='202', is_public=True), - 'to_number': '204', - 'callee': CallerId(code=150010004, number='204', is_public=True), + 'caller': 'SIP/voipgrid-siproute-docker-00000023', + 'target': 'SIP/150010001-00000024', }), ('on_hangup', { - 'call_id': '0f00dcaa884f-1509119608.56', - 'caller': CallerId(code=150010002, number='202', is_public=True), - 'to_number': '204', + 'caller': 'SIP/voipgrid-siproute-docker-00000023', 'reason': 'completed', }), - )) + ] - self.assertEqual(expected_events, events) + self.assertEqualChannels(expected_events, events) diff --git a/tests/test_xfer_blonde.py b/tests/test_xfer_blonde.py index 1c9004b..f33b387 100644 --- a/tests/test_xfer_blonde.py +++ b/tests/test_xfer_blonde.py @@ -1,12 +1,12 @@ -from cacofonisk.callerid import CallerId from .replaytest import ChannelEventsTestCase -class TestBlondeXferOrig(ChannelEventsTestCase): - """Test call state notifications for blonde transfers. +class TestBlondeXfer(ChannelEventsTestCase): + """ + Test call state notifications for blonde transfers. A blonde transfer (also known as semi-attended transfer) is a type of - transfer which looks like an attended transfer, but the transferrer + transfer which looks like an attended transfer, but the transferer doesn't wait for person C to pick up. """ @@ -14,407 +14,191 @@ def test_xfer_blonde_abacbc(self): """ Test blonde transfer where A initiates the transfer. """ - events = self.run_and_get_events('fixtures/xfer_blonde/xfer_blonde_abacbc.json') + events_file = 'fixtures/xfer_blonde/xfer_blonde_abacbc.json' + events = self.run_and_get_events(events_file) - expected_events = self.events_from_tuples(( + expected_events = [ ('on_b_dial', { - 'call_id': '63f2f9ce924a-1502178068.16', - 'caller': CallerId(code=150010002, name='Robert Murray', number='202', is_public=True), - 'to_number': '201', - 'targets': [CallerId(code=150010001, number='201', is_public=True)], + 'caller': 'SIP/150010001-00000090', + 'targets': ['SIP/150010002-00000091'], }), ('on_up', { - 'call_id': '63f2f9ce924a-1502178068.16', - 'caller': CallerId(code=150010002, name='Robert Murray', number='202', is_public=True), - 'to_number': '201', - 'callee': CallerId(code=150010001, number='201', is_public=True), + 'caller': 'SIP/150010001-00000090', + 'target': 'SIP/150010002-00000091', }), ('on_b_dial', { - 'call_id': '63f2f9ce924a-1502178076.20', - 'caller': CallerId(code=150010002, name='Robert Murray', number='202', is_public=True), - 'to_number': '203', - 'targets': [CallerId(code=150010003, number='203', is_public=True)], + 'caller': 'SIP/150010001-00000092', + 'targets': ['SIP/150010003-00000093'], }), - ('on_cold_transfer', { - 'redirector': CallerId(code=150010002, name='Robert Murray', number='202', is_public=True), - 'caller': CallerId(code=150010001, number='201', is_public=True), - 'targets': [CallerId(code=150010003, number='203', is_public=True)], - 'new_id': '63f2f9ce924a-1502178076.20', - 'merged_id': '63f2f9ce924a-1502178068.16', - 'to_number': '203', + ('on_blonde_transfer', { + 'caller': 'SIP/150010002-00000091', + 'targets': ['SIP/150010003-00000093'], + 'transferer': 'SIP/150010001-00000092', }), ('on_up', { - 'call_id': '63f2f9ce924a-1502178076.20', - 'caller': CallerId(code=150010001, number='201', is_public=True), - 'to_number': '203', - 'callee': CallerId(code=150010003, number='203', is_public=True), + 'caller': 'SIP/150010002-00000091', + 'target': 'SIP/150010003-00000093', }), ('on_hangup', { - 'call_id': '63f2f9ce924a-1502178076.20', - 'caller': CallerId(code=150010001, number='201', is_public=True), - 'to_number': '203', + 'caller': 'SIP/150010002-00000091', 'reason': 'completed', }), - )) + ] - self.assertEqual(expected_events, events) + self.assertEqualChannels(expected_events, events) def test_xfer_blonde_abbcac(self): """ Test blonde transfer where B initiates the transfer. """ - events = self.run_and_get_events('fixtures/xfer_blonde/xfer_blonde_abbcac.json') + events_file = 'fixtures/xfer_blonde/xfer_blonde_abbcac.json' + events = self.run_and_get_events(events_file) - expected_events = self.events_from_tuples(( + expected_events = [ ('on_b_dial', { - 'call_id': '63f2f9ce924a-1502179190.24', - 'caller': CallerId(code=150010003, name='Julia Rhodes', number='203', is_public=True), - 'to_number': '202', - 'targets': [CallerId(code=150010002, number='202', is_public=True)], + 'caller': 'SIP/voipgrid-siproute-docker-00000096', + 'targets': ['SIP/150010001-00000097'], }), ('on_up', { - 'call_id': '63f2f9ce924a-1502179190.24', - 'caller': CallerId(code=150010003, name='Julia Rhodes', number='203', is_public=True), - 'to_number': '202', - 'callee': CallerId(code=150010002, number='202', is_public=True), + 'caller': 'SIP/voipgrid-siproute-docker-00000096', + 'target': 'SIP/150010001-00000097', }), ('on_b_dial', { - 'call_id': '63f2f9ce924a-1502179195.28', - 'caller': CallerId(code=150010002, name='Robert Murray', number='202', is_public=True), - 'to_number': '201', - 'targets': [CallerId(code=150010001, name='', number='201', is_public=True)], + 'caller': 'SIP/150010001-00000098', + 'targets': ['SIP/150010002-00000099'], }), - ('on_cold_transfer', { - 'redirector': CallerId(code=150010002, name='Robert Murray', number='202', is_public=True), - 'caller': CallerId(code=150010003, name='Julia Rhodes', number='203', is_public=True), - 'targets': [CallerId(code=150010001, name='', number='201', is_public=True)], - 'new_id': '63f2f9ce924a-1502179195.28', - 'merged_id': '63f2f9ce924a-1502179190.24', - 'to_number': '201', + ('on_blonde_transfer', { + 'caller': 'SIP/voipgrid-siproute-docker-00000096', + 'targets': ['SIP/150010002-00000099'], + 'transferer': 'SIP/150010001-00000098', }), ('on_up', { - 'call_id': '63f2f9ce924a-1502179195.28', - 'caller': CallerId(code=150010003, name='Julia Rhodes', number='203', is_public=True), - 'to_number': '201', - 'callee': CallerId(code=150010001, name='', number='201', is_public=True), + 'caller': 'SIP/voipgrid-siproute-docker-00000096', + 'target': 'SIP/150010002-00000099', }), ('on_hangup', { - 'call_id': '63f2f9ce924a-1502179195.28', - 'caller': CallerId(code=150010003, name='Julia Rhodes', number='203', is_public=True), - 'to_number': '201', + 'caller': 'SIP/voipgrid-siproute-docker-00000096', 'reason': 'completed', }), - )) - - self.assertEqual(expected_events, events) - - def test_xfer_blondeanon(self): - """ - Complex test of blonde transfer. + ] - Test call groups, anonymous callers and a blond transfer. - """ - events = self.run_and_get_events('fixtures/xfer_blonde/xfer_blondeanon.json') - - expected_events = self.events_from_tuples(( - # +31507xxxxxx calls 202/205, 205 picks up, blonde xfer to 202 - ('on_b_dial', { - 'call_id': 'vgua0-dev-1443448768.113', - 'caller': CallerId(code=12668, number='+31507xxxxxx', is_public=False), - 'to_number': '+31507001918', - 'targets': [ - CallerId(code=126680002, number='+31507001918', is_public=True), - CallerId(code=126680005, number='+31507001918', is_public=True), - ], - }), - ('on_up', { - 'call_id': 'vgua0-dev-1443448768.113', - 'caller': CallerId(code=12668, number='+31507xxxxxx', is_public=False), - 'to_number': '+31507001918', - 'callee': CallerId(code=126680005, number='+31507001918', is_public=True), - }), - - # Blonde xfer consists of a nice secondary dial, like the - # attended transfer. But the bridge isn't up on the target - # channel, so the last CLI takes more work to get right. - # Luckily that is tucked away in the ChannelManager class. - ('on_b_dial', { - 'call_id': 'vgua0-dev-1443448784.120', - 'caller': CallerId(code=126680005, name='No NAT', number='205', is_public=True), - 'to_number': '202', - 'targets': [CallerId(code=126680002, number='202', is_public=True)], - }), - ('on_cold_transfer', { - 'redirector': CallerId(code=126680005, name='No NAT', number='205', is_public=True), - 'caller': CallerId(code=12668, number='+31507xxxxxx', is_public=False), - 'targets': [CallerId(code=126680002, number='202', is_public=True)], - 'new_id': 'vgua0-dev-1443448784.120', - 'merged_id': 'vgua0-dev-1443448768.113', - 'to_number': '202', - }), - ('on_up', { - 'call_id': 'vgua0-dev-1443448784.120', - 'caller': CallerId(code=12668, number='+31507xxxxxx', is_public=False), - 'to_number': '202', - 'callee': CallerId(code=126680002, number='202', is_public=True), - }), - ('on_hangup', { - 'call_id': 'vgua0-dev-1443448784.120', - 'caller': CallerId(code=12668, number='+31507xxxxxx', is_public=False), - 'to_number': '202', - 'reason': 'completed', - }), - )) - - self.assertEqual(expected_events, events) - - def test_xfer_blondeblindanon(self): - """Test the blond blind transfer (SPA941 call). - - First of all, we need to get notifications that calls are being - made: - - +31507xxxxxx calls 202 (126680002) - - 202 calls 205 (126680005) but doesn't wait for pickup - - Secondly, we need notifications that an (attended) transfer has - happened. This is done using a blind transfer (broken blonde - transfer of SPA941 which involves a premature call to 205). - - 202 joins the other channels (+31507xxxxxx <--> 205) - - The blondeblindanon transfer is a legacy thing of the SPA941 - that doesn't do blonde transfers. Instead, it hangs up after - hearing the ringing to do a blind transfer. - - The call IDs are a mess now, but fixing it is too complicated - for a severely outdated phone. - """ - events = self.run_and_get_events('fixtures/xfer_blonde/xfer_blondeblindanon.json') - - expected_events = self.events_from_tuples(( - # +31507xxxxxx calls 201/202/+31612345678 - # => 126680001 (doesn't answer) - # => +31612345678 (gets busy) - ('on_b_dial', { - 'call_id': 'vgua0-dev-1443442620.82', - 'caller': CallerId(code=12668, number='+31507xxxxxx', is_public=False), - 'to_number': '+31507001918', - 'targets': [ - CallerId(code=0, number='+31612345678', is_public=True), - CallerId(code=126680002, number='+31507001918', is_public=True) - ], - }), - - # => 202 picks up - ('on_up', { - 'call_id': 'vgua0-dev-1443442620.82', - 'caller': CallerId(code=12668, number='+31507xxxxxx', is_public=False), - 'to_number': '+31507001918', - 'callee': CallerId(code=126680002, number='+31507001918', is_public=True), - }), - - # 202 calls 205 - # This is a regular call, and this is hung up again by the - # phone. - ('on_b_dial', { - 'call_id': 'vgua0-dev-1443442640.94', - 'caller': CallerId(code=126680002, name='John 202 Doe', number='202', is_public=True), - 'to_number': '205', - 'targets': [CallerId(code=126680005, number='205', is_public=True)], - }), - ('on_hangup', { - 'call_id': 'vgua0-dev-1443442640.94', - 'caller': CallerId(code=126680002, name='John 202 Doe', number='202', is_public=True), - 'to_number': '205', - 'reason': 'cancelled', - }), - - # 202 transfers +31507xxxxxx <-> 205 - # The transferor had detected ringing pressed the attn. xfer - # button. The phone hung up the first call and proceeded - # with a blind transfer (this). - # Our channel internals make sure that a transfer first gets - # a proper on_b_dial event. The CLI number looks odd, but - # it's okay, because it's what 126680002 was reached by. - ('on_b_dial', { - 'call_id': 'vgua0-dev-1443442620.85', - 'caller': CallerId(code=126680002, number='+31507001918', is_public=True), - 'to_number': '205', - 'targets': [CallerId(code=126680005, number='205', is_public=True)], - }), - # Again, the CLI-num for 126680002 is okay. - # Ideally, I'd like to see +31507xxxxxx in CLI-num, but I - # can live with 'P', since the is_public is False anyway. - ('on_cold_transfer', { - 'redirector': CallerId(code=126680002, number='+31507001918', is_public=True), - 'caller': CallerId(code=12668, number='P', is_public=False), # +31507xxxxxx ? - 'targets': [CallerId(code=126680005, number='205', is_public=True)], - 'new_id': 'vgua0-dev-1443442620.82', - 'merged_id': 'vgua0-dev-1443442620.85', - 'to_number': '205', - }), - ('on_up', { - 'call_id': 'vgua0-dev-1443442620.82', - 'caller': CallerId(code=12668, number='P', is_public=False), # Technically +31507xxxxxx - 'to_number': '205', - 'callee': CallerId(code=126680005, number='205', is_public=True), - }), - ('on_hangup', { - 'call_id': 'vgua0-dev-1443442620.82', - 'caller': CallerId(code=12668, number='P', is_public=False), # Technically +31507xxxxxx - 'to_number': '205', - 'reason': 'completed', - }), - )) - - self.assertEqual(expected_events, events) + self.assertEqualChannels(expected_events, events) def test_xfer_blonde_reject(self): """ Test blonde transfer where the transfer target rejects the call. """ - events = self.run_and_get_events('fixtures/xfer_blonde/xfer_blonde_reject.json') + events_file = 'fixtures/xfer_blonde/xfer_blonde_reject.json' + events = self.run_and_get_events(events_file) - expected_events = self.events_from_tuples(( + expected_events = [ ('on_b_dial', { - 'call_id': '0f00dcaa884f-1509119790.66', - 'caller': CallerId(code=150010002, name='David Meadows', number='202', is_public=True), - 'to_number': '204', - 'targets': [CallerId(code=150010004, number='204', is_public=True)], + 'caller': 'SIP/voipgrid-siproute-docker-000000a1', + 'targets': ['SIP/150010001-000000a2'], }), ('on_up', { - 'call_id': '0f00dcaa884f-1509119790.66', - 'caller': CallerId(code=150010002, name='David Meadows', number='202', is_public=True), - 'to_number': '204', - 'callee': CallerId(code=150010004, number='204', is_public=True), + 'caller': 'SIP/voipgrid-siproute-docker-000000a1', + 'target': 'SIP/150010001-000000a2', }), ('on_b_dial', { - 'call_id': '0f00dcaa884f-1509119799.70', - 'caller': CallerId(code=150010004, name='Jonathan Carey', number='204', is_public=True), - 'to_number': '203', - 'targets': [CallerId(code=150010003, number='203', is_public=True)], + 'caller': 'SIP/150010001-000000a3', + 'targets': ['SIP/150010002-000000a4'], }), - ('on_hangup', { - 'call_id': '0f00dcaa884f-1509119799.70', - 'caller': CallerId(code=150010004, name='Jonathan Carey', number='204', is_public=True), - 'to_number': '203', - 'reason': 'no-answer', + ('on_blonde_transfer', { + 'caller': 'SIP/voipgrid-siproute-docker-000000a1', + 'targets': ['SIP/150010002-000000a4'], + 'transferer': 'SIP/150010001-000000a3', }), ('on_hangup', { - 'call_id': '0f00dcaa884f-1509119790.66', - 'caller': CallerId(code=150010002, name='David Meadows', number='202', is_public=True), - 'to_number': '204', - 'reason': 'completed', + 'caller': 'SIP/voipgrid-siproute-docker-000000a1', + 'reason': 'busy', }), - )) + ] - self.assertEqual(expected_events, events) + self.assertEqualChannels(expected_events, events) def test_xfer_blonde_group_b(self): """ Test blonde transfer where the call is transferred to a group by B. """ - events = self.run_and_get_events('fixtures/xfer_blonde/xfer_blonde_group_b.json') + events_file = 'fixtures/xfer_blonde/xfer_blonde_group_b.json' + events = self.run_and_get_events(events_file) - expected_events = self.events_from_tuples(( + expected_events = [ ('on_b_dial', { - 'call_id': '0f00dcaa884f-1509120252.74', - 'caller': CallerId(code=150010002, name='David Meadows', number='202', is_public=True), - 'to_number': '204', - 'targets': [CallerId(code=150010004, number='204', is_public=True)], + 'caller': 'SIP/voipgrid-siproute-docker-000000a7', + 'targets': ['SIP/150010001-000000a8'], }), ('on_up', { - 'call_id': '0f00dcaa884f-1509120252.74', - 'caller': CallerId(code=150010002, name='David Meadows', number='202', is_public=True), - 'to_number': '204', - 'callee': CallerId(code=150010004, number='204', is_public=True), + 'caller': 'SIP/voipgrid-siproute-docker-000000a7', + 'target': 'SIP/150010001-000000a8', }), ('on_b_dial', { - 'call_id': '0f00dcaa884f-1509120257.78', - 'caller': CallerId(code=150010004, name='Jonathan Carey', number='204', is_public=True), - 'to_number': '403', + 'caller': 'SIP/150010001-000000a9', 'targets': [ - CallerId(code=150010001, number='403', is_public=True), - CallerId(code=150010003, number='403', is_public=True), + 'SIP/150010002-000000aa', + 'SIP/150010003-000000ab', ], }), - ('on_cold_transfer', { - 'new_id': '0f00dcaa884f-1509120257.78', - 'merged_id': '0f00dcaa884f-1509120252.74', - 'redirector': CallerId(code=150010004, name='Jonathan Carey', number='204', is_public=True), - 'caller': CallerId(code=150010002, name='David Meadows', number='202', is_public=True), + ('on_blonde_transfer', { + 'caller': 'SIP/voipgrid-siproute-docker-000000a7', 'targets': [ - CallerId(code=150010001, number='403', is_public=True), - CallerId(code=150010003, number='403', is_public=True), + 'SIP/150010002-000000aa', + 'SIP/150010003-000000ab', ], - 'to_number': '403', + 'transferer': 'SIP/150010001-000000a9' }), ('on_up', { - 'call_id': '0f00dcaa884f-1509120257.78', - 'caller': CallerId(code=150010002, name='David Meadows', number='202', is_public=True), - 'to_number': '403', - 'callee': CallerId(code=150010001, number='403', is_public=True), + 'caller': 'SIP/voipgrid-siproute-docker-000000a7', + 'target': 'SIP/150010002-000000aa', }), ('on_hangup', { - 'call_id': '0f00dcaa884f-1509120257.78', - 'caller': CallerId(code=150010002, name='David Meadows', number='202', is_public=True), - 'to_number': '403', + 'caller': 'SIP/voipgrid-siproute-docker-000000a7', 'reason': 'completed', }), - )) + ] - self.assertEqual(expected_events, events) + self.assertEqualChannels(expected_events, events) def test_xfer_blonde_group_a(self): """ Test blonde transfer where the call is transferred to a group by A. """ - events = self.run_and_get_events('fixtures/xfer_blonde/xfer_blonde_group_a.json') + events_file = 'fixtures/xfer_blonde/xfer_blonde_group_a.json' + events = self.run_and_get_events(events_file) - expected_events = self.events_from_tuples(( + expected_events = [ ('on_b_dial', { - 'call_id': '0f00dcaa884f-1509353018.11', - 'caller': CallerId(code=150010002, name='David Meadows', number='202', is_public=True), - 'to_number': '204', - 'targets': [CallerId(code=150010004, number='204', is_public=True)], + 'caller': 'SIP/150010001-000000ac', + 'targets': ['SIP/voipgrid-siproute-docker-000000ad'], }), ('on_up', { - 'call_id': '0f00dcaa884f-1509353018.11', - 'caller': CallerId(code=150010002, name='David Meadows', number='202', is_public=True), - 'to_number': '204', - 'callee': CallerId(code=150010004, number='204', is_public=True), + 'caller': 'SIP/150010001-000000ac', + 'target': 'SIP/voipgrid-siproute-docker-000000ad', }), ('on_b_dial', { - 'call_id': '0f00dcaa884f-1509353024.15', - 'caller': CallerId(code=150010002, name='David Meadows', number='202', is_public=True), - 'to_number': '403', + 'caller': 'SIP/150010001-000000b0', 'targets': [ - CallerId(code=150010001, number='403', is_public=True), - CallerId(code=150010003, number='403', is_public=True), + 'SIP/150010002-000000b1', + 'SIP/150010003-000000b2', ], }), - ('on_cold_transfer', { - 'new_id': '0f00dcaa884f-1509353024.15', - 'merged_id': '0f00dcaa884f-1509353018.11', - 'redirector': CallerId(code=150010002, name='David Meadows', number='202', is_public=True), - 'caller': CallerId(code=150010004, number='204', is_public=True), + ('on_blonde_transfer', { + 'caller': 'SIP/voipgrid-siproute-docker-000000ad', 'targets': [ - CallerId(code=150010001, number='403', is_public=True), - CallerId(code=150010003, number='403', is_public=True), + 'SIP/150010002-000000b1', + 'SIP/150010003-000000b2', ], - 'to_number': '403', + 'transferer': 'SIP/150010001-000000b0', }), ('on_up', { - 'call_id': '0f00dcaa884f-1509353024.15', - 'caller': CallerId(code=150010004, number='204', is_public=True), - 'to_number': '403', - 'callee': CallerId(code=150010001, number='403', is_public=True), + 'caller': 'SIP/voipgrid-siproute-docker-000000ad', + 'target': 'SIP/150010002-000000b1', }), ('on_hangup', { - 'call_id': '0f00dcaa884f-1509353024.15', - 'caller': CallerId(code=150010004, number='204', is_public=True), - 'to_number': '403', + 'caller': 'SIP/voipgrid-siproute-docker-000000ad', 'reason': 'completed', }), - )) + ] - self.assertEqual(expected_events, events) + self.assertEqualChannels(expected_events, events) diff --git a/tests/test_xfer_misc.py b/tests/test_xfer_misc.py index b87590a..11bc179 100644 --- a/tests/test_xfer_misc.py +++ b/tests/test_xfer_misc.py @@ -1,4 +1,5 @@ from cacofonisk.callerid import CallerId +from cacofonisk.channel import SimpleChannel from tests.replaytest import ChannelEventsTestCase @@ -15,55 +16,68 @@ def test_call_pickup(self): """ events = self.run_and_get_events('fixtures/xfer_misc/call_pickup.json') - expected_events = self.events_from_tuples(( + expected_events = [ ('on_b_dial', { - 'call_id': 'vgua0-dev-1445001221.106', - 'caller': CallerId(code=123450001, name='Alice', number='201', is_public=True), - 'to_number': '202', - 'targets': [CallerId(code=123450002, number='202', is_public=True)], + 'caller': 'SIP/voipgrid-siproute-docker-0000000c', + 'targets': ['SIP/150010001-0000000d'], }), ('on_up', { - 'call_id': 'vgua0-dev-1445001221.106', - 'caller': CallerId(code=123450001, name='Alice', number='201', is_public=True), - 'to_number': '202', - 'callee': CallerId(code=123450003, number='202', is_public=True), + 'caller': 'SIP/voipgrid-siproute-docker-0000000c', + 'target': 'SIP/150010002-0000000e', }), ('on_hangup', { - 'call_id': 'vgua0-dev-1445001221.106', - 'caller': CallerId(code=123450001, name='Alice', number='201', is_public=True), - 'to_number': '202', + 'caller': 'SIP/voipgrid-siproute-docker-0000000c', 'reason': 'completed', }), - )) + ] - self.assertEqual(expected_events, events) + self.assertEqualChannels(expected_events, events) def test_call_forwarding(self): """ Test a call where the call is locally forwarded to another phone. """ - events = self.run_and_get_events('fixtures/xfer_misc/call_forwarding.json') + events = self.run_and_get_events( + 'fixtures/xfer_misc/call_forwarding.json') + + calling_chan = SimpleChannel( + name='SIP/voipgrid-siproute-docker-00000016', + uniqueid='b6093874285e-1530191379.305', + linkedid='b6093874285e-1530191379.305', + account_code='15001', + caller_id=CallerId(num='+31260010001'), + cid_calling_pres=None, + connected_line=CallerId(), + exten='+31150010001', + state=6, + ) + + target_chan = SimpleChannel( + name='SIP/150010002-00000018', + uniqueid='b6093874285e-1530191380.328', + linkedid='b6093874285e-1530191379.305', + account_code='15001', + caller_id=CallerId(num='202'), + cid_calling_pres='0 (Presentation Allowed, Not Screened)', + connected_line=CallerId(num='+31260010001'), + exten='s', + state=6, + ) - expected_events = self.events_from_tuples(( + expected_events = [ ('on_b_dial', { - 'call_id': 'vgua0-dev-1444992672.12', - 'caller': CallerId(code=123450001, name='Alice', number='201', is_public=True), - 'to_number': '202', - 'targets': [CallerId(code=123450003, number='203', is_public=True)], + 'caller': calling_chan.replace(state=4), + 'targets': [target_chan.replace(state=5)], }), ('on_up', { - 'call_id': 'vgua0-dev-1444992672.12', - 'caller': CallerId(code=123450001, name='Alice', number='201', is_public=True), - 'to_number': '202', - 'callee': CallerId(code=123450003, number='203', is_public=True), + 'caller': calling_chan, + 'target': target_chan, }), ('on_hangup', { - 'call_id': 'vgua0-dev-1444992672.12', - 'caller': CallerId(code=123450001, name='Alice', number='201', is_public=True), - 'to_number': '202', + 'caller': calling_chan, 'reason': 'completed', - }) - )) + }), + ] self.assertEqual(expected_events, events) @@ -71,75 +85,25 @@ def test_call_forwarding_to_group(self): """ Test call forwarding where the call is forwarded to a group. """ - events = self.run_and_get_events('fixtures/xfer_misc/call_forwarding_to_group.json') + events = self.run_and_get_events( + 'fixtures/xfer_misc/call_forwarding_to_group.json') - expected_events = self.events_from_tuples(( - ('on_b_dial', { - 'call_id': 'ua0-acc-1509629983.1135', - 'caller': CallerId(code=12668, number='+31508009000', is_public=True), - 'to_number': '+31853030903', - 'targets': [ - CallerId(code=126680023, name='', number='402', is_public=True), - CallerId(code=126680024, name='', number='402', is_public=True), - ], - }), - ('on_up', { - 'call_id': 'ua0-acc-1509629983.1135', - 'caller': CallerId(code=12668, number='+31508009000', is_public=True), - 'to_number': '+31853030903', - 'callee': CallerId(code=126680024, name='', number='402', is_public=True), - }), - ('on_hangup', { - 'call_id': 'ua0-acc-1509629983.1135', - 'caller': CallerId(code=12668, number='+31508009000', is_public=True), - 'to_number': '+31853030903', - 'reason': 'completed', - }) - )) - - self.assertEqual(events, expected_events) - - def test_call_forwarding_to_from_group(self): - """ - Test call to a group where member forwards the call to another group. - """ - events = self.run_and_get_events('fixtures/xfer_misc/call_forwarding_to_from_group.json') - - expected_events = self.events_from_tuples(( - ('on_b_dial', { - 'call_id': 'ua0-acc-1509631559.1176', - 'caller': CallerId(code=12668, number='+31612345678', is_public=True), - 'to_number': '+31853030903', - 'targets': [ - CallerId(code=126680010, number='+31853030903', is_public=True), - ], - }), - # Due to how the channel gathering works, you get two dial events, - # one for the first hop where the phone in the first call group - # will ring, and a second one where all the phones to which the - # call was forwarded will ring. + expected_events = [ ('on_b_dial', { - 'call_id': 'ua0-acc-1509631559.1176', - 'caller': CallerId(code=12668, number='+31612345678', is_public=True), - 'to_number': '+31853030903', + 'caller': 'SIP/voipgrid-siproute-docker-00000021', 'targets': [ - CallerId(code=126680010, number='+31853030903', is_public=True), - CallerId(code=126680023, number='402', is_public=True), - CallerId(code=126680024, number='402', is_public=True), + 'SIP/150010002-00000023', + 'SIP/150010003-00000024', ], }), ('on_up', { - 'call_id': 'ua0-acc-1509631559.1176', - 'caller': CallerId(code=12668, number='+31612345678', is_public=True), - 'to_number': '+31853030903', - 'callee': CallerId(code=126680024, number='402', is_public=True), + 'caller': 'SIP/voipgrid-siproute-docker-00000021', + 'target': 'SIP/150010003-00000024', }), ('on_hangup', { - 'call_id': 'ua0-acc-1509631559.1176', - 'caller': CallerId(code=12668, number='+31612345678', is_public=True), - 'to_number': '+31853030903', + 'caller': 'SIP/voipgrid-siproute-docker-00000021', 'reason': 'completed', }), - )) + ] - self.assertEqual(events, expected_events) + self.assertEqualChannels(expected_events, events)